ETH Price: $3,388.58 (-2.65%)
Gas: 1 Gwei

Token

Anonymous Punkz (Anon Punkz)
 

Overview

Max Total Supply

10,000 Anon Punkz

Holders

4,533

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 Anon Punkz
0xc8fc4f75009b69ba5769d525da49a3b2bca143a5
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:
AnonymousPunkz

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
File 1 of 13 : AnonymousPunkz.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 AnonymousPunkz is ERC721A, Ownable, ReentrancyGuard {

    mapping (address => uint256) public WalletMint;
    bool public MintStartEnabled  = false;
    string public baseURI;  
    uint public freeMintSupply = 7500;
    uint public freeMint = 2;
    uint public maxMintPerTx = 20;  
    uint public maxMint = 10000;
    uint public MintPrice = 2200000000000000; //0.0022 ETH

    constructor() ERC721A("Anonymous Punkz", "Anon Punkz",100,10000){}

    function mint(uint256 qty) external payable
    {
        require(MintStartEnabled , "Notice : Minting Public Pause");
        require(qty <= maxMintPerTx, "Notice : Limit Per Transaction");
        require(totalSupply() + qty <= maxMint,"Notice : Soldout");
        _mint(qty);
    }

    function _mint(uint qty) internal {
        if(WalletMint[msg.sender] < freeMint && freeMintSupply > totalSupply()) 
        {
            if(qty < freeMint) qty = freeMint;
           require(msg.value >= (qty - freeMint) * MintPrice,"Notice : Claim Free NFT");
            WalletMint[msg.sender] += qty;
           _safeMint(msg.sender, qty);
        }
        else
        {
           require(msg.value >= qty * MintPrice,"Notice : Fund not enough");
            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 airdropNFT(address to ,uint256 qty) external onlyOwner
    {
        _safeMint(to, qty);
    }

    function OwnerBatchMint(uint256 qty) external onlyOwner
    {
        _safeMint(msg.sender, qty);
    }

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

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

    function setMaxFreeMintSupply(uint256 qty_) external onlyOwner {
        freeMintSupply = qty_;
    }

    function setmaxMintPerTx(uint256 maxMintPerTx_) external onlyOwner {
        maxMintPerTx = maxMintPerTx_;
    }

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

    function setmaxMint(uint256 maxMint_) external onlyOwner {
        maxMint = maxMint_;
    }

    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":[],"name":"MintStartEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"OwnerBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"WalletMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"airdropNFT","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":[],"name":"freeMintSupply","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":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTx","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":"setMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty_","type":"uint256"}],"name":"setMaxFreeMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint_","type":"uint256"}],"name":"setmaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintPerTx_","type":"uint256"}],"name":"setmaxMintPerTx","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"}]

60c06040526000805560006007556000600b60006101000a81548160ff021916908315150217905550611d4c600d556002600e556014600f556127106010556607d0e36a8180006011553480156200005657600080fd5b506040518060400160405280600f81526020017f416e6f6e796d6f75732050756e6b7a00000000000000000000000000000000008152506040518060400160405280600a81526020017f416e6f6e2050756e6b7a000000000000000000000000000000000000000000008152506064612710600081116200010e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200010590620003b6565b60405180910390fd5b6000821162000154576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200014b9062000394565b60405180910390fd5b83600190805190602001906200016c92919062000296565b5082600290805190602001906200018592919062000296565b508160a08181525050806080818152505050505050620001ba620001ae620001c860201b60201c565b620001d060201b60201c565b6001600981905550620004ec565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002a490620003e9565b90600052602060002090601f016020900481019282620002c8576000855562000314565b82601f10620002e357805160ff191683800117855562000314565b8280016001018555821562000314579182015b8281111562000313578251825591602001919060010190620002f6565b5b50905062000323919062000327565b5090565b5b808211156200034257600081600090555060010162000328565b5090565b600062000355602783620003d8565b915062000362826200044e565b604082019050919050565b60006200037c602e83620003d8565b915062000389826200049d565b604082019050919050565b60006020820190508181036000830152620003af8162000346565b9050919050565b60006020820190508181036000830152620003d1816200036d565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200040257607f821691505b602082108114156200041957620004186200041f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a0516147336200051d60003960008181611fb301528181611fdc015261294b0152600050506147336000f3fe60806040526004361061023b5760003560e01c80637501f7411161012e578063bc46081b116100ab578063e150007e1161006f578063e150007e1461084c578063e645f70814610877578063e985e9c5146108b4578063f2fde38b146108f1578063fdbf9ef21461091a5761023b565b8063bc46081b14610751578063c87b56dd1461077c578063d7224ba0146107b9578063dc33e681146107e4578063de7fcb1d146108215761023b565b806395d89b41116100f257806395d89b41146106a1578063a0712d68146106cc578063a22cb465146106e8578063ac915c0614610711578063b88d4fde146107285761023b565b80637501f741146105d057806379f34a10146105fb5780638171609b146106245780638da5cb5b1461064d57806391b7f5ed146106785761023b565b80633ccfd60b116101bc5780636352211e116101805780636352211e146104eb5780636c0360eb1461052857806370a0823114610553578063715018a614610590578063742a4c9b146105a75761023b565b80633ccfd60b1461041a57806342842e0e146104315780634f6ccce71461045a57806355f804b3146104975780635b70ea9f146104c05761023b565b80631c3e88f6116102035780631c3e88f61461033957806323b872dd146103625780632f745c591461038b5780632fc2e29c146103c857806337e36f79146103f15761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806318160ddd1461030e575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061315b565b610945565b6040516102749190613718565b60405180910390f35b34801561028957600080fd5b50610292610a8f565b60405161029f9190613733565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613202565b610b21565b6040516102dc91906136b1565b60405180910390f35b3480156102f157600080fd5b5061030c6004803603810190610307919061311b565b610ba6565b005b34801561031a57600080fd5b50610323610cbf565b6040516103309190613a95565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190613202565b610cc8565b005b34801561036e57600080fd5b5061038960048036038101906103849190613005565b610cda565b005b34801561039757600080fd5b506103b260048036038101906103ad919061311b565b610cea565b6040516103bf9190613a95565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea9190613202565b610ee8565b005b3480156103fd57600080fd5b506104186004803603810190610413919061311b565b610efa565b005b34801561042657600080fd5b5061042f610f10565b005b34801561043d57600080fd5b5061045860048036038101906104539190613005565b610f78565b005b34801561046657600080fd5b50610481600480360381019061047c9190613202565b610f98565b60405161048e9190613a95565b60405180910390f35b3480156104a357600080fd5b506104be60048036038101906104b991906131b5565b610feb565b005b3480156104cc57600080fd5b506104d5611009565b6040516104e29190613a95565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d9190613202565b61100f565b60405161051f91906136b1565b60405180910390f35b34801561053457600080fd5b5061053d611025565b60405161054a9190613733565b60405180910390f35b34801561055f57600080fd5b5061057a60048036038101906105759190612f98565b6110b3565b6040516105879190613a95565b60405180910390f35b34801561059c57600080fd5b506105a561119c565b005b3480156105b357600080fd5b506105ce60048036038101906105c99190613202565b6111b0565b005b3480156105dc57600080fd5b506105e56111c2565b6040516105f29190613a95565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d9190613202565b6111c8565b005b34801561063057600080fd5b5061064b60048036038101906106469190613202565b6111da565b005b34801561065957600080fd5b506106626111ef565b60405161066f91906136b1565b60405180910390f35b34801561068457600080fd5b5061069f600480360381019061069a9190613202565b611219565b005b3480156106ad57600080fd5b506106b661122b565b6040516106c39190613733565b60405180910390f35b6106e660048036038101906106e19190613202565b6112bd565b005b3480156106f457600080fd5b5061070f600480360381019061070a91906130db565b6113b4565b005b34801561071d57600080fd5b50610726611535565b005b34801561073457600080fd5b5061074f600480360381019061074a9190613058565b611569565b005b34801561075d57600080fd5b506107666115c5565b6040516107739190613718565b60405180910390f35b34801561078857600080fd5b506107a3600480360381019061079e9190613202565b6115d8565b6040516107b09190613733565b60405180910390f35b3480156107c557600080fd5b506107ce61167f565b6040516107db9190613a95565b60405180910390f35b3480156107f057600080fd5b5061080b60048036038101906108069190612f98565b611685565b6040516108189190613a95565b60405180910390f35b34801561082d57600080fd5b50610836611697565b6040516108439190613a95565b60405180910390f35b34801561085857600080fd5b5061086161169d565b60405161086e9190613a95565b60405180910390f35b34801561088357600080fd5b5061089e60048036038101906108999190612f98565b6116a3565b6040516108ab9190613a95565b60405180910390f35b3480156108c057600080fd5b506108db60048036038101906108d69190612fc5565b6116bb565b6040516108e89190613718565b60405180910390f35b3480156108fd57600080fd5b5061091860048036038101906109139190612f98565b61174f565b005b34801561092657600080fd5b5061092f6117d3565b60405161093c9190613a95565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a7857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a885750610a87826117d9565b5b9050919050565b606060018054610a9e90613dd4565b80601f0160208091040260200160405190810160405280929190818152602001828054610aca90613dd4565b8015610b175780601f10610aec57610100808354040283529160200191610b17565b820191906000526020600020905b815481529060010190602001808311610afa57829003601f168201915b5050505050905090565b6000610b2c82611843565b610b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6290613a55565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bb18261100f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1990613995565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c41611850565b73ffffffffffffffffffffffffffffffffffffffff161480610c705750610c6f81610c6a611850565b6116bb565b5b610caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca690613875565b60405180910390fd5b610cba838383611858565b505050565b60008054905090565b610cd061190a565b80600d8190555050565b610ce5838383611988565b505050565b6000610cf5836110b3565b8210610d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2d90613755565b60405180910390fd5b6000610d40610cbf565b905060008060005b83811015610ea6576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e3a57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e925786841415610e83578195505050505050610ee2565b8380610e8e90613e37565b9450505b508080610e9e90613e37565b915050610d48565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed990613a15565b60405180910390fd5b92915050565b610ef061190a565b8060108190555050565b610f0261190a565b610f0c8282611f41565b5050565b610f1861190a565b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015610f75573d6000803e3d6000fd5b50565b610f9383838360405180602001604052806000815250611569565b505050565b6000610fa2610cbf565b8210610fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fda906137d5565b60405180910390fd5b819050919050565b610ff361190a565b8181600c9190611004929190612d8c565b505050565b600e5481565b600061101a82611f5f565b600001519050919050565b600c805461103290613dd4565b80601f016020809104026020016040519081016040528092919081815260200182805461105e90613dd4565b80156110ab5780601f10611080576101008083540402835291602001916110ab565b820191906000526020600020905b81548152906001019060200180831161108e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111b90613895565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6111a461190a565b6111ae6000612162565b565b6111b861190a565b80600e8190555050565b60105481565b6111d061190a565b80600f8190555050565b6111e261190a565b6111ec3382611f41565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61122161190a565b8060118190555050565b60606002805461123a90613dd4565b80601f016020809104026020016040519081016040528092919081815260200182805461126690613dd4565b80156112b35780601f10611288576101008083540402835291602001916112b3565b820191906000526020600020905b81548152906001019060200180831161129657829003601f168201915b5050505050905090565b600b60009054906101000a900460ff1661130c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130390613955565b60405180910390fd5b600f54811115611351576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611348906137b5565b60405180910390fd5b6010548161135d610cbf565b6113679190613b8f565b11156113a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139f90613975565b60405180910390fd5b6113b181612228565b50565b6113bc611850565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561142a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142190613915565b60405180910390fd5b8060066000611437611850565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114e4611850565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115299190613718565b60405180910390a35050565b61153d61190a565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b611574848484611988565b6115808484848461240b565b6115bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b6906139b5565b60405180910390fd5b50505050565b600b60009054906101000a900460ff1681565b60606115e382611843565b611622576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611619906138f5565b60405180910390fd5b600061162c6125a2565b9050600081511161164c5760405180602001604052806000815250611677565b8061165684612634565b60405160200161166792919061368d565b6040516020818303038152906040525b915050919050565b60075481565b600061169082612795565b9050919050565b600f5481565b600d5481565b600a6020528060005260406000206000915090505481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61175761190a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117be90613775565b60405180910390fd5b6117d081612162565b50565b60115481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611912611850565b73ffffffffffffffffffffffffffffffffffffffff166119306111ef565b73ffffffffffffffffffffffffffffffffffffffff1614611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d906138d5565b60405180910390fd5b565b600061199382611f5f565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166119ba611850565b73ffffffffffffffffffffffffffffffffffffffff161480611a1657506119df611850565b73ffffffffffffffffffffffffffffffffffffffff166119fe84610b21565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a325750611a318260000151611a2c611850565b6116bb565b5b905080611a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6b90613935565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611add906138b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4d906137f5565b60405180910390fd5b611b63858585600161287e565b611b736000848460000151611858565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611be19190613c70565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611c859190613b49565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611d8b9190613b8f565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611ed157611e0181611843565b15611ed0576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f398686866001612884565b505050505050565b611f5b82826040518060200160405280600081525061288a565b5050565b611f67612e12565b611f7082611843565b611faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa690613795565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106120135760017f0000000000000000000000000000000000000000000000000000000000000000846120069190613ca4565b6120109190613b8f565b90505b60008390505b818110612121576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461210d5780935050505061215d565b50808061211990613daa565b915050612019565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215490613a35565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600e54600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054108015612280575061227b610cbf565b600d54115b1561235757600e5481101561229557600e5490505b601154600e54826122a69190613ca4565b6122b09190613c16565b3410156122f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e990613815565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123419190613b8f565b925050819055506123523382611f41565b612408565b601154816123659190613c16565b3410156123a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239e90613855565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123f69190613b8f565b925050819055506124073382611f41565b5b50565b600061242c8473ffffffffffffffffffffffffffffffffffffffff16612d69565b15612595578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612455611850565b8786866040518563ffffffff1660e01b815260040161247794939291906136cc565b602060405180830381600087803b15801561249157600080fd5b505af19250505080156124c257506040513d601f19601f820116820180604052508101906124bf9190613188565b60015b612545573d80600081146124f2576040519150601f19603f3d011682016040523d82523d6000602084013e6124f7565b606091505b5060008151141561253d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612534906139b5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061259a565b600190505b949350505050565b6060600c80546125b190613dd4565b80601f01602080910402602001604051908101604052809291908181526020018280546125dd90613dd4565b801561262a5780601f106125ff5761010080835404028352916020019161262a565b820191906000526020600020905b81548152906001019060200180831161260d57829003601f168201915b5050505050905090565b6060600082141561267c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612790565b600082905060005b600082146126ae57808061269790613e37565b915050600a826126a79190613be5565b9150612684565b60008167ffffffffffffffff8111156126ca576126c9613f6d565b5b6040519080825280601f01601f1916602001820160405280156126fc5781602001600182028036833780820191505090505b5090505b60008514612789576001826127159190613ca4565b9150600a856127249190613e80565b60306127309190613b8f565b60f81b81838151811061274657612745613f3e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127829190613be5565b9450612700565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fd90613835565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f7906139f5565b60405180910390fd5b61290981611843565b15612949576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612940906139d5565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008311156129ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a390613a75565b60405180910390fd5b6129b9600085838661287e565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612ab69190613b49565b6fffffffffffffffffffffffffffffffff168152602001858360200151612add9190613b49565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612d4c57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612cec600088848861240b565b612d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d22906139b5565b60405180910390fd5b8180612d3690613e37565b9250508080612d4490613e37565b915050612c7b565b5080600081905550612d616000878588612884565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612d9890613dd4565b90600052602060002090601f016020900481019282612dba5760008555612e01565b82601f10612dd357803560ff1916838001178555612e01565b82800160010185558215612e01579182015b82811115612e00578235825591602001919060010190612de5565b5b509050612e0e9190612e4c565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612e65576000816000905550600101612e4d565b5090565b6000612e7c612e7784613ad5565b613ab0565b905082815260208101848484011115612e9857612e97613fab565b5b612ea3848285613d68565b509392505050565b600081359050612eba816146a1565b92915050565b600081359050612ecf816146b8565b92915050565b600081359050612ee4816146cf565b92915050565b600081519050612ef9816146cf565b92915050565b600082601f830112612f1457612f13613fa1565b5b8135612f24848260208601612e69565b91505092915050565b60008083601f840112612f4357612f42613fa1565b5b8235905067ffffffffffffffff811115612f6057612f5f613f9c565b5b602083019150836001820283011115612f7c57612f7b613fa6565b5b9250929050565b600081359050612f92816146e6565b92915050565b600060208284031215612fae57612fad613fb5565b5b6000612fbc84828501612eab565b91505092915050565b60008060408385031215612fdc57612fdb613fb5565b5b6000612fea85828601612eab565b9250506020612ffb85828601612eab565b9150509250929050565b60008060006060848603121561301e5761301d613fb5565b5b600061302c86828701612eab565b935050602061303d86828701612eab565b925050604061304e86828701612f83565b9150509250925092565b6000806000806080858703121561307257613071613fb5565b5b600061308087828801612eab565b945050602061309187828801612eab565b93505060406130a287828801612f83565b925050606085013567ffffffffffffffff8111156130c3576130c2613fb0565b5b6130cf87828801612eff565b91505092959194509250565b600080604083850312156130f2576130f1613fb5565b5b600061310085828601612eab565b925050602061311185828601612ec0565b9150509250929050565b6000806040838503121561313257613131613fb5565b5b600061314085828601612eab565b925050602061315185828601612f83565b9150509250929050565b60006020828403121561317157613170613fb5565b5b600061317f84828501612ed5565b91505092915050565b60006020828403121561319e5761319d613fb5565b5b60006131ac84828501612eea565b91505092915050565b600080602083850312156131cc576131cb613fb5565b5b600083013567ffffffffffffffff8111156131ea576131e9613fb0565b5b6131f685828601612f2d565b92509250509250929050565b60006020828403121561321857613217613fb5565b5b600061322684828501612f83565b91505092915050565b61323881613cd8565b82525050565b61324781613cea565b82525050565b600061325882613b06565b6132628185613b1c565b9350613272818560208601613d77565b61327b81613fba565b840191505092915050565b600061329182613b11565b61329b8185613b2d565b93506132ab818560208601613d77565b6132b481613fba565b840191505092915050565b60006132ca82613b11565b6132d48185613b3e565b93506132e4818560208601613d77565b80840191505092915050565b60006132fd602283613b2d565b915061330882613fcb565b604082019050919050565b6000613320602683613b2d565b915061332b8261401a565b604082019050919050565b6000613343602a83613b2d565b915061334e82614069565b604082019050919050565b6000613366601e83613b2d565b9150613371826140b8565b602082019050919050565b6000613389602383613b2d565b9150613394826140e1565b604082019050919050565b60006133ac602583613b2d565b91506133b782614130565b604082019050919050565b60006133cf601783613b2d565b91506133da8261417f565b602082019050919050565b60006133f2603183613b2d565b91506133fd826141a8565b604082019050919050565b6000613415601883613b2d565b9150613420826141f7565b602082019050919050565b6000613438603983613b2d565b915061344382614220565b604082019050919050565b600061345b602b83613b2d565b91506134668261426f565b604082019050919050565b600061347e602683613b2d565b9150613489826142be565b604082019050919050565b60006134a1602083613b2d565b91506134ac8261430d565b602082019050919050565b60006134c4602f83613b2d565b91506134cf82614336565b604082019050919050565b60006134e7601a83613b2d565b91506134f282614385565b602082019050919050565b600061350a603283613b2d565b9150613515826143ae565b604082019050919050565b600061352d601d83613b2d565b9150613538826143fd565b602082019050919050565b6000613550601083613b2d565b915061355b82614426565b602082019050919050565b6000613573602283613b2d565b915061357e8261444f565b604082019050919050565b6000613596603383613b2d565b91506135a18261449e565b604082019050919050565b60006135b9601d83613b2d565b91506135c4826144ed565b602082019050919050565b60006135dc602183613b2d565b91506135e782614516565b604082019050919050565b60006135ff602e83613b2d565b915061360a82614565565b604082019050919050565b6000613622602f83613b2d565b915061362d826145b4565b604082019050919050565b6000613645602d83613b2d565b915061365082614603565b604082019050919050565b6000613668602283613b2d565b915061367382614652565b604082019050919050565b61368781613d5e565b82525050565b600061369982856132bf565b91506136a582846132bf565b91508190509392505050565b60006020820190506136c6600083018461322f565b92915050565b60006080820190506136e1600083018761322f565b6136ee602083018661322f565b6136fb604083018561367e565b818103606083015261370d818461324d565b905095945050505050565b600060208201905061372d600083018461323e565b92915050565b6000602082019050818103600083015261374d8184613286565b905092915050565b6000602082019050818103600083015261376e816132f0565b9050919050565b6000602082019050818103600083015261378e81613313565b9050919050565b600060208201905081810360008301526137ae81613336565b9050919050565b600060208201905081810360008301526137ce81613359565b9050919050565b600060208201905081810360008301526137ee8161337c565b9050919050565b6000602082019050818103600083015261380e8161339f565b9050919050565b6000602082019050818103600083015261382e816133c2565b9050919050565b6000602082019050818103600083015261384e816133e5565b9050919050565b6000602082019050818103600083015261386e81613408565b9050919050565b6000602082019050818103600083015261388e8161342b565b9050919050565b600060208201905081810360008301526138ae8161344e565b9050919050565b600060208201905081810360008301526138ce81613471565b9050919050565b600060208201905081810360008301526138ee81613494565b9050919050565b6000602082019050818103600083015261390e816134b7565b9050919050565b6000602082019050818103600083015261392e816134da565b9050919050565b6000602082019050818103600083015261394e816134fd565b9050919050565b6000602082019050818103600083015261396e81613520565b9050919050565b6000602082019050818103600083015261398e81613543565b9050919050565b600060208201905081810360008301526139ae81613566565b9050919050565b600060208201905081810360008301526139ce81613589565b9050919050565b600060208201905081810360008301526139ee816135ac565b9050919050565b60006020820190508181036000830152613a0e816135cf565b9050919050565b60006020820190508181036000830152613a2e816135f2565b9050919050565b60006020820190508181036000830152613a4e81613615565b9050919050565b60006020820190508181036000830152613a6e81613638565b9050919050565b60006020820190508181036000830152613a8e8161365b565b9050919050565b6000602082019050613aaa600083018461367e565b92915050565b6000613aba613acb565b9050613ac68282613e06565b919050565b6000604051905090565b600067ffffffffffffffff821115613af057613aef613f6d565b5b613af982613fba565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b5482613d22565b9150613b5f83613d22565b9250826fffffffffffffffffffffffffffffffff03821115613b8457613b83613eb1565b5b828201905092915050565b6000613b9a82613d5e565b9150613ba583613d5e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bda57613bd9613eb1565b5b828201905092915050565b6000613bf082613d5e565b9150613bfb83613d5e565b925082613c0b57613c0a613ee0565b5b828204905092915050565b6000613c2182613d5e565b9150613c2c83613d5e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c6557613c64613eb1565b5b828202905092915050565b6000613c7b82613d22565b9150613c8683613d22565b925082821015613c9957613c98613eb1565b5b828203905092915050565b6000613caf82613d5e565b9150613cba83613d5e565b925082821015613ccd57613ccc613eb1565b5b828203905092915050565b6000613ce382613d3e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d95578082015181840152602081019050613d7a565b83811115613da4576000848401525b50505050565b6000613db582613d5e565b91506000821415613dc957613dc8613eb1565b5b600182039050919050565b60006002820490506001821680613dec57607f821691505b60208210811415613e0057613dff613f0f565b5b50919050565b613e0f82613fba565b810181811067ffffffffffffffff82111715613e2e57613e2d613f6d565b5b80604052505050565b6000613e4282613d5e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e7557613e74613eb1565b5b600182019050919050565b6000613e8b82613d5e565b9150613e9683613d5e565b925082613ea657613ea5613ee0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4e6f74696365203a204c696d697420506572205472616e73616374696f6e0000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f74696365203a20436c61696d2046726565204e4654000000000000000000600082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f4e6f74696365203a2046756e64206e6f7420656e6f7567680000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4e6f74696365203a204d696e74696e67205075626c6963205061757365000000600082015250565b7f4e6f74696365203a20536f6c646f757400000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6146aa81613cd8565b81146146b557600080fd5b50565b6146c181613cea565b81146146cc57600080fd5b50565b6146d881613cf6565b81146146e357600080fd5b50565b6146ef81613d5e565b81146146fa57600080fd5b5056fea26469706673582212203414d8f6f1aa3031f79a8307cd3286a1bda77fe85794872db1028916622f141964736f6c63430008070033

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80637501f7411161012e578063bc46081b116100ab578063e150007e1161006f578063e150007e1461084c578063e645f70814610877578063e985e9c5146108b4578063f2fde38b146108f1578063fdbf9ef21461091a5761023b565b8063bc46081b14610751578063c87b56dd1461077c578063d7224ba0146107b9578063dc33e681146107e4578063de7fcb1d146108215761023b565b806395d89b41116100f257806395d89b41146106a1578063a0712d68146106cc578063a22cb465146106e8578063ac915c0614610711578063b88d4fde146107285761023b565b80637501f741146105d057806379f34a10146105fb5780638171609b146106245780638da5cb5b1461064d57806391b7f5ed146106785761023b565b80633ccfd60b116101bc5780636352211e116101805780636352211e146104eb5780636c0360eb1461052857806370a0823114610553578063715018a614610590578063742a4c9b146105a75761023b565b80633ccfd60b1461041a57806342842e0e146104315780634f6ccce71461045a57806355f804b3146104975780635b70ea9f146104c05761023b565b80631c3e88f6116102035780631c3e88f61461033957806323b872dd146103625780632f745c591461038b5780632fc2e29c146103c857806337e36f79146103f15761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806318160ddd1461030e575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061315b565b610945565b6040516102749190613718565b60405180910390f35b34801561028957600080fd5b50610292610a8f565b60405161029f9190613733565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613202565b610b21565b6040516102dc91906136b1565b60405180910390f35b3480156102f157600080fd5b5061030c6004803603810190610307919061311b565b610ba6565b005b34801561031a57600080fd5b50610323610cbf565b6040516103309190613a95565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190613202565b610cc8565b005b34801561036e57600080fd5b5061038960048036038101906103849190613005565b610cda565b005b34801561039757600080fd5b506103b260048036038101906103ad919061311b565b610cea565b6040516103bf9190613a95565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea9190613202565b610ee8565b005b3480156103fd57600080fd5b506104186004803603810190610413919061311b565b610efa565b005b34801561042657600080fd5b5061042f610f10565b005b34801561043d57600080fd5b5061045860048036038101906104539190613005565b610f78565b005b34801561046657600080fd5b50610481600480360381019061047c9190613202565b610f98565b60405161048e9190613a95565b60405180910390f35b3480156104a357600080fd5b506104be60048036038101906104b991906131b5565b610feb565b005b3480156104cc57600080fd5b506104d5611009565b6040516104e29190613a95565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d9190613202565b61100f565b60405161051f91906136b1565b60405180910390f35b34801561053457600080fd5b5061053d611025565b60405161054a9190613733565b60405180910390f35b34801561055f57600080fd5b5061057a60048036038101906105759190612f98565b6110b3565b6040516105879190613a95565b60405180910390f35b34801561059c57600080fd5b506105a561119c565b005b3480156105b357600080fd5b506105ce60048036038101906105c99190613202565b6111b0565b005b3480156105dc57600080fd5b506105e56111c2565b6040516105f29190613a95565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d9190613202565b6111c8565b005b34801561063057600080fd5b5061064b60048036038101906106469190613202565b6111da565b005b34801561065957600080fd5b506106626111ef565b60405161066f91906136b1565b60405180910390f35b34801561068457600080fd5b5061069f600480360381019061069a9190613202565b611219565b005b3480156106ad57600080fd5b506106b661122b565b6040516106c39190613733565b60405180910390f35b6106e660048036038101906106e19190613202565b6112bd565b005b3480156106f457600080fd5b5061070f600480360381019061070a91906130db565b6113b4565b005b34801561071d57600080fd5b50610726611535565b005b34801561073457600080fd5b5061074f600480360381019061074a9190613058565b611569565b005b34801561075d57600080fd5b506107666115c5565b6040516107739190613718565b60405180910390f35b34801561078857600080fd5b506107a3600480360381019061079e9190613202565b6115d8565b6040516107b09190613733565b60405180910390f35b3480156107c557600080fd5b506107ce61167f565b6040516107db9190613a95565b60405180910390f35b3480156107f057600080fd5b5061080b60048036038101906108069190612f98565b611685565b6040516108189190613a95565b60405180910390f35b34801561082d57600080fd5b50610836611697565b6040516108439190613a95565b60405180910390f35b34801561085857600080fd5b5061086161169d565b60405161086e9190613a95565b60405180910390f35b34801561088357600080fd5b5061089e60048036038101906108999190612f98565b6116a3565b6040516108ab9190613a95565b60405180910390f35b3480156108c057600080fd5b506108db60048036038101906108d69190612fc5565b6116bb565b6040516108e89190613718565b60405180910390f35b3480156108fd57600080fd5b5061091860048036038101906109139190612f98565b61174f565b005b34801561092657600080fd5b5061092f6117d3565b60405161093c9190613a95565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a7857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a885750610a87826117d9565b5b9050919050565b606060018054610a9e90613dd4565b80601f0160208091040260200160405190810160405280929190818152602001828054610aca90613dd4565b8015610b175780601f10610aec57610100808354040283529160200191610b17565b820191906000526020600020905b815481529060010190602001808311610afa57829003601f168201915b5050505050905090565b6000610b2c82611843565b610b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6290613a55565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bb18261100f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1990613995565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c41611850565b73ffffffffffffffffffffffffffffffffffffffff161480610c705750610c6f81610c6a611850565b6116bb565b5b610caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca690613875565b60405180910390fd5b610cba838383611858565b505050565b60008054905090565b610cd061190a565b80600d8190555050565b610ce5838383611988565b505050565b6000610cf5836110b3565b8210610d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2d90613755565b60405180910390fd5b6000610d40610cbf565b905060008060005b83811015610ea6576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e3a57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e925786841415610e83578195505050505050610ee2565b8380610e8e90613e37565b9450505b508080610e9e90613e37565b915050610d48565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed990613a15565b60405180910390fd5b92915050565b610ef061190a565b8060108190555050565b610f0261190a565b610f0c8282611f41565b5050565b610f1861190a565b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015610f75573d6000803e3d6000fd5b50565b610f9383838360405180602001604052806000815250611569565b505050565b6000610fa2610cbf565b8210610fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fda906137d5565b60405180910390fd5b819050919050565b610ff361190a565b8181600c9190611004929190612d8c565b505050565b600e5481565b600061101a82611f5f565b600001519050919050565b600c805461103290613dd4565b80601f016020809104026020016040519081016040528092919081815260200182805461105e90613dd4565b80156110ab5780601f10611080576101008083540402835291602001916110ab565b820191906000526020600020905b81548152906001019060200180831161108e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111b90613895565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6111a461190a565b6111ae6000612162565b565b6111b861190a565b80600e8190555050565b60105481565b6111d061190a565b80600f8190555050565b6111e261190a565b6111ec3382611f41565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61122161190a565b8060118190555050565b60606002805461123a90613dd4565b80601f016020809104026020016040519081016040528092919081815260200182805461126690613dd4565b80156112b35780601f10611288576101008083540402835291602001916112b3565b820191906000526020600020905b81548152906001019060200180831161129657829003601f168201915b5050505050905090565b600b60009054906101000a900460ff1661130c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130390613955565b60405180910390fd5b600f54811115611351576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611348906137b5565b60405180910390fd5b6010548161135d610cbf565b6113679190613b8f565b11156113a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139f90613975565b60405180910390fd5b6113b181612228565b50565b6113bc611850565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561142a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142190613915565b60405180910390fd5b8060066000611437611850565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114e4611850565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115299190613718565b60405180910390a35050565b61153d61190a565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b611574848484611988565b6115808484848461240b565b6115bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b6906139b5565b60405180910390fd5b50505050565b600b60009054906101000a900460ff1681565b60606115e382611843565b611622576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611619906138f5565b60405180910390fd5b600061162c6125a2565b9050600081511161164c5760405180602001604052806000815250611677565b8061165684612634565b60405160200161166792919061368d565b6040516020818303038152906040525b915050919050565b60075481565b600061169082612795565b9050919050565b600f5481565b600d5481565b600a6020528060005260406000206000915090505481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61175761190a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117be90613775565b60405180910390fd5b6117d081612162565b50565b60115481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611912611850565b73ffffffffffffffffffffffffffffffffffffffff166119306111ef565b73ffffffffffffffffffffffffffffffffffffffff1614611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d906138d5565b60405180910390fd5b565b600061199382611f5f565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166119ba611850565b73ffffffffffffffffffffffffffffffffffffffff161480611a1657506119df611850565b73ffffffffffffffffffffffffffffffffffffffff166119fe84610b21565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a325750611a318260000151611a2c611850565b6116bb565b5b905080611a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6b90613935565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611add906138b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4d906137f5565b60405180910390fd5b611b63858585600161287e565b611b736000848460000151611858565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611be19190613c70565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611c859190613b49565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611d8b9190613b8f565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611ed157611e0181611843565b15611ed0576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f398686866001612884565b505050505050565b611f5b82826040518060200160405280600081525061288a565b5050565b611f67612e12565b611f7082611843565b611faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa690613795565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000006483106120135760017f0000000000000000000000000000000000000000000000000000000000000064846120069190613ca4565b6120109190613b8f565b90505b60008390505b818110612121576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461210d5780935050505061215d565b50808061211990613daa565b915050612019565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215490613a35565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600e54600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054108015612280575061227b610cbf565b600d54115b1561235757600e5481101561229557600e5490505b601154600e54826122a69190613ca4565b6122b09190613c16565b3410156122f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e990613815565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123419190613b8f565b925050819055506123523382611f41565b612408565b601154816123659190613c16565b3410156123a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239e90613855565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123f69190613b8f565b925050819055506124073382611f41565b5b50565b600061242c8473ffffffffffffffffffffffffffffffffffffffff16612d69565b15612595578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612455611850565b8786866040518563ffffffff1660e01b815260040161247794939291906136cc565b602060405180830381600087803b15801561249157600080fd5b505af19250505080156124c257506040513d601f19601f820116820180604052508101906124bf9190613188565b60015b612545573d80600081146124f2576040519150601f19603f3d011682016040523d82523d6000602084013e6124f7565b606091505b5060008151141561253d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612534906139b5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061259a565b600190505b949350505050565b6060600c80546125b190613dd4565b80601f01602080910402602001604051908101604052809291908181526020018280546125dd90613dd4565b801561262a5780601f106125ff5761010080835404028352916020019161262a565b820191906000526020600020905b81548152906001019060200180831161260d57829003601f168201915b5050505050905090565b6060600082141561267c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612790565b600082905060005b600082146126ae57808061269790613e37565b915050600a826126a79190613be5565b9150612684565b60008167ffffffffffffffff8111156126ca576126c9613f6d565b5b6040519080825280601f01601f1916602001820160405280156126fc5781602001600182028036833780820191505090505b5090505b60008514612789576001826127159190613ca4565b9150600a856127249190613e80565b60306127309190613b8f565b60f81b81838151811061274657612745613f3e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127829190613be5565b9450612700565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fd90613835565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f7906139f5565b60405180910390fd5b61290981611843565b15612949576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612940906139d5565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000648311156129ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a390613a75565b60405180910390fd5b6129b9600085838661287e565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612ab69190613b49565b6fffffffffffffffffffffffffffffffff168152602001858360200151612add9190613b49565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612d4c57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612cec600088848861240b565b612d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d22906139b5565b60405180910390fd5b8180612d3690613e37565b9250508080612d4490613e37565b915050612c7b565b5080600081905550612d616000878588612884565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612d9890613dd4565b90600052602060002090601f016020900481019282612dba5760008555612e01565b82601f10612dd357803560ff1916838001178555612e01565b82800160010185558215612e01579182015b82811115612e00578235825591602001919060010190612de5565b5b509050612e0e9190612e4c565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612e65576000816000905550600101612e4d565b5090565b6000612e7c612e7784613ad5565b613ab0565b905082815260208101848484011115612e9857612e97613fab565b5b612ea3848285613d68565b509392505050565b600081359050612eba816146a1565b92915050565b600081359050612ecf816146b8565b92915050565b600081359050612ee4816146cf565b92915050565b600081519050612ef9816146cf565b92915050565b600082601f830112612f1457612f13613fa1565b5b8135612f24848260208601612e69565b91505092915050565b60008083601f840112612f4357612f42613fa1565b5b8235905067ffffffffffffffff811115612f6057612f5f613f9c565b5b602083019150836001820283011115612f7c57612f7b613fa6565b5b9250929050565b600081359050612f92816146e6565b92915050565b600060208284031215612fae57612fad613fb5565b5b6000612fbc84828501612eab565b91505092915050565b60008060408385031215612fdc57612fdb613fb5565b5b6000612fea85828601612eab565b9250506020612ffb85828601612eab565b9150509250929050565b60008060006060848603121561301e5761301d613fb5565b5b600061302c86828701612eab565b935050602061303d86828701612eab565b925050604061304e86828701612f83565b9150509250925092565b6000806000806080858703121561307257613071613fb5565b5b600061308087828801612eab565b945050602061309187828801612eab565b93505060406130a287828801612f83565b925050606085013567ffffffffffffffff8111156130c3576130c2613fb0565b5b6130cf87828801612eff565b91505092959194509250565b600080604083850312156130f2576130f1613fb5565b5b600061310085828601612eab565b925050602061311185828601612ec0565b9150509250929050565b6000806040838503121561313257613131613fb5565b5b600061314085828601612eab565b925050602061315185828601612f83565b9150509250929050565b60006020828403121561317157613170613fb5565b5b600061317f84828501612ed5565b91505092915050565b60006020828403121561319e5761319d613fb5565b5b60006131ac84828501612eea565b91505092915050565b600080602083850312156131cc576131cb613fb5565b5b600083013567ffffffffffffffff8111156131ea576131e9613fb0565b5b6131f685828601612f2d565b92509250509250929050565b60006020828403121561321857613217613fb5565b5b600061322684828501612f83565b91505092915050565b61323881613cd8565b82525050565b61324781613cea565b82525050565b600061325882613b06565b6132628185613b1c565b9350613272818560208601613d77565b61327b81613fba565b840191505092915050565b600061329182613b11565b61329b8185613b2d565b93506132ab818560208601613d77565b6132b481613fba565b840191505092915050565b60006132ca82613b11565b6132d48185613b3e565b93506132e4818560208601613d77565b80840191505092915050565b60006132fd602283613b2d565b915061330882613fcb565b604082019050919050565b6000613320602683613b2d565b915061332b8261401a565b604082019050919050565b6000613343602a83613b2d565b915061334e82614069565b604082019050919050565b6000613366601e83613b2d565b9150613371826140b8565b602082019050919050565b6000613389602383613b2d565b9150613394826140e1565b604082019050919050565b60006133ac602583613b2d565b91506133b782614130565b604082019050919050565b60006133cf601783613b2d565b91506133da8261417f565b602082019050919050565b60006133f2603183613b2d565b91506133fd826141a8565b604082019050919050565b6000613415601883613b2d565b9150613420826141f7565b602082019050919050565b6000613438603983613b2d565b915061344382614220565b604082019050919050565b600061345b602b83613b2d565b91506134668261426f565b604082019050919050565b600061347e602683613b2d565b9150613489826142be565b604082019050919050565b60006134a1602083613b2d565b91506134ac8261430d565b602082019050919050565b60006134c4602f83613b2d565b91506134cf82614336565b604082019050919050565b60006134e7601a83613b2d565b91506134f282614385565b602082019050919050565b600061350a603283613b2d565b9150613515826143ae565b604082019050919050565b600061352d601d83613b2d565b9150613538826143fd565b602082019050919050565b6000613550601083613b2d565b915061355b82614426565b602082019050919050565b6000613573602283613b2d565b915061357e8261444f565b604082019050919050565b6000613596603383613b2d565b91506135a18261449e565b604082019050919050565b60006135b9601d83613b2d565b91506135c4826144ed565b602082019050919050565b60006135dc602183613b2d565b91506135e782614516565b604082019050919050565b60006135ff602e83613b2d565b915061360a82614565565b604082019050919050565b6000613622602f83613b2d565b915061362d826145b4565b604082019050919050565b6000613645602d83613b2d565b915061365082614603565b604082019050919050565b6000613668602283613b2d565b915061367382614652565b604082019050919050565b61368781613d5e565b82525050565b600061369982856132bf565b91506136a582846132bf565b91508190509392505050565b60006020820190506136c6600083018461322f565b92915050565b60006080820190506136e1600083018761322f565b6136ee602083018661322f565b6136fb604083018561367e565b818103606083015261370d818461324d565b905095945050505050565b600060208201905061372d600083018461323e565b92915050565b6000602082019050818103600083015261374d8184613286565b905092915050565b6000602082019050818103600083015261376e816132f0565b9050919050565b6000602082019050818103600083015261378e81613313565b9050919050565b600060208201905081810360008301526137ae81613336565b9050919050565b600060208201905081810360008301526137ce81613359565b9050919050565b600060208201905081810360008301526137ee8161337c565b9050919050565b6000602082019050818103600083015261380e8161339f565b9050919050565b6000602082019050818103600083015261382e816133c2565b9050919050565b6000602082019050818103600083015261384e816133e5565b9050919050565b6000602082019050818103600083015261386e81613408565b9050919050565b6000602082019050818103600083015261388e8161342b565b9050919050565b600060208201905081810360008301526138ae8161344e565b9050919050565b600060208201905081810360008301526138ce81613471565b9050919050565b600060208201905081810360008301526138ee81613494565b9050919050565b6000602082019050818103600083015261390e816134b7565b9050919050565b6000602082019050818103600083015261392e816134da565b9050919050565b6000602082019050818103600083015261394e816134fd565b9050919050565b6000602082019050818103600083015261396e81613520565b9050919050565b6000602082019050818103600083015261398e81613543565b9050919050565b600060208201905081810360008301526139ae81613566565b9050919050565b600060208201905081810360008301526139ce81613589565b9050919050565b600060208201905081810360008301526139ee816135ac565b9050919050565b60006020820190508181036000830152613a0e816135cf565b9050919050565b60006020820190508181036000830152613a2e816135f2565b9050919050565b60006020820190508181036000830152613a4e81613615565b9050919050565b60006020820190508181036000830152613a6e81613638565b9050919050565b60006020820190508181036000830152613a8e8161365b565b9050919050565b6000602082019050613aaa600083018461367e565b92915050565b6000613aba613acb565b9050613ac68282613e06565b919050565b6000604051905090565b600067ffffffffffffffff821115613af057613aef613f6d565b5b613af982613fba565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b5482613d22565b9150613b5f83613d22565b9250826fffffffffffffffffffffffffffffffff03821115613b8457613b83613eb1565b5b828201905092915050565b6000613b9a82613d5e565b9150613ba583613d5e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bda57613bd9613eb1565b5b828201905092915050565b6000613bf082613d5e565b9150613bfb83613d5e565b925082613c0b57613c0a613ee0565b5b828204905092915050565b6000613c2182613d5e565b9150613c2c83613d5e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c6557613c64613eb1565b5b828202905092915050565b6000613c7b82613d22565b9150613c8683613d22565b925082821015613c9957613c98613eb1565b5b828203905092915050565b6000613caf82613d5e565b9150613cba83613d5e565b925082821015613ccd57613ccc613eb1565b5b828203905092915050565b6000613ce382613d3e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d95578082015181840152602081019050613d7a565b83811115613da4576000848401525b50505050565b6000613db582613d5e565b91506000821415613dc957613dc8613eb1565b5b600182039050919050565b60006002820490506001821680613dec57607f821691505b60208210811415613e0057613dff613f0f565b5b50919050565b613e0f82613fba565b810181811067ffffffffffffffff82111715613e2e57613e2d613f6d565b5b80604052505050565b6000613e4282613d5e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e7557613e74613eb1565b5b600182019050919050565b6000613e8b82613d5e565b9150613e9683613d5e565b925082613ea657613ea5613ee0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4e6f74696365203a204c696d697420506572205472616e73616374696f6e0000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f74696365203a20436c61696d2046726565204e4654000000000000000000600082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f4e6f74696365203a2046756e64206e6f7420656e6f7567680000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4e6f74696365203a204d696e74696e67205075626c6963205061757365000000600082015250565b7f4e6f74696365203a20536f6c646f757400000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6146aa81613cd8565b81146146b557600080fd5b50565b6146c181613cea565b81146146cc57600080fd5b50565b6146d881613cf6565b81146146e357600080fd5b50565b6146ef81613d5e565b81146146fa57600080fd5b5056fea26469706673582212203414d8f6f1aa3031f79a8307cd3286a1bda77fe85794872db1028916622f141964736f6c63430008070033

Deployed Bytecode Sourcemap

205:2692:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4251:370:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5977:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7502:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7065:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2812:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2342:103:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8352:142:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3443:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2674:94:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1790:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2776:116;;;;;;;;;;;;;:::i;:::-;;8557:157:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2975:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2134:102:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;442:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5800:118:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;372:21:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4677:211:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1831:101:0;;;;;;;;;;;;;:::i;:::-;;2575:91:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;511:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2453:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1904:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1201:85:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2244:90:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6132:98:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;681:290:11;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7770:274:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2018:104:11;;;;;;;;;;;;;:::i;:::-;;8777:311:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;328:37:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6293:394:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13192:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1553:113:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;473:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;402:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;275:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8107:186:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2081:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;545:40:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4251:370:12;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;2342:103:11:-;1094:13:0;:11;:13::i;:::-;2433:4:11::1;2416:14;:21;;;;2342:103:::0;:::o;8352:142:12:-;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;2674:94:11:-;1094:13:0;:11;:13::i;:::-;2752:8:11::1;2742:7;:18;;;;2674:94:::0;:::o;1790:106::-;1094:13:0;:11;:13::i;:::-;1870:18:11::1;1880:2;1884:3;1870:9;:18::i;:::-;1790:106:::0;;:::o;2776:116::-;1094:13:0;:11;:13::i;:::-;2832:10:11::1;2824:28;;:60;2869:4;2853:30;;;2824:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;2776:116::o:0;8557:157:12:-;8669:39;8686:4;8692:2;8696:7;8669:39;;;;;;;;;;;;:16;:39::i;:::-;8557:157;;;:::o;2975:177::-;3042:7;3074:13;:11;:13::i;:::-;3066:5;:21;3058:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;3141:5;3134:12;;2975:177;;;:::o;2134:102:11:-;1094:13:0;:11;:13::i;:::-;2220:8:11::1;;2210:7;:18;;;;;;;:::i;:::-;;2134:102:::0;;:::o;442:24::-;;;;:::o;5800:118:12:-;5864:7;5887:20;5899:7;5887:11;:20::i;:::-;:25;;;5880:32;;5800:118;;;:::o;372:21:11:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4677:211:12:-;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;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;2575:91:11:-;1094:13:0;:11;:13::i;:::-;2654:4:11::1;2643:8;:15;;;;2575:91:::0;:::o;511:27::-;;;;:::o;2453:114::-;1094:13:0;:11;:13::i;:::-;2546::11::1;2531:12;:28;;;;2453:114:::0;:::o;1904:106::-;1094:13:0;:11;:13::i;:::-;1976:26:11::1;1986:10;1998:3;1976:9;:26::i;:::-;1904:106:::0;:::o;1201:85:0:-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;2244:90:11:-;1094:13:0;:11;:13::i;:::-;2320:6:11::1;2308:9;:18;;;;2244:90:::0;:::o;6132:98:12:-;6188:13;6217:7;6210:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6132:98;:::o;681:290:11:-;749:16;;;;;;;;;;;741:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;826:12;;819:3;:19;;811:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;915:7;;908:3;892:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:30;;884:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;953:10;959:3;953:5;:10::i;:::-;681:290;:::o;7770:274:12:-;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;2018:104:11:-;1094:13:0;:11;:13::i;:::-;2097:16:11::1;;;;;;;;;;;2096:17;2076:16;;:37;;;;;;;;;;;;;;;;;;2018:104::o:0;8777:311:12:-;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;328:37:11:-;;;;;;;;;;;;;:::o;6293:394:12:-;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;13192:43::-;;;;:::o;1553:113:11:-;1611:7;1638:20;1652:5;1638:13;:20::i;:::-;1631:27;;1553:113;;;:::o;473:29::-;;;;:::o;402:33::-;;;;:::o;275:46::-;;;;;;;;;;;;;;;;;:::o;8107:186:12:-;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;545:40:11:-;;;;:::o;829:155:9:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;9327:105:12:-;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:12:-;13138:2;13111:15;:24;13127:7;13111:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;13172:7;13168:2;13152:28;;13161:5;13152:28;;;;;;;;;;;;13014:172;;;:::o;1359:130:0:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;11379:1529:12:-;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;9438:98::-;9503:27;9513:2;9517:8;9503:27;;;;;;;;;;;;:9;:27::i;:::-;9438:98;;:::o;5140:606::-;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;979:566:11:-;1052:8;;1027:10;:22;1038:10;1027:22;;;;;;;;;;;;;;;;:33;:67;;;;;1081:13;:11;:13::i;:::-;1064:14;;:30;1027:67;1024:514;;;1130:8;;1124:3;:14;1121:33;;;1146:8;;1140:14;;1121:33;1208:9;;1196:8;;1190:3;:14;;;;:::i;:::-;1189:28;;;;:::i;:::-;1176:9;:41;;1168:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;1285:3;1259:10;:22;1270:10;1259:22;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;1302:26;1312:10;1324:3;1302:9;:26::i;:::-;1024:514;;;1405:9;;1399:3;:15;;;;:::i;:::-;1386:9;:28;;1378:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;1483:3;1457:10;:22;1468:10;1457:22;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;1500:26;1510:10;1522:3;1500:9;:26::i;:::-;1024:514;979:566;:::o;14729:690:12:-;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;1674:108:11:-;1734:13;1767:7;1760:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1674: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:12:-;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;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:118::-;7060:24;7078:5;7060:24;:::i;:::-;7055:3;7048:37;6973:118;;:::o;7097:109::-;7178:21;7193:5;7178:21;:::i;:::-;7173:3;7166:34;7097:109;;:::o;7212:360::-;7298:3;7326:38;7358:5;7326:38;:::i;:::-;7380:70;7443:6;7438:3;7380:70;:::i;:::-;7373:77;;7459:52;7504:6;7499:3;7492:4;7485:5;7481:16;7459:52;:::i;:::-;7536:29;7558:6;7536:29;:::i;:::-;7531:3;7527:39;7520:46;;7302:270;7212:360;;;;:::o;7578:364::-;7666:3;7694:39;7727:5;7694:39;:::i;:::-;7749:71;7813:6;7808:3;7749:71;:::i;:::-;7742:78;;7829:52;7874:6;7869:3;7862:4;7855:5;7851:16;7829:52;:::i;:::-;7906:29;7928:6;7906:29;:::i;:::-;7901:3;7897:39;7890:46;;7670:272;7578:364;;;;:::o;7948:377::-;8054:3;8082:39;8115:5;8082:39;:::i;:::-;8137:89;8219:6;8214:3;8137:89;:::i;:::-;8130:96;;8235:52;8280:6;8275:3;8268:4;8261:5;8257:16;8235:52;:::i;:::-;8312:6;8307:3;8303:16;8296:23;;8058:267;7948:377;;;;:::o;8331:366::-;8473:3;8494:67;8558:2;8553:3;8494:67;:::i;:::-;8487:74;;8570:93;8659:3;8570:93;:::i;:::-;8688:2;8683:3;8679:12;8672:19;;8331:366;;;:::o;8703:::-;8845:3;8866:67;8930:2;8925:3;8866:67;:::i;:::-;8859:74;;8942:93;9031:3;8942:93;:::i;:::-;9060:2;9055:3;9051:12;9044:19;;8703:366;;;:::o;9075:::-;9217:3;9238:67;9302:2;9297:3;9238:67;:::i;:::-;9231:74;;9314:93;9403:3;9314:93;:::i;:::-;9432:2;9427:3;9423:12;9416:19;;9075:366;;;:::o;9447:::-;9589:3;9610:67;9674:2;9669:3;9610:67;:::i;:::-;9603:74;;9686:93;9775:3;9686:93;:::i;:::-;9804:2;9799:3;9795:12;9788:19;;9447:366;;;:::o;9819:::-;9961:3;9982:67;10046:2;10041:3;9982:67;:::i;:::-;9975:74;;10058:93;10147:3;10058:93;:::i;:::-;10176:2;10171:3;10167:12;10160:19;;9819:366;;;:::o;10191:::-;10333:3;10354:67;10418:2;10413:3;10354:67;:::i;:::-;10347:74;;10430:93;10519:3;10430:93;:::i;:::-;10548:2;10543:3;10539:12;10532:19;;10191:366;;;:::o;10563:::-;10705:3;10726:67;10790:2;10785:3;10726:67;:::i;:::-;10719:74;;10802:93;10891:3;10802:93;:::i;:::-;10920:2;10915:3;10911:12;10904:19;;10563:366;;;:::o;10935:::-;11077:3;11098:67;11162:2;11157:3;11098:67;:::i;:::-;11091:74;;11174:93;11263:3;11174:93;:::i;:::-;11292:2;11287:3;11283:12;11276:19;;10935:366;;;:::o;11307:::-;11449:3;11470:67;11534:2;11529:3;11470:67;:::i;:::-;11463:74;;11546:93;11635:3;11546:93;:::i;:::-;11664:2;11659:3;11655:12;11648:19;;11307:366;;;:::o;11679:::-;11821:3;11842:67;11906:2;11901:3;11842:67;:::i;:::-;11835:74;;11918:93;12007:3;11918:93;:::i;:::-;12036:2;12031:3;12027:12;12020:19;;11679:366;;;:::o;12051:::-;12193:3;12214:67;12278:2;12273:3;12214:67;:::i;:::-;12207:74;;12290:93;12379:3;12290:93;:::i;:::-;12408:2;12403:3;12399:12;12392:19;;12051:366;;;:::o;12423:::-;12565:3;12586:67;12650:2;12645:3;12586:67;:::i;:::-;12579:74;;12662:93;12751:3;12662:93;:::i;:::-;12780:2;12775:3;12771:12;12764:19;;12423:366;;;:::o;12795:::-;12937:3;12958:67;13022:2;13017:3;12958:67;:::i;:::-;12951:74;;13034:93;13123:3;13034:93;:::i;:::-;13152:2;13147:3;13143:12;13136:19;;12795:366;;;:::o;13167:::-;13309:3;13330:67;13394:2;13389:3;13330:67;:::i;:::-;13323:74;;13406:93;13495:3;13406:93;:::i;:::-;13524:2;13519:3;13515:12;13508:19;;13167:366;;;:::o;13539:::-;13681:3;13702:67;13766:2;13761:3;13702:67;:::i;:::-;13695:74;;13778:93;13867:3;13778:93;:::i;:::-;13896:2;13891:3;13887:12;13880:19;;13539:366;;;:::o;13911:::-;14053:3;14074:67;14138:2;14133:3;14074:67;:::i;:::-;14067:74;;14150:93;14239:3;14150:93;:::i;:::-;14268:2;14263:3;14259:12;14252:19;;13911:366;;;:::o;14283:::-;14425:3;14446:67;14510:2;14505:3;14446:67;:::i;:::-;14439:74;;14522:93;14611:3;14522:93;:::i;:::-;14640:2;14635:3;14631:12;14624:19;;14283:366;;;:::o;14655:::-;14797:3;14818:67;14882:2;14877:3;14818:67;:::i;:::-;14811:74;;14894:93;14983:3;14894:93;:::i;:::-;15012:2;15007:3;15003:12;14996:19;;14655:366;;;:::o;15027:::-;15169:3;15190:67;15254:2;15249:3;15190:67;:::i;:::-;15183:74;;15266:93;15355:3;15266:93;:::i;:::-;15384:2;15379:3;15375:12;15368:19;;15027:366;;;:::o;15399:::-;15541:3;15562:67;15626:2;15621:3;15562:67;:::i;:::-;15555:74;;15638:93;15727:3;15638:93;:::i;:::-;15756:2;15751:3;15747:12;15740:19;;15399:366;;;:::o;15771:::-;15913:3;15934:67;15998:2;15993:3;15934:67;:::i;:::-;15927:74;;16010:93;16099:3;16010:93;:::i;:::-;16128:2;16123:3;16119:12;16112:19;;15771:366;;;:::o;16143:::-;16285:3;16306:67;16370:2;16365:3;16306:67;:::i;:::-;16299:74;;16382:93;16471:3;16382:93;:::i;:::-;16500:2;16495:3;16491:12;16484:19;;16143:366;;;:::o;16515:::-;16657:3;16678:67;16742:2;16737:3;16678:67;:::i;:::-;16671:74;;16754:93;16843:3;16754:93;:::i;:::-;16872:2;16867:3;16863:12;16856:19;;16515:366;;;:::o;16887:::-;17029:3;17050:67;17114:2;17109:3;17050:67;:::i;:::-;17043:74;;17126:93;17215:3;17126:93;:::i;:::-;17244:2;17239:3;17235:12;17228:19;;16887:366;;;:::o;17259:::-;17401:3;17422:67;17486:2;17481:3;17422:67;:::i;:::-;17415:74;;17498:93;17587:3;17498:93;:::i;:::-;17616:2;17611:3;17607:12;17600:19;;17259:366;;;:::o;17631:::-;17773:3;17794:67;17858:2;17853:3;17794:67;:::i;:::-;17787:74;;17870:93;17959:3;17870:93;:::i;:::-;17988:2;17983:3;17979:12;17972:19;;17631:366;;;:::o;18003:118::-;18090:24;18108:5;18090:24;:::i;:::-;18085:3;18078:37;18003:118;;:::o;18127:435::-;18307:3;18329:95;18420:3;18411:6;18329:95;:::i;:::-;18322:102;;18441:95;18532:3;18523:6;18441:95;:::i;:::-;18434:102;;18553:3;18546:10;;18127:435;;;;;:::o;18568:222::-;18661:4;18699:2;18688:9;18684:18;18676:26;;18712:71;18780:1;18769:9;18765:17;18756:6;18712:71;:::i;:::-;18568:222;;;;:::o;18796:640::-;18991:4;19029:3;19018:9;19014:19;19006:27;;19043:71;19111:1;19100:9;19096:17;19087:6;19043:71;:::i;:::-;19124:72;19192:2;19181:9;19177:18;19168:6;19124:72;:::i;:::-;19206;19274:2;19263:9;19259:18;19250:6;19206:72;:::i;:::-;19325:9;19319:4;19315:20;19310:2;19299:9;19295:18;19288:48;19353:76;19424:4;19415:6;19353:76;:::i;:::-;19345:84;;18796:640;;;;;;;:::o;19442:210::-;19529:4;19567:2;19556:9;19552:18;19544:26;;19580:65;19642:1;19631:9;19627:17;19618:6;19580:65;:::i;:::-;19442:210;;;;:::o;19658:313::-;19771:4;19809:2;19798:9;19794:18;19786:26;;19858:9;19852:4;19848:20;19844:1;19833:9;19829:17;19822:47;19886:78;19959:4;19950:6;19886:78;:::i;:::-;19878:86;;19658:313;;;;:::o;19977:419::-;20143:4;20181:2;20170:9;20166:18;20158:26;;20230:9;20224:4;20220:20;20216:1;20205:9;20201:17;20194:47;20258:131;20384:4;20258:131;:::i;:::-;20250:139;;19977:419;;;:::o;20402:::-;20568:4;20606:2;20595:9;20591:18;20583:26;;20655:9;20649:4;20645:20;20641:1;20630:9;20626:17;20619:47;20683:131;20809:4;20683:131;:::i;:::-;20675:139;;20402:419;;;:::o;20827:::-;20993:4;21031:2;21020:9;21016:18;21008:26;;21080:9;21074:4;21070:20;21066:1;21055:9;21051:17;21044:47;21108:131;21234:4;21108:131;:::i;:::-;21100:139;;20827:419;;;:::o;21252:::-;21418:4;21456:2;21445:9;21441:18;21433:26;;21505:9;21499:4;21495:20;21491:1;21480:9;21476:17;21469:47;21533:131;21659:4;21533:131;:::i;:::-;21525:139;;21252:419;;;:::o;21677:::-;21843:4;21881:2;21870:9;21866:18;21858:26;;21930:9;21924:4;21920:20;21916:1;21905:9;21901:17;21894:47;21958:131;22084:4;21958:131;:::i;:::-;21950:139;;21677:419;;;:::o;22102:::-;22268:4;22306:2;22295:9;22291:18;22283:26;;22355:9;22349:4;22345:20;22341:1;22330:9;22326:17;22319:47;22383:131;22509:4;22383:131;:::i;:::-;22375:139;;22102:419;;;:::o;22527:::-;22693:4;22731:2;22720:9;22716:18;22708:26;;22780:9;22774:4;22770:20;22766:1;22755:9;22751:17;22744:47;22808:131;22934:4;22808:131;:::i;:::-;22800:139;;22527:419;;;:::o;22952:::-;23118:4;23156:2;23145:9;23141:18;23133:26;;23205:9;23199:4;23195:20;23191:1;23180:9;23176:17;23169:47;23233:131;23359:4;23233:131;:::i;:::-;23225:139;;22952:419;;;:::o;23377:::-;23543:4;23581:2;23570:9;23566:18;23558:26;;23630:9;23624:4;23620:20;23616:1;23605:9;23601:17;23594:47;23658:131;23784:4;23658:131;:::i;:::-;23650:139;;23377:419;;;:::o;23802:::-;23968:4;24006:2;23995:9;23991:18;23983:26;;24055:9;24049:4;24045:20;24041:1;24030:9;24026:17;24019:47;24083:131;24209:4;24083:131;:::i;:::-;24075:139;;23802:419;;;:::o;24227:::-;24393:4;24431:2;24420:9;24416:18;24408:26;;24480:9;24474:4;24470:20;24466:1;24455:9;24451:17;24444:47;24508:131;24634:4;24508:131;:::i;:::-;24500:139;;24227:419;;;:::o;24652:::-;24818:4;24856:2;24845:9;24841:18;24833:26;;24905:9;24899:4;24895:20;24891:1;24880:9;24876:17;24869:47;24933:131;25059:4;24933:131;:::i;:::-;24925:139;;24652:419;;;:::o;25077:::-;25243:4;25281:2;25270:9;25266:18;25258:26;;25330:9;25324:4;25320:20;25316:1;25305:9;25301:17;25294:47;25358:131;25484:4;25358:131;:::i;:::-;25350:139;;25077:419;;;:::o;25502:::-;25668:4;25706:2;25695:9;25691:18;25683:26;;25755:9;25749:4;25745:20;25741:1;25730:9;25726:17;25719:47;25783:131;25909:4;25783:131;:::i;:::-;25775:139;;25502:419;;;:::o;25927:::-;26093:4;26131:2;26120:9;26116:18;26108:26;;26180:9;26174:4;26170:20;26166:1;26155:9;26151:17;26144:47;26208:131;26334:4;26208:131;:::i;:::-;26200:139;;25927:419;;;:::o;26352:::-;26518:4;26556:2;26545:9;26541:18;26533:26;;26605:9;26599:4;26595:20;26591:1;26580:9;26576:17;26569:47;26633:131;26759:4;26633:131;:::i;:::-;26625:139;;26352:419;;;:::o;26777:::-;26943:4;26981:2;26970:9;26966:18;26958:26;;27030:9;27024:4;27020:20;27016:1;27005:9;27001:17;26994:47;27058:131;27184:4;27058:131;:::i;:::-;27050:139;;26777:419;;;:::o;27202:::-;27368:4;27406:2;27395:9;27391:18;27383:26;;27455:9;27449:4;27445:20;27441:1;27430:9;27426:17;27419:47;27483:131;27609:4;27483:131;:::i;:::-;27475:139;;27202:419;;;:::o;27627:::-;27793:4;27831:2;27820:9;27816:18;27808:26;;27880:9;27874:4;27870:20;27866:1;27855:9;27851:17;27844:47;27908:131;28034:4;27908:131;:::i;:::-;27900:139;;27627:419;;;:::o;28052:::-;28218:4;28256:2;28245:9;28241:18;28233:26;;28305:9;28299:4;28295:20;28291:1;28280:9;28276:17;28269:47;28333:131;28459:4;28333:131;:::i;:::-;28325:139;;28052:419;;;:::o;28477:::-;28643:4;28681:2;28670:9;28666:18;28658:26;;28730:9;28724:4;28720:20;28716:1;28705:9;28701:17;28694:47;28758:131;28884:4;28758:131;:::i;:::-;28750:139;;28477:419;;;:::o;28902:::-;29068:4;29106:2;29095:9;29091:18;29083:26;;29155:9;29149:4;29145:20;29141:1;29130:9;29126:17;29119:47;29183:131;29309:4;29183:131;:::i;:::-;29175:139;;28902:419;;;:::o;29327:::-;29493:4;29531:2;29520:9;29516:18;29508:26;;29580:9;29574:4;29570:20;29566:1;29555:9;29551:17;29544:47;29608:131;29734:4;29608:131;:::i;:::-;29600:139;;29327:419;;;:::o;29752:::-;29918:4;29956:2;29945:9;29941:18;29933:26;;30005:9;29999:4;29995:20;29991:1;29980:9;29976:17;29969:47;30033:131;30159:4;30033:131;:::i;:::-;30025:139;;29752:419;;;:::o;30177:::-;30343:4;30381:2;30370:9;30366:18;30358:26;;30430:9;30424:4;30420:20;30416:1;30405:9;30401:17;30394:47;30458:131;30584:4;30458:131;:::i;:::-;30450:139;;30177:419;;;:::o;30602:::-;30768:4;30806:2;30795:9;30791:18;30783:26;;30855:9;30849:4;30845:20;30841:1;30830:9;30826:17;30819:47;30883:131;31009:4;30883:131;:::i;:::-;30875:139;;30602:419;;;:::o;31027:222::-;31120:4;31158:2;31147:9;31143:18;31135:26;;31171:71;31239:1;31228:9;31224:17;31215:6;31171:71;:::i;:::-;31027:222;;;;:::o;31255:129::-;31289:6;31316:20;;:::i;:::-;31306:30;;31345:33;31373:4;31365:6;31345:33;:::i;:::-;31255:129;;;:::o;31390:75::-;31423:6;31456:2;31450:9;31440:19;;31390:75;:::o;31471:307::-;31532:4;31622:18;31614:6;31611:30;31608:56;;;31644:18;;:::i;:::-;31608:56;31682:29;31704:6;31682:29;:::i;:::-;31674:37;;31766:4;31760;31756:15;31748:23;;31471:307;;;:::o;31784:98::-;31835:6;31869:5;31863:12;31853:22;;31784:98;;;:::o;31888:99::-;31940:6;31974:5;31968:12;31958:22;;31888:99;;;:::o;31993:168::-;32076:11;32110:6;32105:3;32098:19;32150:4;32145:3;32141:14;32126:29;;31993:168;;;;:::o;32167:169::-;32251:11;32285:6;32280:3;32273:19;32325:4;32320:3;32316:14;32301:29;;32167:169;;;;:::o;32342:148::-;32444:11;32481:3;32466:18;;32342:148;;;;:::o;32496:273::-;32536:3;32555:20;32573:1;32555:20;:::i;:::-;32550:25;;32589:20;32607:1;32589:20;:::i;:::-;32584:25;;32711:1;32675:34;32671:42;32668:1;32665:49;32662:75;;;32717:18;;:::i;:::-;32662:75;32761:1;32758;32754:9;32747:16;;32496:273;;;;:::o;32775:305::-;32815:3;32834:20;32852:1;32834:20;:::i;:::-;32829:25;;32868:20;32886:1;32868:20;:::i;:::-;32863:25;;33022:1;32954:66;32950:74;32947:1;32944:81;32941:107;;;33028:18;;:::i;:::-;32941:107;33072:1;33069;33065:9;33058:16;;32775:305;;;;:::o;33086:185::-;33126:1;33143:20;33161:1;33143:20;:::i;:::-;33138:25;;33177:20;33195:1;33177:20;:::i;:::-;33172:25;;33216:1;33206:35;;33221:18;;:::i;:::-;33206:35;33263:1;33260;33256:9;33251:14;;33086:185;;;;:::o;33277:348::-;33317:7;33340:20;33358:1;33340:20;:::i;:::-;33335:25;;33374:20;33392:1;33374:20;:::i;:::-;33369:25;;33562:1;33494:66;33490:74;33487:1;33484:81;33479:1;33472:9;33465:17;33461:105;33458:131;;;33569:18;;:::i;:::-;33458:131;33617:1;33614;33610:9;33599:20;;33277:348;;;;:::o;33631:191::-;33671:4;33691:20;33709:1;33691:20;:::i;:::-;33686:25;;33725:20;33743:1;33725:20;:::i;:::-;33720:25;;33764:1;33761;33758:8;33755:34;;;33769:18;;:::i;:::-;33755:34;33814:1;33811;33807:9;33799:17;;33631:191;;;;:::o;33828:::-;33868:4;33888:20;33906:1;33888:20;:::i;:::-;33883:25;;33922:20;33940:1;33922:20;:::i;:::-;33917:25;;33961:1;33958;33955:8;33952:34;;;33966:18;;:::i;:::-;33952:34;34011:1;34008;34004:9;33996:17;;33828:191;;;;:::o;34025:96::-;34062:7;34091:24;34109:5;34091:24;:::i;:::-;34080:35;;34025:96;;;:::o;34127:90::-;34161:7;34204:5;34197:13;34190:21;34179:32;;34127:90;;;:::o;34223:149::-;34259:7;34299:66;34292:5;34288:78;34277:89;;34223:149;;;:::o;34378:118::-;34415:7;34455:34;34448:5;34444:46;34433:57;;34378:118;;;:::o;34502:126::-;34539:7;34579:42;34572:5;34568:54;34557:65;;34502:126;;;:::o;34634:77::-;34671:7;34700:5;34689:16;;34634:77;;;:::o;34717:154::-;34801:6;34796:3;34791;34778:30;34863:1;34854:6;34849:3;34845:16;34838:27;34717:154;;;:::o;34877:307::-;34945:1;34955:113;34969:6;34966:1;34963:13;34955:113;;;35054:1;35049:3;35045:11;35039:18;35035:1;35030:3;35026:11;35019:39;34991:2;34988:1;34984:10;34979:15;;34955:113;;;35086:6;35083:1;35080:13;35077:101;;;35166:1;35157:6;35152:3;35148:16;35141:27;35077:101;34926:258;34877:307;;;:::o;35190:171::-;35229:3;35252:24;35270:5;35252:24;:::i;:::-;35243:33;;35298:4;35291:5;35288:15;35285:41;;;35306:18;;:::i;:::-;35285:41;35353:1;35346:5;35342:13;35335:20;;35190:171;;;:::o;35367:320::-;35411:6;35448:1;35442:4;35438:12;35428:22;;35495:1;35489:4;35485:12;35516:18;35506:81;;35572:4;35564:6;35560:17;35550:27;;35506:81;35634:2;35626:6;35623:14;35603:18;35600:38;35597:84;;;35653:18;;:::i;:::-;35597:84;35418:269;35367:320;;;:::o;35693:281::-;35776:27;35798:4;35776:27;:::i;:::-;35768:6;35764:40;35906:6;35894:10;35891:22;35870:18;35858:10;35855:34;35852:62;35849:88;;;35917:18;;:::i;:::-;35849:88;35957:10;35953:2;35946:22;35736:238;35693:281;;:::o;35980:233::-;36019:3;36042:24;36060:5;36042:24;:::i;:::-;36033:33;;36088:66;36081:5;36078:77;36075:103;;;36158:18;;:::i;:::-;36075:103;36205:1;36198:5;36194:13;36187:20;;35980:233;;;:::o;36219:176::-;36251:1;36268:20;36286:1;36268:20;:::i;:::-;36263:25;;36302:20;36320:1;36302:20;:::i;:::-;36297:25;;36341:1;36331:35;;36346:18;;:::i;:::-;36331:35;36387:1;36384;36380:9;36375:14;;36219:176;;;;:::o;36401:180::-;36449:77;36446:1;36439:88;36546:4;36543:1;36536:15;36570:4;36567:1;36560:15;36587:180;36635:77;36632:1;36625:88;36732:4;36729:1;36722:15;36756:4;36753:1;36746:15;36773:180;36821:77;36818:1;36811:88;36918:4;36915:1;36908:15;36942:4;36939:1;36932:15;36959:180;37007:77;37004:1;36997:88;37104:4;37101:1;37094:15;37128:4;37125:1;37118:15;37145:180;37193:77;37190:1;37183:88;37290:4;37287:1;37280:15;37314:4;37311:1;37304:15;37331:117;37440:1;37437;37430:12;37454:117;37563:1;37560;37553:12;37577:117;37686:1;37683;37676:12;37700:117;37809:1;37806;37799:12;37823:117;37932:1;37929;37922:12;37946:117;38055:1;38052;38045:12;38069:102;38110:6;38161:2;38157:7;38152:2;38145:5;38141:14;38137:28;38127:38;;38069:102;;;:::o;38177:221::-;38317:34;38313:1;38305:6;38301:14;38294:58;38386:4;38381:2;38373:6;38369:15;38362:29;38177:221;:::o;38404:225::-;38544:34;38540:1;38532:6;38528:14;38521:58;38613:8;38608:2;38600:6;38596:15;38589:33;38404:225;:::o;38635:229::-;38775:34;38771:1;38763:6;38759:14;38752:58;38844:12;38839:2;38831:6;38827:15;38820:37;38635:229;:::o;38870:180::-;39010:32;39006:1;38998:6;38994:14;38987:56;38870:180;:::o;39056:222::-;39196:34;39192:1;39184:6;39180:14;39173:58;39265:5;39260:2;39252:6;39248:15;39241:30;39056:222;:::o;39284:224::-;39424:34;39420:1;39412:6;39408:14;39401:58;39493:7;39488:2;39480:6;39476:15;39469:32;39284:224;:::o;39514:173::-;39654:25;39650:1;39642:6;39638:14;39631:49;39514:173;:::o;39693:236::-;39833:34;39829:1;39821:6;39817:14;39810:58;39902:19;39897:2;39889:6;39885:15;39878:44;39693:236;:::o;39935:174::-;40075:26;40071:1;40063:6;40059:14;40052:50;39935:174;:::o;40115:244::-;40255:34;40251:1;40243:6;40239:14;40232:58;40324:27;40319:2;40311:6;40307:15;40300:52;40115:244;:::o;40365:230::-;40505:34;40501:1;40493:6;40489:14;40482:58;40574:13;40569:2;40561:6;40557:15;40550:38;40365:230;:::o;40601:225::-;40741:34;40737:1;40729:6;40725:14;40718:58;40810:8;40805:2;40797:6;40793:15;40786:33;40601:225;:::o;40832:182::-;40972:34;40968:1;40960:6;40956:14;40949:58;40832:182;:::o;41020:234::-;41160:34;41156:1;41148:6;41144:14;41137:58;41229:17;41224:2;41216:6;41212:15;41205:42;41020:234;:::o;41260:176::-;41400:28;41396:1;41388:6;41384:14;41377:52;41260:176;:::o;41442:237::-;41582:34;41578:1;41570:6;41566:14;41559:58;41651:20;41646:2;41638:6;41634:15;41627:45;41442:237;:::o;41685:179::-;41825:31;41821:1;41813:6;41809:14;41802:55;41685:179;:::o;41870:166::-;42010:18;42006:1;41998:6;41994:14;41987:42;41870:166;:::o;42042:221::-;42182:34;42178:1;42170:6;42166:14;42159:58;42251:4;42246:2;42238:6;42234:15;42227:29;42042:221;:::o;42269:238::-;42409:34;42405:1;42397:6;42393:14;42386:58;42478:21;42473:2;42465:6;42461:15;42454:46;42269:238;:::o;42513:179::-;42653:31;42649:1;42641:6;42637:14;42630:55;42513:179;:::o;42698:220::-;42838:34;42834:1;42826:6;42822:14;42815:58;42907:3;42902:2;42894:6;42890:15;42883:28;42698:220;:::o;42924:233::-;43064:34;43060:1;43052:6;43048:14;43041:58;43133:16;43128:2;43120:6;43116:15;43109:41;42924:233;:::o;43163:234::-;43303:34;43299:1;43291:6;43287:14;43280:58;43372:17;43367:2;43359:6;43355:15;43348:42;43163:234;:::o;43403:232::-;43543:34;43539:1;43531:6;43527:14;43520:58;43612:15;43607:2;43599:6;43595:15;43588:40;43403:232;:::o;43641:221::-;43781:34;43777:1;43769:6;43765:14;43758:58;43850:4;43845:2;43837:6;43833:15;43826:29;43641:221;:::o;43868:122::-;43941:24;43959:5;43941:24;:::i;:::-;43934:5;43931:35;43921:63;;43980:1;43977;43970:12;43921:63;43868:122;:::o;43996:116::-;44066:21;44081:5;44066:21;:::i;:::-;44059:5;44056:32;44046:60;;44102:1;44099;44092:12;44046:60;43996:116;:::o;44118:120::-;44190:23;44207:5;44190:23;:::i;:::-;44183:5;44180:34;44170:62;;44228:1;44225;44218:12;44170:62;44118:120;:::o;44244:122::-;44317:24;44335:5;44317:24;:::i;:::-;44310:5;44307:35;44297:63;;44356:1;44353;44346:12;44297:63;44244:122;:::o

Swarm Source

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