ETH Price: $3,258.12 (+4.59%)
Gas: 2 Gwei

Token

REKTWife (REKTWife)
 

Overview

Max Total Supply

3,026 REKTWife

Holders

724

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
cokeceo.eth
Balance
1 REKTWife
0xb807d3c907f3aebd0e9de7c148baa91098d6183d
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:
ERC6969

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
File 1 of 14 : ERC6969.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

contract ERC6969 is ERC721A, Ownable, ReentrancyGuard {

    mapping (address => uint256) public walletPublic;
    mapping (address => uint256) public walletWhitelist;
    string public baseURI;
    bool public mintWhitelistEnabled = false;
    bool public mintPublicEnabled = false;
    bytes32 public merkleRoot;
    uint public freeNFTWhitelist = 1;
    uint public freeNFTPublic = 1;
    uint public maxPerTx = 9;
    uint public maxPerWallet = 9;
    uint public maxSupply = 6969;
    uint public priceWhitelist = 69000000000000000; //0.0069 ETH
    uint public pricePublic = 96000000000000000; //0.0096 ETH

    constructor() ERC721A("REKTWife", "REKTWife",69,6969){}

    function whitelistMint(uint256 qty, bytes32[] calldata _merkleProof) external payable
    {
        require(mintWhitelistEnabled, "RektWife: Minting Whitelist Pause");
        require(walletWhitelist[msg.sender] + qty <= maxPerWallet,"RektWife: Max Per Wallet");
        require(qty <= maxPerTx, "RektWife: Transaction Limit");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "RektWife: Not Whitelisted");
        require(totalSupply() + qty <= maxSupply,"RektWife: Soldout");
        if(walletWhitelist[msg.sender] < freeNFTWhitelist) 
        {
           uint256 claimFree = qty - freeNFTWhitelist;
           require(msg.value >= claimFree * priceWhitelist,"RektWife: Insufficient Funds for Claim Free");
        }
        else
        {
           require(msg.value >= qty * priceWhitelist,"RektWife: Insufficient Funds");
        }
        walletWhitelist[msg.sender] += qty;
        _safeMint(msg.sender, qty);
    }

    function publicMint(uint256 qty) external payable
    {
        require(mintPublicEnabled, "RektWife: Minting Public Pause");
        require(walletPublic[msg.sender] + qty <= maxPerWallet,"RektWife: Max Per Wallet");
        require(qty <= maxPerTx, "RektWife: Transaction Limit");
        require(totalSupply() + qty <= maxSupply,"RektWife: Soldout");
        if(walletPublic[msg.sender] < freeNFTPublic) 
        {
           uint256 claimFree = qty - freeNFTPublic;
           require(msg.value >= claimFree * pricePublic,"RektWife: Insufficient Funds Claim Free");
        }
        else
        {
           require(msg.value >= qty * pricePublic,"RektWife: Insufficient Funds Normal");
        }
        walletPublic[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 setFreeForPublic(uint256 qty) external onlyOwner {
        freeNFTPublic = qty;
    }

    function setFreeForWhitelist(uint256 qty) external onlyOwner {
        freeNFTWhitelist = qty;
    }

    function setMaxPerTx(uint256 maxPerTx_) external onlyOwner {
        maxPerTx = maxPerTx_;
    }

    function setMaxPerWallet(uint256 maxPerWallet_) external onlyOwner {
        maxPerWallet = maxPerWallet_;
    }

    function setmaxSupply(uint256 maxSupply_) external onlyOwner {
        maxSupply = maxSupply_;
    }

    function setMerkleRoot(bytes32 root) public onlyOwner {
        merkleRoot = root;
    }

    function airdrop(address to ,uint256 qty) external onlyOwner
    {
        _safeMint(to, qty);
    }

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

    function togglePublicMinting() external onlyOwner {
        mintPublicEnabled = !mintPublicEnabled;
    }

    function toggleWhitelistMinting() external onlyOwner {
        mintWhitelistEnabled = !mintWhitelistEnabled;
    }

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

    function setWhitelistPrice(uint256 price_) external onlyOwner {
        priceWhitelist = price_;
    }

    function setPublicPrice(uint256 price_) external onlyOwner {
        pricePublic = price_;
    }

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

File 2 of 14 : 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 14 : 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 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _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 14 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 6 of 14 : 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 7 of 14 : 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 8 of 14 : 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 9 of 14 : 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 10 of 14 : 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 11 of 14 : 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 12 of 14 : 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 13 of 14 : 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 14 of 14 : 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":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"DevhMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeNFTPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeNFTWhitelist","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":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPublicEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintWhitelistEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"pricePublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","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":"setFreeForPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"setFreeForWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTx_","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerWallet_","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setWhitelistPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"name":"setmaxSupply","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":[],"name":"togglePublicMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhitelistMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526000805560006007556000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506001600f55600160105560096011556009601255611b3960135566f52322698080006014556701550f7dca7000006015553480156200008157600080fd5b506040518060400160405280600881526020017f52454b54576966650000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f52454b54576966650000000000000000000000000000000000000000000000008152506045611b396000811162000139576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200013090620003e1565b60405180910390fd5b600082116200017f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200017690620003bf565b60405180910390fd5b836001908051906020019062000197929190620002c1565b508260029080519060200190620001b0929190620002c1565b508160a08181525050806080818152505050505050620001e5620001d9620001f360201b60201c565b620001fb60201b60201c565b600160098190555062000517565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002cf9062000414565b90600052602060002090601f016020900481019282620002f357600085556200033f565b82601f106200030e57805160ff19168380011785556200033f565b828001600101855582156200033f579182015b828111156200033e57825182559160200191906001019062000321565b5b5090506200034e919062000352565b5090565b5b808211156200036d57600081600090555060010162000353565b5090565b60006200038060278362000403565b91506200038d8262000479565b604082019050919050565b6000620003a7602e8362000403565b9150620003b482620004c8565b604082019050919050565b60006020820190508181036000830152620003da8162000371565b9050919050565b60006020820190508181036000830152620003fc8162000398565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200042d57607f821691505b602082108114156200044457620004436200044a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a0516159686200054860003960008181612ec201528181612eeb01526136820152600050506159686000f3fe6080604052600436106102c85760003560e01c806370a0823111610175578063bf853690116100dc578063d5abeb0111610095578063e268e4d31161006f578063e268e4d314610aaf578063e985e9c514610ad8578063f2fde38b14610b15578063f968adbe14610b3e576102c8565b8063d5abeb0114610a1c578063d7224ba014610a47578063dc33e68114610a72576102c8565b8063bf8536901461091d578063c627525514610948578063c6f6f21614610971578063c87b56dd1461099a578063d2cab056146109d7578063d4e81b13146109f3576102c8565b80638ba4cc3c1161012e5780638ba4cc3c146108215780638da5cb5b1461084a57806395d89b4114610875578063a22cb465146108a0578063a402c6d2146108c9578063b88d4fde146108f4576102c8565b806370a0823114610727578063715018a614610764578063717d57d31461077b578063739f41d9146107a45780637cb64759146107cf57806383d5d351146107f8576102c8565b80632eb4a7ab116102345780634a81d9dd116101ed5780636352211e116101c75780636352211e1461067d5780636b8a21fc146106ba5780636c0360eb146106d15780636e3fc3f6146106fc576102c8565b80634a81d9dd146105da5780634f6ccce71461061757806355f804b314610654576102c8565b80632eb4a7ab146104dc5780632f745c59146105075780632fff1796146105445780633ccfd60b1461056f57806342842e0e14610586578063453c2310146105af576102c8565b806318160ddd1161028657806318160ddd146103ef578063228025e81461041a57806323b872dd146104435780632be905ba1461046c5780632c1270ee146104a95780632db11544146104c0576102c8565b806224e829146102cd57806301ffc9a7146102f657806306fdde0314610333578063081812fc1461035e578063095ea7b31461039b578063102e766d146103c4575b600080fd5b3480156102d957600080fd5b506102f460048036038101906102ef9190614075565b610b69565b005b34801561030257600080fd5b5061031d60048036038101906103189190613fce565b610bf2565b60405161032a91906146db565b60405180910390f35b34801561033f57600080fd5b50610348610d3c565b6040516103559190614711565b60405180910390f35b34801561036a57600080fd5b5061038560048036038101906103809190614075565b610dce565b6040516103929190614674565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd9190613f61565b610e53565b005b3480156103d057600080fd5b506103d9610f6c565b6040516103e69190614b13565b60405180910390f35b3480156103fb57600080fd5b50610404610f72565b6040516104119190614b13565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c9190614075565b610f7b565b005b34801561044f57600080fd5b5061046a60048036038101906104659190613e4b565b611001565b005b34801561047857600080fd5b50610493600480360381019061048e9190613dde565b611011565b6040516104a09190614b13565b60405180910390f35b3480156104b557600080fd5b506104be611029565b005b6104da60048036038101906104d59190614075565b6110d1565b005b3480156104e857600080fd5b506104f16113b0565b6040516104fe91906146f6565b60405180910390f35b34801561051357600080fd5b5061052e60048036038101906105299190613f61565b6113b6565b60405161053b9190614b13565b60405180910390f35b34801561055057600080fd5b506105596115b4565b6040516105669190614b13565b60405180910390f35b34801561057b57600080fd5b506105846115ba565b005b34801561059257600080fd5b506105ad60048036038101906105a89190613e4b565b611696565b005b3480156105bb57600080fd5b506105c46116b6565b6040516105d19190614b13565b60405180910390f35b3480156105e657600080fd5b5061060160048036038101906105fc9190613dde565b6116bc565b60405161060e9190614b13565b60405180910390f35b34801561062357600080fd5b5061063e60048036038101906106399190614075565b6116d4565b60405161064b9190614b13565b60405180910390f35b34801561066057600080fd5b5061067b60048036038101906106769190614028565b611727565b005b34801561068957600080fd5b506106a4600480360381019061069f9190614075565b6117b9565b6040516106b19190614674565b60405180910390f35b3480156106c657600080fd5b506106cf6117cf565b005b3480156106dd57600080fd5b506106e6611877565b6040516106f39190614711565b60405180910390f35b34801561070857600080fd5b50610711611905565b60405161071e91906146db565b60405180910390f35b34801561073357600080fd5b5061074e60048036038101906107499190613dde565b611918565b60405161075b9190614b13565b60405180910390f35b34801561077057600080fd5b50610779611a01565b005b34801561078757600080fd5b506107a2600480360381019061079d9190614075565b611a89565b005b3480156107b057600080fd5b506107b9611b0f565b6040516107c69190614b13565b60405180910390f35b3480156107db57600080fd5b506107f660048036038101906107f19190613fa1565b611b15565b005b34801561080457600080fd5b5061081f600480360381019061081a9190614075565b611b9b565b005b34801561082d57600080fd5b5061084860048036038101906108439190613f61565b611c21565b005b34801561085657600080fd5b5061085f611cab565b60405161086c9190614674565b60405180910390f35b34801561088157600080fd5b5061088a611cd5565b6040516108979190614711565b60405180910390f35b3480156108ac57600080fd5b506108c760048036038101906108c29190613f21565b611d67565b005b3480156108d557600080fd5b506108de611ee8565b6040516108eb91906146db565b60405180910390f35b34801561090057600080fd5b5061091b60048036038101906109169190613e9e565b611efb565b005b34801561092957600080fd5b50610932611f57565b60405161093f9190614b13565b60405180910390f35b34801561095457600080fd5b5061096f600480360381019061096a9190614075565b611f5d565b005b34801561097d57600080fd5b5061099860048036038101906109939190614075565b611fe3565b005b3480156109a657600080fd5b506109c160048036038101906109bc9190614075565b612069565b6040516109ce9190614711565b60405180910390f35b6109f160048036038101906109ec91906140a2565b612110565b005b3480156109ff57600080fd5b50610a1a6004803603810190610a159190614075565b6124aa565b005b348015610a2857600080fd5b50610a31612530565b604051610a3e9190614b13565b60405180910390f35b348015610a5357600080fd5b50610a5c612536565b604051610a699190614b13565b60405180910390f35b348015610a7e57600080fd5b50610a996004803603810190610a949190613dde565b61253c565b604051610aa69190614b13565b60405180910390f35b348015610abb57600080fd5b50610ad66004803603810190610ad19190614075565b61254e565b005b348015610ae457600080fd5b50610aff6004803603810190610afa9190613e0b565b6125d4565b604051610b0c91906146db565b60405180910390f35b348015610b2157600080fd5b50610b3c6004803603810190610b379190613dde565b612668565b005b348015610b4a57600080fd5b50610b53612760565b604051610b609190614b13565b60405180910390f35b610b71612766565b73ffffffffffffffffffffffffffffffffffffffff16610b8f611cab565b73ffffffffffffffffffffffffffffffffffffffff1614610be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdc90614973565b60405180910390fd5b610bef338261276e565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610cbd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d2557507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d355750610d348261278c565b5b9050919050565b606060018054610d4b90614e5c565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7790614e5c565b8015610dc45780601f10610d9957610100808354040283529160200191610dc4565b820191906000526020600020905b815481529060010190602001808311610da757829003601f168201915b5050505050905090565b6000610dd9826127f6565b610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f90614ad3565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e5e826117b9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec690614a13565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610eee612766565b73ffffffffffffffffffffffffffffffffffffffff161480610f1d5750610f1c81610f17612766565b6125d4565b5b610f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5390614873565b60405180910390fd5b610f67838383612803565b505050565b60155481565b60008054905090565b610f83612766565b73ffffffffffffffffffffffffffffffffffffffff16610fa1611cab565b73ffffffffffffffffffffffffffffffffffffffff1614610ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fee90614973565b60405180910390fd5b8060138190555050565b61100c8383836128b5565b505050565b600a6020528060005260406000206000915090505481565b611031612766565b73ffffffffffffffffffffffffffffffffffffffff1661104f611cab565b73ffffffffffffffffffffffffffffffffffffffff16146110a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109c90614973565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b600d60019054906101000a900460ff16611120576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611117906148b3565b60405180910390fd5b60125481600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461116e9190614c0d565b11156111af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a6906149f3565b60405180910390fd5b6011548111156111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb906147b3565b60405180910390fd5b60135481611200610f72565b61120a9190614c0d565b111561124b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124290614913565b60405180910390fd5b601054600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156112fc576000601054826112a49190614d22565b9050601554816112b49190614c94565b3410156112f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ed90614953565b60405180910390fd5b5061134d565b6015548161130a9190614c94565b34101561134c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134390614753565b60405180910390fd5b5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461139c9190614c0d565b925050819055506113ad338261276e565b50565b600e5481565b60006113c183611918565b8210611402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f990614733565b60405180910390fd5b600061140c610f72565b905060008060005b83811015611572576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461150657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561155e578684141561154f5781955050505050506115ae565b838061155a90614ebf565b9450505b50808061156a90614ebf565b915050611414565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a590614a93565b60405180910390fd5b92915050565b60145481565b6115c2612766565b73ffffffffffffffffffffffffffffffffffffffff166115e0611cab565b73ffffffffffffffffffffffffffffffffffffffff1614611636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162d90614973565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015611693573d6000803e3d6000fd5b50565b6116b183838360405180602001604052806000815250611efb565b505050565b60125481565b600b6020528060005260406000206000915090505481565b60006116de610f72565b821061171f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611716906147d3565b60405180910390fd5b819050919050565b61172f612766565b73ffffffffffffffffffffffffffffffffffffffff1661174d611cab565b73ffffffffffffffffffffffffffffffffffffffff16146117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a90614973565b60405180910390fd5b8181600c91906117b4929190613b67565b505050565b60006117c482612e6e565b600001519050919050565b6117d7612766565b73ffffffffffffffffffffffffffffffffffffffff166117f5611cab565b73ffffffffffffffffffffffffffffffffffffffff161461184b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184290614973565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b600c805461188490614e5c565b80601f01602080910402602001604051908101604052809291908181526020018280546118b090614e5c565b80156118fd5780601f106118d2576101008083540402835291602001916118fd565b820191906000526020600020905b8154815290600101906020018083116118e057829003601f168201915b505050505081565b600d60019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611989576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611980906148f3565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611a09612766565b73ffffffffffffffffffffffffffffffffffffffff16611a27611cab565b73ffffffffffffffffffffffffffffffffffffffff1614611a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7490614973565b60405180910390fd5b611a876000613071565b565b611a91612766565b73ffffffffffffffffffffffffffffffffffffffff16611aaf611cab565b73ffffffffffffffffffffffffffffffffffffffff1614611b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afc90614973565b60405180910390fd5b8060148190555050565b600f5481565b611b1d612766565b73ffffffffffffffffffffffffffffffffffffffff16611b3b611cab565b73ffffffffffffffffffffffffffffffffffffffff1614611b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8890614973565b60405180910390fd5b80600e8190555050565b611ba3612766565b73ffffffffffffffffffffffffffffffffffffffff16611bc1611cab565b73ffffffffffffffffffffffffffffffffffffffff1614611c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0e90614973565b60405180910390fd5b8060108190555050565b611c29612766565b73ffffffffffffffffffffffffffffffffffffffff16611c47611cab565b73ffffffffffffffffffffffffffffffffffffffff1614611c9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9490614973565b60405180910390fd5b611ca7828261276e565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611ce490614e5c565b80601f0160208091040260200160405190810160405280929190818152602001828054611d1090614e5c565b8015611d5d5780601f10611d3257610100808354040283529160200191611d5d565b820191906000526020600020905b815481529060010190602001808311611d4057829003601f168201915b5050505050905090565b611d6f612766565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd4906149b3565b60405180910390fd5b8060066000611dea612766565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e97612766565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611edc91906146db565b60405180910390a35050565b600d60009054906101000a900460ff1681565b611f068484846128b5565b611f1284848484613137565b611f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4890614a33565b60405180910390fd5b50505050565b60105481565b611f65612766565b73ffffffffffffffffffffffffffffffffffffffff16611f83611cab565b73ffffffffffffffffffffffffffffffffffffffff1614611fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd090614973565b60405180910390fd5b8060158190555050565b611feb612766565b73ffffffffffffffffffffffffffffffffffffffff16612009611cab565b73ffffffffffffffffffffffffffffffffffffffff161461205f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205690614973565b60405180910390fd5b8060118190555050565b6060612074826127f6565b6120b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120aa90614993565b60405180910390fd5b60006120bd6132ce565b905060008151116120dd5760405180602001604052806000815250612108565b806120e784613360565b6040516020016120f8929190614650565b6040516020818303038152906040525b915050919050565b600d60009054906101000a900460ff1661215f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612156906148d3565b60405180910390fd5b60125483600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121ad9190614c0d565b11156121ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e5906149f3565b60405180910390fd5b601154831115612233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222a906147b3565b60405180910390fd5b6000336040516020016122469190614635565b6040516020818303038152906040528051906020012090506122ac838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e54836134c1565b6122eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e290614853565b60405180910390fd5b601354846122f7610f72565b6123019190614c0d565b1115612342576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233990614913565b60405180910390fd5b600f54600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156123f3576000600f548561239b9190614d22565b9050601454816123ab9190614c94565b3410156123ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e490614893565b60405180910390fd5b50612444565b601454846124019190614c94565b341015612443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243a90614813565b60405180910390fd5b5b83600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124939190614c0d565b925050819055506124a4338561276e565b50505050565b6124b2612766565b73ffffffffffffffffffffffffffffffffffffffff166124d0611cab565b73ffffffffffffffffffffffffffffffffffffffff1614612526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251d90614973565b60405180910390fd5b80600f8190555050565b60135481565b60075481565b6000612547826134d8565b9050919050565b612556612766565b73ffffffffffffffffffffffffffffffffffffffff16612574611cab565b73ffffffffffffffffffffffffffffffffffffffff16146125ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c190614973565b60405180910390fd5b8060128190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612670612766565b73ffffffffffffffffffffffffffffffffffffffff1661268e611cab565b73ffffffffffffffffffffffffffffffffffffffff16146126e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126db90614973565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274b90614773565b60405180910390fd5b61275d81613071565b50565b60115481565b600033905090565b6127888282604051806020016040528060008152506135c1565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006128c082612e6e565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166128e7612766565b73ffffffffffffffffffffffffffffffffffffffff161480612943575061290c612766565b73ffffffffffffffffffffffffffffffffffffffff1661292b84610dce565b73ffffffffffffffffffffffffffffffffffffffff16145b8061295f575061295e8260000151612959612766565b6125d4565b5b9050806129a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612998906149d3565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0a90614933565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7a906147f3565b60405180910390fd5b612a908585856001613aa0565b612aa06000848460000151612803565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612b0e9190614cee565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612bb29190614bc7565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612cb89190614c0d565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612dfe57612d2e816127f6565b15612dfd576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e668686866001613aa6565b505050505050565b612e76613bed565b612e7f826127f6565b612ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb590614793565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310612f225760017f000000000000000000000000000000000000000000000000000000000000000084612f159190614d22565b612f1f9190614c0d565b90505b60008390505b818110613030576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461301c5780935050505061306c565b50808061302890614e32565b915050612f28565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306390614ab3565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006131588473ffffffffffffffffffffffffffffffffffffffff16613aac565b156132c1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613181612766565b8786866040518563ffffffff1660e01b81526004016131a3949392919061468f565b602060405180830381600087803b1580156131bd57600080fd5b505af19250505080156131ee57506040513d601f19601f820116820180604052508101906131eb9190613ffb565b60015b613271573d806000811461321e576040519150601f19603f3d011682016040523d82523d6000602084013e613223565b606091505b50600081511415613269576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161326090614a33565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506132c6565b600190505b949350505050565b6060600c80546132dd90614e5c565b80601f016020809104026020016040519081016040528092919081815260200182805461330990614e5c565b80156133565780601f1061332b57610100808354040283529160200191613356565b820191906000526020600020905b81548152906001019060200180831161333957829003601f168201915b5050505050905090565b606060008214156133a8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506134bc565b600082905060005b600082146133da5780806133c390614ebf565b915050600a826133d39190614c63565b91506133b0565b60008167ffffffffffffffff8111156133f6576133f5615019565b5b6040519080825280601f01601f1916602001820160405280156134285781602001600182028036833780820191505090505b5090505b600085146134b5576001826134419190614d22565b9150600a856134509190614f2c565b603061345c9190614c0d565b60f81b81838151811061347257613471614fea565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134ae9190614c63565b945061342c565b8093505050505b919050565b6000826134ce8584613acf565b1490509392505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613549576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161354090614833565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161362e90614a73565b60405180910390fd5b613640816127f6565b15613680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161367790614a53565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008311156136e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136da90614af3565b60405180910390fd5b6136f06000858386613aa0565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516137ed9190614bc7565b6fffffffffffffffffffffffffffffffff1681526020018583602001516138149190614bc7565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015613a8357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613a236000888488613137565b613a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a5990614a33565b60405180910390fd5b8180613a6d90614ebf565b9250508080613a7b90614ebf565b9150506139b2565b5080600081905550613a986000878588613aa6565b505050505050565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008082905060005b8451811015613b1a57613b0582868381518110613af857613af7614fea565b5b6020026020010151613b25565b91508080613b1290614ebf565b915050613ad8565b508091505092915050565b6000818310613b3d57613b388284613b50565b613b48565b613b478383613b50565b5b905092915050565b600082600052816020526040600020905092915050565b828054613b7390614e5c565b90600052602060002090601f016020900481019282613b955760008555613bdc565b82601f10613bae57803560ff1916838001178555613bdc565b82800160010185558215613bdc579182015b82811115613bdb578235825591602001919060010190613bc0565b5b509050613be99190613c27565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613c40576000816000905550600101613c28565b5090565b6000613c57613c5284614b53565b614b2e565b905082815260208101848484011115613c7357613c72615057565b5b613c7e848285614df0565b509392505050565b600081359050613c95816158bf565b92915050565b60008083601f840112613cb157613cb061504d565b5b8235905067ffffffffffffffff811115613cce57613ccd615048565b5b602083019150836020820283011115613cea57613ce9615052565b5b9250929050565b600081359050613d00816158d6565b92915050565b600081359050613d15816158ed565b92915050565b600081359050613d2a81615904565b92915050565b600081519050613d3f81615904565b92915050565b600082601f830112613d5a57613d5961504d565b5b8135613d6a848260208601613c44565b91505092915050565b60008083601f840112613d8957613d8861504d565b5b8235905067ffffffffffffffff811115613da657613da5615048565b5b602083019150836001820283011115613dc257613dc1615052565b5b9250929050565b600081359050613dd88161591b565b92915050565b600060208284031215613df457613df3615061565b5b6000613e0284828501613c86565b91505092915050565b60008060408385031215613e2257613e21615061565b5b6000613e3085828601613c86565b9250506020613e4185828601613c86565b9150509250929050565b600080600060608486031215613e6457613e63615061565b5b6000613e7286828701613c86565b9350506020613e8386828701613c86565b9250506040613e9486828701613dc9565b9150509250925092565b60008060008060808587031215613eb857613eb7615061565b5b6000613ec687828801613c86565b9450506020613ed787828801613c86565b9350506040613ee887828801613dc9565b925050606085013567ffffffffffffffff811115613f0957613f0861505c565b5b613f1587828801613d45565b91505092959194509250565b60008060408385031215613f3857613f37615061565b5b6000613f4685828601613c86565b9250506020613f5785828601613cf1565b9150509250929050565b60008060408385031215613f7857613f77615061565b5b6000613f8685828601613c86565b9250506020613f9785828601613dc9565b9150509250929050565b600060208284031215613fb757613fb6615061565b5b6000613fc584828501613d06565b91505092915050565b600060208284031215613fe457613fe3615061565b5b6000613ff284828501613d1b565b91505092915050565b60006020828403121561401157614010615061565b5b600061401f84828501613d30565b91505092915050565b6000806020838503121561403f5761403e615061565b5b600083013567ffffffffffffffff81111561405d5761405c61505c565b5b61406985828601613d73565b92509250509250929050565b60006020828403121561408b5761408a615061565b5b600061409984828501613dc9565b91505092915050565b6000806000604084860312156140bb576140ba615061565b5b60006140c986828701613dc9565b935050602084013567ffffffffffffffff8111156140ea576140e961505c565b5b6140f686828701613c9b565b92509250509250925092565b61410b81614d56565b82525050565b61412261411d82614d56565b614f08565b82525050565b61413181614d68565b82525050565b61414081614d74565b82525050565b600061415182614b84565b61415b8185614b9a565b935061416b818560208601614dff565b61417481615066565b840191505092915050565b600061418a82614b8f565b6141948185614bab565b93506141a4818560208601614dff565b6141ad81615066565b840191505092915050565b60006141c382614b8f565b6141cd8185614bbc565b93506141dd818560208601614dff565b80840191505092915050565b60006141f6602283614bab565b915061420182615084565b604082019050919050565b6000614219602383614bab565b9150614224826150d3565b604082019050919050565b600061423c602683614bab565b915061424782615122565b604082019050919050565b600061425f602a83614bab565b915061426a82615171565b604082019050919050565b6000614282601b83614bab565b915061428d826151c0565b602082019050919050565b60006142a5602383614bab565b91506142b0826151e9565b604082019050919050565b60006142c8602583614bab565b91506142d382615238565b604082019050919050565b60006142eb601c83614bab565b91506142f682615287565b602082019050919050565b600061430e603183614bab565b9150614319826152b0565b604082019050919050565b6000614331601983614bab565b915061433c826152ff565b602082019050919050565b6000614354603983614bab565b915061435f82615328565b604082019050919050565b6000614377602b83614bab565b915061438282615377565b604082019050919050565b600061439a601e83614bab565b91506143a5826153c6565b602082019050919050565b60006143bd602183614bab565b91506143c8826153ef565b604082019050919050565b60006143e0602b83614bab565b91506143eb8261543e565b604082019050919050565b6000614403601183614bab565b915061440e8261548d565b602082019050919050565b6000614426602683614bab565b9150614431826154b6565b604082019050919050565b6000614449602783614bab565b915061445482615505565b604082019050919050565b600061446c602083614bab565b915061447782615554565b602082019050919050565b600061448f602f83614bab565b915061449a8261557d565b604082019050919050565b60006144b2601a83614bab565b91506144bd826155cc565b602082019050919050565b60006144d5603283614bab565b91506144e0826155f5565b604082019050919050565b60006144f8601883614bab565b915061450382615644565b602082019050919050565b600061451b602283614bab565b91506145268261566d565b604082019050919050565b600061453e603383614bab565b9150614549826156bc565b604082019050919050565b6000614561601d83614bab565b915061456c8261570b565b602082019050919050565b6000614584602183614bab565b915061458f82615734565b604082019050919050565b60006145a7602e83614bab565b91506145b282615783565b604082019050919050565b60006145ca602f83614bab565b91506145d5826157d2565b604082019050919050565b60006145ed602d83614bab565b91506145f882615821565b604082019050919050565b6000614610602283614bab565b915061461b82615870565b604082019050919050565b61462f81614de6565b82525050565b60006146418284614111565b60148201915081905092915050565b600061465c82856141b8565b915061466882846141b8565b91508190509392505050565b60006020820190506146896000830184614102565b92915050565b60006080820190506146a46000830187614102565b6146b16020830186614102565b6146be6040830185614626565b81810360608301526146d08184614146565b905095945050505050565b60006020820190506146f06000830184614128565b92915050565b600060208201905061470b6000830184614137565b92915050565b6000602082019050818103600083015261472b818461417f565b905092915050565b6000602082019050818103600083015261474c816141e9565b9050919050565b6000602082019050818103600083015261476c8161420c565b9050919050565b6000602082019050818103600083015261478c8161422f565b9050919050565b600060208201905081810360008301526147ac81614252565b9050919050565b600060208201905081810360008301526147cc81614275565b9050919050565b600060208201905081810360008301526147ec81614298565b9050919050565b6000602082019050818103600083015261480c816142bb565b9050919050565b6000602082019050818103600083015261482c816142de565b9050919050565b6000602082019050818103600083015261484c81614301565b9050919050565b6000602082019050818103600083015261486c81614324565b9050919050565b6000602082019050818103600083015261488c81614347565b9050919050565b600060208201905081810360008301526148ac8161436a565b9050919050565b600060208201905081810360008301526148cc8161438d565b9050919050565b600060208201905081810360008301526148ec816143b0565b9050919050565b6000602082019050818103600083015261490c816143d3565b9050919050565b6000602082019050818103600083015261492c816143f6565b9050919050565b6000602082019050818103600083015261494c81614419565b9050919050565b6000602082019050818103600083015261496c8161443c565b9050919050565b6000602082019050818103600083015261498c8161445f565b9050919050565b600060208201905081810360008301526149ac81614482565b9050919050565b600060208201905081810360008301526149cc816144a5565b9050919050565b600060208201905081810360008301526149ec816144c8565b9050919050565b60006020820190508181036000830152614a0c816144eb565b9050919050565b60006020820190508181036000830152614a2c8161450e565b9050919050565b60006020820190508181036000830152614a4c81614531565b9050919050565b60006020820190508181036000830152614a6c81614554565b9050919050565b60006020820190508181036000830152614a8c81614577565b9050919050565b60006020820190508181036000830152614aac8161459a565b9050919050565b60006020820190508181036000830152614acc816145bd565b9050919050565b60006020820190508181036000830152614aec816145e0565b9050919050565b60006020820190508181036000830152614b0c81614603565b9050919050565b6000602082019050614b286000830184614626565b92915050565b6000614b38614b49565b9050614b448282614e8e565b919050565b6000604051905090565b600067ffffffffffffffff821115614b6e57614b6d615019565b5b614b7782615066565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614bd282614daa565b9150614bdd83614daa565b9250826fffffffffffffffffffffffffffffffff03821115614c0257614c01614f5d565b5b828201905092915050565b6000614c1882614de6565b9150614c2383614de6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c5857614c57614f5d565b5b828201905092915050565b6000614c6e82614de6565b9150614c7983614de6565b925082614c8957614c88614f8c565b5b828204905092915050565b6000614c9f82614de6565b9150614caa83614de6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ce357614ce2614f5d565b5b828202905092915050565b6000614cf982614daa565b9150614d0483614daa565b925082821015614d1757614d16614f5d565b5b828203905092915050565b6000614d2d82614de6565b9150614d3883614de6565b925082821015614d4b57614d4a614f5d565b5b828203905092915050565b6000614d6182614dc6565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614e1d578082015181840152602081019050614e02565b83811115614e2c576000848401525b50505050565b6000614e3d82614de6565b91506000821415614e5157614e50614f5d565b5b600182039050919050565b60006002820490506001821680614e7457607f821691505b60208210811415614e8857614e87614fbb565b5b50919050565b614e9782615066565b810181811067ffffffffffffffff82111715614eb657614eb5615019565b5b80604052505050565b6000614eca82614de6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614efd57614efc614f5d565b5b600182019050919050565b6000614f1382614f1a565b9050919050565b6000614f2582615077565b9050919050565b6000614f3782614de6565b9150614f4283614de6565b925082614f5257614f51614f8c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f52656b74576966653a20496e73756666696369656e742046756e6473204e6f7260008201527f6d616c0000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f52656b74576966653a205472616e73616374696f6e204c696d69740000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f52656b74576966653a20496e73756666696369656e742046756e647300000000600082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f52656b74576966653a204e6f742057686974656c697374656400000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f52656b74576966653a20496e73756666696369656e742046756e647320666f7260008201527f20436c61696d2046726565000000000000000000000000000000000000000000602082015250565b7f52656b74576966653a204d696e74696e67205075626c69632050617573650000600082015250565b7f52656b74576966653a204d696e74696e672057686974656c697374205061757360008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f52656b74576966653a20536f6c646f7574000000000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f52656b74576966653a20496e73756666696369656e742046756e647320436c6160008201527f696d204672656500000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f52656b74576966653a204d6178205065722057616c6c65740000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6158c881614d56565b81146158d357600080fd5b50565b6158df81614d68565b81146158ea57600080fd5b50565b6158f681614d74565b811461590157600080fd5b50565b61590d81614d7e565b811461591857600080fd5b50565b61592481614de6565b811461592f57600080fd5b5056fea264697066735822122027fc7a2d0a759f8db684f102933f1c65df803f434fbb843515ebba5af22cee1364736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102c85760003560e01c806370a0823111610175578063bf853690116100dc578063d5abeb0111610095578063e268e4d31161006f578063e268e4d314610aaf578063e985e9c514610ad8578063f2fde38b14610b15578063f968adbe14610b3e576102c8565b8063d5abeb0114610a1c578063d7224ba014610a47578063dc33e68114610a72576102c8565b8063bf8536901461091d578063c627525514610948578063c6f6f21614610971578063c87b56dd1461099a578063d2cab056146109d7578063d4e81b13146109f3576102c8565b80638ba4cc3c1161012e5780638ba4cc3c146108215780638da5cb5b1461084a57806395d89b4114610875578063a22cb465146108a0578063a402c6d2146108c9578063b88d4fde146108f4576102c8565b806370a0823114610727578063715018a614610764578063717d57d31461077b578063739f41d9146107a45780637cb64759146107cf57806383d5d351146107f8576102c8565b80632eb4a7ab116102345780634a81d9dd116101ed5780636352211e116101c75780636352211e1461067d5780636b8a21fc146106ba5780636c0360eb146106d15780636e3fc3f6146106fc576102c8565b80634a81d9dd146105da5780634f6ccce71461061757806355f804b314610654576102c8565b80632eb4a7ab146104dc5780632f745c59146105075780632fff1796146105445780633ccfd60b1461056f57806342842e0e14610586578063453c2310146105af576102c8565b806318160ddd1161028657806318160ddd146103ef578063228025e81461041a57806323b872dd146104435780632be905ba1461046c5780632c1270ee146104a95780632db11544146104c0576102c8565b806224e829146102cd57806301ffc9a7146102f657806306fdde0314610333578063081812fc1461035e578063095ea7b31461039b578063102e766d146103c4575b600080fd5b3480156102d957600080fd5b506102f460048036038101906102ef9190614075565b610b69565b005b34801561030257600080fd5b5061031d60048036038101906103189190613fce565b610bf2565b60405161032a91906146db565b60405180910390f35b34801561033f57600080fd5b50610348610d3c565b6040516103559190614711565b60405180910390f35b34801561036a57600080fd5b5061038560048036038101906103809190614075565b610dce565b6040516103929190614674565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd9190613f61565b610e53565b005b3480156103d057600080fd5b506103d9610f6c565b6040516103e69190614b13565b60405180910390f35b3480156103fb57600080fd5b50610404610f72565b6040516104119190614b13565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c9190614075565b610f7b565b005b34801561044f57600080fd5b5061046a60048036038101906104659190613e4b565b611001565b005b34801561047857600080fd5b50610493600480360381019061048e9190613dde565b611011565b6040516104a09190614b13565b60405180910390f35b3480156104b557600080fd5b506104be611029565b005b6104da60048036038101906104d59190614075565b6110d1565b005b3480156104e857600080fd5b506104f16113b0565b6040516104fe91906146f6565b60405180910390f35b34801561051357600080fd5b5061052e60048036038101906105299190613f61565b6113b6565b60405161053b9190614b13565b60405180910390f35b34801561055057600080fd5b506105596115b4565b6040516105669190614b13565b60405180910390f35b34801561057b57600080fd5b506105846115ba565b005b34801561059257600080fd5b506105ad60048036038101906105a89190613e4b565b611696565b005b3480156105bb57600080fd5b506105c46116b6565b6040516105d19190614b13565b60405180910390f35b3480156105e657600080fd5b5061060160048036038101906105fc9190613dde565b6116bc565b60405161060e9190614b13565b60405180910390f35b34801561062357600080fd5b5061063e60048036038101906106399190614075565b6116d4565b60405161064b9190614b13565b60405180910390f35b34801561066057600080fd5b5061067b60048036038101906106769190614028565b611727565b005b34801561068957600080fd5b506106a4600480360381019061069f9190614075565b6117b9565b6040516106b19190614674565b60405180910390f35b3480156106c657600080fd5b506106cf6117cf565b005b3480156106dd57600080fd5b506106e6611877565b6040516106f39190614711565b60405180910390f35b34801561070857600080fd5b50610711611905565b60405161071e91906146db565b60405180910390f35b34801561073357600080fd5b5061074e60048036038101906107499190613dde565b611918565b60405161075b9190614b13565b60405180910390f35b34801561077057600080fd5b50610779611a01565b005b34801561078757600080fd5b506107a2600480360381019061079d9190614075565b611a89565b005b3480156107b057600080fd5b506107b9611b0f565b6040516107c69190614b13565b60405180910390f35b3480156107db57600080fd5b506107f660048036038101906107f19190613fa1565b611b15565b005b34801561080457600080fd5b5061081f600480360381019061081a9190614075565b611b9b565b005b34801561082d57600080fd5b5061084860048036038101906108439190613f61565b611c21565b005b34801561085657600080fd5b5061085f611cab565b60405161086c9190614674565b60405180910390f35b34801561088157600080fd5b5061088a611cd5565b6040516108979190614711565b60405180910390f35b3480156108ac57600080fd5b506108c760048036038101906108c29190613f21565b611d67565b005b3480156108d557600080fd5b506108de611ee8565b6040516108eb91906146db565b60405180910390f35b34801561090057600080fd5b5061091b60048036038101906109169190613e9e565b611efb565b005b34801561092957600080fd5b50610932611f57565b60405161093f9190614b13565b60405180910390f35b34801561095457600080fd5b5061096f600480360381019061096a9190614075565b611f5d565b005b34801561097d57600080fd5b5061099860048036038101906109939190614075565b611fe3565b005b3480156109a657600080fd5b506109c160048036038101906109bc9190614075565b612069565b6040516109ce9190614711565b60405180910390f35b6109f160048036038101906109ec91906140a2565b612110565b005b3480156109ff57600080fd5b50610a1a6004803603810190610a159190614075565b6124aa565b005b348015610a2857600080fd5b50610a31612530565b604051610a3e9190614b13565b60405180910390f35b348015610a5357600080fd5b50610a5c612536565b604051610a699190614b13565b60405180910390f35b348015610a7e57600080fd5b50610a996004803603810190610a949190613dde565b61253c565b604051610aa69190614b13565b60405180910390f35b348015610abb57600080fd5b50610ad66004803603810190610ad19190614075565b61254e565b005b348015610ae457600080fd5b50610aff6004803603810190610afa9190613e0b565b6125d4565b604051610b0c91906146db565b60405180910390f35b348015610b2157600080fd5b50610b3c6004803603810190610b379190613dde565b612668565b005b348015610b4a57600080fd5b50610b53612760565b604051610b609190614b13565b60405180910390f35b610b71612766565b73ffffffffffffffffffffffffffffffffffffffff16610b8f611cab565b73ffffffffffffffffffffffffffffffffffffffff1614610be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdc90614973565b60405180910390fd5b610bef338261276e565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610cbd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d2557507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d355750610d348261278c565b5b9050919050565b606060018054610d4b90614e5c565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7790614e5c565b8015610dc45780601f10610d9957610100808354040283529160200191610dc4565b820191906000526020600020905b815481529060010190602001808311610da757829003601f168201915b5050505050905090565b6000610dd9826127f6565b610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f90614ad3565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e5e826117b9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec690614a13565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610eee612766565b73ffffffffffffffffffffffffffffffffffffffff161480610f1d5750610f1c81610f17612766565b6125d4565b5b610f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5390614873565b60405180910390fd5b610f67838383612803565b505050565b60155481565b60008054905090565b610f83612766565b73ffffffffffffffffffffffffffffffffffffffff16610fa1611cab565b73ffffffffffffffffffffffffffffffffffffffff1614610ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fee90614973565b60405180910390fd5b8060138190555050565b61100c8383836128b5565b505050565b600a6020528060005260406000206000915090505481565b611031612766565b73ffffffffffffffffffffffffffffffffffffffff1661104f611cab565b73ffffffffffffffffffffffffffffffffffffffff16146110a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109c90614973565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b600d60019054906101000a900460ff16611120576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611117906148b3565b60405180910390fd5b60125481600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461116e9190614c0d565b11156111af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a6906149f3565b60405180910390fd5b6011548111156111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb906147b3565b60405180910390fd5b60135481611200610f72565b61120a9190614c0d565b111561124b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124290614913565b60405180910390fd5b601054600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156112fc576000601054826112a49190614d22565b9050601554816112b49190614c94565b3410156112f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ed90614953565b60405180910390fd5b5061134d565b6015548161130a9190614c94565b34101561134c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134390614753565b60405180910390fd5b5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461139c9190614c0d565b925050819055506113ad338261276e565b50565b600e5481565b60006113c183611918565b8210611402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f990614733565b60405180910390fd5b600061140c610f72565b905060008060005b83811015611572576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461150657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561155e578684141561154f5781955050505050506115ae565b838061155a90614ebf565b9450505b50808061156a90614ebf565b915050611414565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a590614a93565b60405180910390fd5b92915050565b60145481565b6115c2612766565b73ffffffffffffffffffffffffffffffffffffffff166115e0611cab565b73ffffffffffffffffffffffffffffffffffffffff1614611636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162d90614973565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015611693573d6000803e3d6000fd5b50565b6116b183838360405180602001604052806000815250611efb565b505050565b60125481565b600b6020528060005260406000206000915090505481565b60006116de610f72565b821061171f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611716906147d3565b60405180910390fd5b819050919050565b61172f612766565b73ffffffffffffffffffffffffffffffffffffffff1661174d611cab565b73ffffffffffffffffffffffffffffffffffffffff16146117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a90614973565b60405180910390fd5b8181600c91906117b4929190613b67565b505050565b60006117c482612e6e565b600001519050919050565b6117d7612766565b73ffffffffffffffffffffffffffffffffffffffff166117f5611cab565b73ffffffffffffffffffffffffffffffffffffffff161461184b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184290614973565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b600c805461188490614e5c565b80601f01602080910402602001604051908101604052809291908181526020018280546118b090614e5c565b80156118fd5780601f106118d2576101008083540402835291602001916118fd565b820191906000526020600020905b8154815290600101906020018083116118e057829003601f168201915b505050505081565b600d60019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611989576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611980906148f3565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611a09612766565b73ffffffffffffffffffffffffffffffffffffffff16611a27611cab565b73ffffffffffffffffffffffffffffffffffffffff1614611a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7490614973565b60405180910390fd5b611a876000613071565b565b611a91612766565b73ffffffffffffffffffffffffffffffffffffffff16611aaf611cab565b73ffffffffffffffffffffffffffffffffffffffff1614611b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afc90614973565b60405180910390fd5b8060148190555050565b600f5481565b611b1d612766565b73ffffffffffffffffffffffffffffffffffffffff16611b3b611cab565b73ffffffffffffffffffffffffffffffffffffffff1614611b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8890614973565b60405180910390fd5b80600e8190555050565b611ba3612766565b73ffffffffffffffffffffffffffffffffffffffff16611bc1611cab565b73ffffffffffffffffffffffffffffffffffffffff1614611c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0e90614973565b60405180910390fd5b8060108190555050565b611c29612766565b73ffffffffffffffffffffffffffffffffffffffff16611c47611cab565b73ffffffffffffffffffffffffffffffffffffffff1614611c9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9490614973565b60405180910390fd5b611ca7828261276e565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611ce490614e5c565b80601f0160208091040260200160405190810160405280929190818152602001828054611d1090614e5c565b8015611d5d5780601f10611d3257610100808354040283529160200191611d5d565b820191906000526020600020905b815481529060010190602001808311611d4057829003601f168201915b5050505050905090565b611d6f612766565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd4906149b3565b60405180910390fd5b8060066000611dea612766565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e97612766565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611edc91906146db565b60405180910390a35050565b600d60009054906101000a900460ff1681565b611f068484846128b5565b611f1284848484613137565b611f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4890614a33565b60405180910390fd5b50505050565b60105481565b611f65612766565b73ffffffffffffffffffffffffffffffffffffffff16611f83611cab565b73ffffffffffffffffffffffffffffffffffffffff1614611fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd090614973565b60405180910390fd5b8060158190555050565b611feb612766565b73ffffffffffffffffffffffffffffffffffffffff16612009611cab565b73ffffffffffffffffffffffffffffffffffffffff161461205f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205690614973565b60405180910390fd5b8060118190555050565b6060612074826127f6565b6120b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120aa90614993565b60405180910390fd5b60006120bd6132ce565b905060008151116120dd5760405180602001604052806000815250612108565b806120e784613360565b6040516020016120f8929190614650565b6040516020818303038152906040525b915050919050565b600d60009054906101000a900460ff1661215f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612156906148d3565b60405180910390fd5b60125483600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121ad9190614c0d565b11156121ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e5906149f3565b60405180910390fd5b601154831115612233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222a906147b3565b60405180910390fd5b6000336040516020016122469190614635565b6040516020818303038152906040528051906020012090506122ac838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e54836134c1565b6122eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e290614853565b60405180910390fd5b601354846122f7610f72565b6123019190614c0d565b1115612342576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233990614913565b60405180910390fd5b600f54600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156123f3576000600f548561239b9190614d22565b9050601454816123ab9190614c94565b3410156123ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e490614893565b60405180910390fd5b50612444565b601454846124019190614c94565b341015612443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243a90614813565b60405180910390fd5b5b83600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124939190614c0d565b925050819055506124a4338561276e565b50505050565b6124b2612766565b73ffffffffffffffffffffffffffffffffffffffff166124d0611cab565b73ffffffffffffffffffffffffffffffffffffffff1614612526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251d90614973565b60405180910390fd5b80600f8190555050565b60135481565b60075481565b6000612547826134d8565b9050919050565b612556612766565b73ffffffffffffffffffffffffffffffffffffffff16612574611cab565b73ffffffffffffffffffffffffffffffffffffffff16146125ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c190614973565b60405180910390fd5b8060128190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612670612766565b73ffffffffffffffffffffffffffffffffffffffff1661268e611cab565b73ffffffffffffffffffffffffffffffffffffffff16146126e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126db90614973565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274b90614773565b60405180910390fd5b61275d81613071565b50565b60115481565b600033905090565b6127888282604051806020016040528060008152506135c1565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006128c082612e6e565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166128e7612766565b73ffffffffffffffffffffffffffffffffffffffff161480612943575061290c612766565b73ffffffffffffffffffffffffffffffffffffffff1661292b84610dce565b73ffffffffffffffffffffffffffffffffffffffff16145b8061295f575061295e8260000151612959612766565b6125d4565b5b9050806129a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612998906149d3565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0a90614933565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7a906147f3565b60405180910390fd5b612a908585856001613aa0565b612aa06000848460000151612803565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612b0e9190614cee565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612bb29190614bc7565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612cb89190614c0d565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612dfe57612d2e816127f6565b15612dfd576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e668686866001613aa6565b505050505050565b612e76613bed565b612e7f826127f6565b612ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb590614793565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000458310612f225760017f000000000000000000000000000000000000000000000000000000000000004584612f159190614d22565b612f1f9190614c0d565b90505b60008390505b818110613030576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461301c5780935050505061306c565b50808061302890614e32565b915050612f28565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306390614ab3565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006131588473ffffffffffffffffffffffffffffffffffffffff16613aac565b156132c1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613181612766565b8786866040518563ffffffff1660e01b81526004016131a3949392919061468f565b602060405180830381600087803b1580156131bd57600080fd5b505af19250505080156131ee57506040513d601f19601f820116820180604052508101906131eb9190613ffb565b60015b613271573d806000811461321e576040519150601f19603f3d011682016040523d82523d6000602084013e613223565b606091505b50600081511415613269576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161326090614a33565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506132c6565b600190505b949350505050565b6060600c80546132dd90614e5c565b80601f016020809104026020016040519081016040528092919081815260200182805461330990614e5c565b80156133565780601f1061332b57610100808354040283529160200191613356565b820191906000526020600020905b81548152906001019060200180831161333957829003601f168201915b5050505050905090565b606060008214156133a8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506134bc565b600082905060005b600082146133da5780806133c390614ebf565b915050600a826133d39190614c63565b91506133b0565b60008167ffffffffffffffff8111156133f6576133f5615019565b5b6040519080825280601f01601f1916602001820160405280156134285781602001600182028036833780820191505090505b5090505b600085146134b5576001826134419190614d22565b9150600a856134509190614f2c565b603061345c9190614c0d565b60f81b81838151811061347257613471614fea565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134ae9190614c63565b945061342c565b8093505050505b919050565b6000826134ce8584613acf565b1490509392505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613549576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161354090614833565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161362e90614a73565b60405180910390fd5b613640816127f6565b15613680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161367790614a53565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000458311156136e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136da90614af3565b60405180910390fd5b6136f06000858386613aa0565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516137ed9190614bc7565b6fffffffffffffffffffffffffffffffff1681526020018583602001516138149190614bc7565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015613a8357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613a236000888488613137565b613a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a5990614a33565b60405180910390fd5b8180613a6d90614ebf565b9250508080613a7b90614ebf565b9150506139b2565b5080600081905550613a986000878588613aa6565b505050505050565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008082905060005b8451811015613b1a57613b0582868381518110613af857613af7614fea565b5b6020026020010151613b25565b91508080613b1290614ebf565b915050613ad8565b508091505092915050565b6000818310613b3d57613b388284613b50565b613b48565b613b478383613b50565b5b905092915050565b600082600052816020526040600020905092915050565b828054613b7390614e5c565b90600052602060002090601f016020900481019282613b955760008555613bdc565b82601f10613bae57803560ff1916838001178555613bdc565b82800160010185558215613bdc579182015b82811115613bdb578235825591602001919060010190613bc0565b5b509050613be99190613c27565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613c40576000816000905550600101613c28565b5090565b6000613c57613c5284614b53565b614b2e565b905082815260208101848484011115613c7357613c72615057565b5b613c7e848285614df0565b509392505050565b600081359050613c95816158bf565b92915050565b60008083601f840112613cb157613cb061504d565b5b8235905067ffffffffffffffff811115613cce57613ccd615048565b5b602083019150836020820283011115613cea57613ce9615052565b5b9250929050565b600081359050613d00816158d6565b92915050565b600081359050613d15816158ed565b92915050565b600081359050613d2a81615904565b92915050565b600081519050613d3f81615904565b92915050565b600082601f830112613d5a57613d5961504d565b5b8135613d6a848260208601613c44565b91505092915050565b60008083601f840112613d8957613d8861504d565b5b8235905067ffffffffffffffff811115613da657613da5615048565b5b602083019150836001820283011115613dc257613dc1615052565b5b9250929050565b600081359050613dd88161591b565b92915050565b600060208284031215613df457613df3615061565b5b6000613e0284828501613c86565b91505092915050565b60008060408385031215613e2257613e21615061565b5b6000613e3085828601613c86565b9250506020613e4185828601613c86565b9150509250929050565b600080600060608486031215613e6457613e63615061565b5b6000613e7286828701613c86565b9350506020613e8386828701613c86565b9250506040613e9486828701613dc9565b9150509250925092565b60008060008060808587031215613eb857613eb7615061565b5b6000613ec687828801613c86565b9450506020613ed787828801613c86565b9350506040613ee887828801613dc9565b925050606085013567ffffffffffffffff811115613f0957613f0861505c565b5b613f1587828801613d45565b91505092959194509250565b60008060408385031215613f3857613f37615061565b5b6000613f4685828601613c86565b9250506020613f5785828601613cf1565b9150509250929050565b60008060408385031215613f7857613f77615061565b5b6000613f8685828601613c86565b9250506020613f9785828601613dc9565b9150509250929050565b600060208284031215613fb757613fb6615061565b5b6000613fc584828501613d06565b91505092915050565b600060208284031215613fe457613fe3615061565b5b6000613ff284828501613d1b565b91505092915050565b60006020828403121561401157614010615061565b5b600061401f84828501613d30565b91505092915050565b6000806020838503121561403f5761403e615061565b5b600083013567ffffffffffffffff81111561405d5761405c61505c565b5b61406985828601613d73565b92509250509250929050565b60006020828403121561408b5761408a615061565b5b600061409984828501613dc9565b91505092915050565b6000806000604084860312156140bb576140ba615061565b5b60006140c986828701613dc9565b935050602084013567ffffffffffffffff8111156140ea576140e961505c565b5b6140f686828701613c9b565b92509250509250925092565b61410b81614d56565b82525050565b61412261411d82614d56565b614f08565b82525050565b61413181614d68565b82525050565b61414081614d74565b82525050565b600061415182614b84565b61415b8185614b9a565b935061416b818560208601614dff565b61417481615066565b840191505092915050565b600061418a82614b8f565b6141948185614bab565b93506141a4818560208601614dff565b6141ad81615066565b840191505092915050565b60006141c382614b8f565b6141cd8185614bbc565b93506141dd818560208601614dff565b80840191505092915050565b60006141f6602283614bab565b915061420182615084565b604082019050919050565b6000614219602383614bab565b9150614224826150d3565b604082019050919050565b600061423c602683614bab565b915061424782615122565b604082019050919050565b600061425f602a83614bab565b915061426a82615171565b604082019050919050565b6000614282601b83614bab565b915061428d826151c0565b602082019050919050565b60006142a5602383614bab565b91506142b0826151e9565b604082019050919050565b60006142c8602583614bab565b91506142d382615238565b604082019050919050565b60006142eb601c83614bab565b91506142f682615287565b602082019050919050565b600061430e603183614bab565b9150614319826152b0565b604082019050919050565b6000614331601983614bab565b915061433c826152ff565b602082019050919050565b6000614354603983614bab565b915061435f82615328565b604082019050919050565b6000614377602b83614bab565b915061438282615377565b604082019050919050565b600061439a601e83614bab565b91506143a5826153c6565b602082019050919050565b60006143bd602183614bab565b91506143c8826153ef565b604082019050919050565b60006143e0602b83614bab565b91506143eb8261543e565b604082019050919050565b6000614403601183614bab565b915061440e8261548d565b602082019050919050565b6000614426602683614bab565b9150614431826154b6565b604082019050919050565b6000614449602783614bab565b915061445482615505565b604082019050919050565b600061446c602083614bab565b915061447782615554565b602082019050919050565b600061448f602f83614bab565b915061449a8261557d565b604082019050919050565b60006144b2601a83614bab565b91506144bd826155cc565b602082019050919050565b60006144d5603283614bab565b91506144e0826155f5565b604082019050919050565b60006144f8601883614bab565b915061450382615644565b602082019050919050565b600061451b602283614bab565b91506145268261566d565b604082019050919050565b600061453e603383614bab565b9150614549826156bc565b604082019050919050565b6000614561601d83614bab565b915061456c8261570b565b602082019050919050565b6000614584602183614bab565b915061458f82615734565b604082019050919050565b60006145a7602e83614bab565b91506145b282615783565b604082019050919050565b60006145ca602f83614bab565b91506145d5826157d2565b604082019050919050565b60006145ed602d83614bab565b91506145f882615821565b604082019050919050565b6000614610602283614bab565b915061461b82615870565b604082019050919050565b61462f81614de6565b82525050565b60006146418284614111565b60148201915081905092915050565b600061465c82856141b8565b915061466882846141b8565b91508190509392505050565b60006020820190506146896000830184614102565b92915050565b60006080820190506146a46000830187614102565b6146b16020830186614102565b6146be6040830185614626565b81810360608301526146d08184614146565b905095945050505050565b60006020820190506146f06000830184614128565b92915050565b600060208201905061470b6000830184614137565b92915050565b6000602082019050818103600083015261472b818461417f565b905092915050565b6000602082019050818103600083015261474c816141e9565b9050919050565b6000602082019050818103600083015261476c8161420c565b9050919050565b6000602082019050818103600083015261478c8161422f565b9050919050565b600060208201905081810360008301526147ac81614252565b9050919050565b600060208201905081810360008301526147cc81614275565b9050919050565b600060208201905081810360008301526147ec81614298565b9050919050565b6000602082019050818103600083015261480c816142bb565b9050919050565b6000602082019050818103600083015261482c816142de565b9050919050565b6000602082019050818103600083015261484c81614301565b9050919050565b6000602082019050818103600083015261486c81614324565b9050919050565b6000602082019050818103600083015261488c81614347565b9050919050565b600060208201905081810360008301526148ac8161436a565b9050919050565b600060208201905081810360008301526148cc8161438d565b9050919050565b600060208201905081810360008301526148ec816143b0565b9050919050565b6000602082019050818103600083015261490c816143d3565b9050919050565b6000602082019050818103600083015261492c816143f6565b9050919050565b6000602082019050818103600083015261494c81614419565b9050919050565b6000602082019050818103600083015261496c8161443c565b9050919050565b6000602082019050818103600083015261498c8161445f565b9050919050565b600060208201905081810360008301526149ac81614482565b9050919050565b600060208201905081810360008301526149cc816144a5565b9050919050565b600060208201905081810360008301526149ec816144c8565b9050919050565b60006020820190508181036000830152614a0c816144eb565b9050919050565b60006020820190508181036000830152614a2c8161450e565b9050919050565b60006020820190508181036000830152614a4c81614531565b9050919050565b60006020820190508181036000830152614a6c81614554565b9050919050565b60006020820190508181036000830152614a8c81614577565b9050919050565b60006020820190508181036000830152614aac8161459a565b9050919050565b60006020820190508181036000830152614acc816145bd565b9050919050565b60006020820190508181036000830152614aec816145e0565b9050919050565b60006020820190508181036000830152614b0c81614603565b9050919050565b6000602082019050614b286000830184614626565b92915050565b6000614b38614b49565b9050614b448282614e8e565b919050565b6000604051905090565b600067ffffffffffffffff821115614b6e57614b6d615019565b5b614b7782615066565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614bd282614daa565b9150614bdd83614daa565b9250826fffffffffffffffffffffffffffffffff03821115614c0257614c01614f5d565b5b828201905092915050565b6000614c1882614de6565b9150614c2383614de6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c5857614c57614f5d565b5b828201905092915050565b6000614c6e82614de6565b9150614c7983614de6565b925082614c8957614c88614f8c565b5b828204905092915050565b6000614c9f82614de6565b9150614caa83614de6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ce357614ce2614f5d565b5b828202905092915050565b6000614cf982614daa565b9150614d0483614daa565b925082821015614d1757614d16614f5d565b5b828203905092915050565b6000614d2d82614de6565b9150614d3883614de6565b925082821015614d4b57614d4a614f5d565b5b828203905092915050565b6000614d6182614dc6565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614e1d578082015181840152602081019050614e02565b83811115614e2c576000848401525b50505050565b6000614e3d82614de6565b91506000821415614e5157614e50614f5d565b5b600182039050919050565b60006002820490506001821680614e7457607f821691505b60208210811415614e8857614e87614fbb565b5b50919050565b614e9782615066565b810181811067ffffffffffffffff82111715614eb657614eb5615019565b5b80604052505050565b6000614eca82614de6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614efd57614efc614f5d565b5b600182019050919050565b6000614f1382614f1a565b9050919050565b6000614f2582615077565b9050919050565b6000614f3782614de6565b9150614f4283614de6565b925082614f5257614f51614f8c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f52656b74576966653a20496e73756666696369656e742046756e6473204e6f7260008201527f6d616c0000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f52656b74576966653a205472616e73616374696f6e204c696d69740000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f52656b74576966653a20496e73756666696369656e742046756e647300000000600082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f52656b74576966653a204e6f742057686974656c697374656400000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f52656b74576966653a20496e73756666696369656e742046756e647320666f7260008201527f20436c61696d2046726565000000000000000000000000000000000000000000602082015250565b7f52656b74576966653a204d696e74696e67205075626c69632050617573650000600082015250565b7f52656b74576966653a204d696e74696e672057686974656c697374205061757360008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f52656b74576966653a20536f6c646f7574000000000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f52656b74576966653a20496e73756666696369656e742046756e647320436c6160008201527f696d204672656500000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f52656b74576966653a204d6178205065722057616c6c65740000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6158c881614d56565b81146158d357600080fd5b50565b6158df81614d68565b81146158ea57600080fd5b50565b6158f681614d74565b811461590157600080fd5b50565b61590d81614d7e565b811461591857600080fd5b50565b61592481614de6565b811461592f57600080fd5b5056fea264697066735822122027fc7a2d0a759f8db684f102933f1c65df803f434fbb843515ebba5af22cee1364736f6c63430008070033

Deployed Bytecode Sourcemap

275:4337:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3818:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4251:370:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5977:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7502:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7065:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;844:43:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2812:94:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3499:102:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8352:142:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;338:48:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4041:116;;;;;;;;;;;;;:::i;:::-;;2006:802;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;570:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3443:744:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;778:46:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4493:116;;;;;;;;;;;;;:::i;:::-;;8557:157:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;708:28:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;393:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2975:177:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4165:102:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5800:118:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3926:107:12;;;;;;;;;;;;;:::i;:::-;;451:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;526:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4677:211:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1668:101:0;;;;;;;;;;;;;:::i;:::-;;4275:104:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;602:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3609:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3057:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3707:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1036:85:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6132:98:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7770:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;479:40:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8777:311:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;641:29:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4387:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3271;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6293:394:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;972:1026:12;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3161:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;743:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13192:43:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2820:113:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3377:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8107:186:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1918:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;677:24:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3818:100;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3884:26:12::1;3894:10;3906:3;3884:9;:26::i;:::-;3818:100:::0;:::o;4251:370:13:-;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;844:43:12:-;;;;:::o;2812:94:13:-;2865:7;2888:12;;2881:19;;2812:94;:::o;3499:102:12:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3583:10:12::1;3571:9;:22;;;;3499:102:::0;:::o;8352:142:13:-;8460:28;8470:4;8476:2;8480:7;8460:9;:28::i;:::-;8352:142;;;:::o;338:48:12:-;;;;;;;;;;;;;;;;;:::o;4041:116::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4129:20:12::1;;;;;;;;;;;4128:21;4105:20;;:44;;;;;;;;;;;;;;;;;;4041:116::o:0;2006:802::-;2080:17;;;;;;;;;;;2072:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;2185:12;;2178:3;2151:12;:24;2164:10;2151:24;;;;;;;;;;;;;;;;:30;;;;:::i;:::-;:46;;2143:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;2251:8;;2244:3;:15;;2236:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;2333:9;;2326:3;2310:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;2302:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;2404:13;;2377:12;:24;2390:10;2377:24;;;;;;;;;;;;;;;;:40;2374:348;;;2443:17;2469:13;;2463:3;:19;;;;:::i;:::-;2443:39;;2529:11;;2517:9;:23;;;;:::i;:::-;2504:9;:36;;2496:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;2429:166;2374:348;;;2660:11;;2654:3;:17;;;;:::i;:::-;2641:9;:30;;2633:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;2374:348;2760:3;2732:12;:24;2745:10;2732:24;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;2774:26;2784:10;2796:3;2774:9;:26::i;:::-;2006:802;:::o;570:25::-;;;;:::o;3443:744:13:-;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;778:46:12:-;;;;:::o;4493:116::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4549:10:12::1;4541:28;;:60;4586:4;4570:30;;;4541:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;4493:116::o:0;8557:157:13:-;8669:39;8686:4;8692:2;8696:7;8669:39;;;;;;;;;;;;:16;:39::i;:::-;8557:157;;;:::o;708:28:12:-;;;;:::o;393:51::-;;;;;;;;;;;;;;;;;:::o;2975:177:13:-;3042:7;3074:13;:11;:13::i;:::-;3066:5;:21;3058:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;3141:5;3134:12;;2975:177;;;:::o;4165:102:12:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4251:8:12::1;;4241:7;:18;;;;;;;:::i;:::-;;4165:102:::0;;:::o;5800:118:13:-;5864:7;5887:20;5899:7;5887:11;:20::i;:::-;:25;;;5880:32;;5800:118;;;:::o;3926:107:12:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4008:17:12::1;;;;;;;;;;;4007:18;3987:17;;:38;;;;;;;;;;;;;;;;;;3926:107::o:0;451:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;526:37::-;;;;;;;;;;;;;:::o;4677:211:13:-;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;1668:101:0:-;1259:12;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;4275:104:12:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4365:6:12::1;4348:14;:23;;;;4275:104:::0;:::o;602:32::-;;;;:::o;3609:90::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3687:4:12::1;3674:10;:17;;;;3609:90:::0;:::o;3057:96::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3142:3:12::1;3126:13;:19;;;;3057:96:::0;:::o;3707:103::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3784:18:12::1;3794:2;3798:3;3784:9;:18::i;:::-;3707:103:::0;;:::o;1036:85:0:-;1082:7;1108:6;;;;;;;;;;;1101:13;;1036:85;:::o;6132:98:13:-;6188:13;6217:7;6210:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6132:98;:::o;7770:274::-;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;479:40:12:-;;;;;;;;;;;;;:::o;8777:311:13:-;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;641:29:12:-;;;;:::o;4387:98::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4471:6:12::1;4457:11;:20;;;;4387:98:::0;:::o;3271:::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3352:9:12::1;3341:8;:20;;;;3271:98:::0;:::o;6293:394:13:-;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;972:1026:12:-;1082:20;;;;;;;;;;;1074:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;1196:12;;1189:3;1159:15;:27;1175:10;1159:27;;;;;;;;;;;;;;;;:33;;;;:::i;:::-;:49;;1151:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;1262:8;;1255:3;:15;;1247:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;1313:12;1355:10;1338:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;1328:39;;;;;;1313:54;;1386:50;1405:12;;1386:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1419:10;;1431:4;1386:18;:50::i;:::-;1378:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;1508:9;;1501:3;1485:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;1477:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;1582:16;;1552:15;:27;1568:10;1552:27;;;;;;;;;;;;;;;;:46;1549:360;;;1624:17;1650:16;;1644:3;:22;;;;:::i;:::-;1624:42;;1713:14;;1701:9;:26;;;;:::i;:::-;1688:9;:39;;1680:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;1610:176;1549:360;;;1851:14;;1845:3;:20;;;;:::i;:::-;1832:9;:33;;1824:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;1549:360;1950:3;1919:15;:27;1935:10;1919:27;;;;;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;1964:26;1974:10;1986:3;1964:9;:26::i;:::-;1063:935;972:1026;;;:::o;3161:102::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3252:3:12::1;3233:16;:22;;;;3161:102:::0;:::o;743:28::-;;;;:::o;13192:43:13:-;;;;:::o;2820:113:12:-;2878:7;2905:20;2919:5;2905:13;:20::i;:::-;2898:27;;2820:113;;;:::o;3377:114::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3470:13:12::1;3455:12;:28;;;;3377:114:::0;:::o;8107:186:13:-;8229:4;8252:18;:25;8271:5;8252:25;;;;;;;;;;;;;;;:35;8278:8;8252:35;;;;;;;;;;;;;;;;;;;;;;;;;8245:42;;8107:186;;;;:::o;1918:198:0:-;1259:12;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2026:1:::1;2006:22;;:8;:22;;;;1998:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:28;2100:8;2081:18;:28::i;:::-;1918:198:::0;:::o;677:24:12:-;;;;:::o;640:96:7:-;693:7;719:10;712:17;;640:96;:::o;9438:98:13:-;9503:27;9513:2;9517:8;9503:27;;;;;;;;;;;;:9;:27::i;:::-;9438:98;;:::o;829:155:10:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;9327:105:13:-;9384:4;9414:12;;9404:7;:22;9397:29;;9327:105;;;:::o;13014:172::-;13138:2;13111:15;:24;13127:7;13111:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;13172:7;13168:2;13152:28;;13161:5;13152:28;;;;;;;;;;;;13014:172;;;:::o;11379:1529::-;11476:35;11514:20;11526:7;11514:11;:20::i;:::-;11476:58;;11543:22;11585:13;:18;;;11569:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;11638:12;:10;:12::i;:::-;11614:36;;:20;11626:7;11614:11;:20::i;:::-;:36;;;11569:81;:142;;;;11661:50;11678:13;:18;;;11698:12;:10;:12::i;:::-;11661:16;:50::i;:::-;11569:142;11543:169;;11737:17;11721:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;11869:4;11847:26;;:13;:18;;;:26;;;11831:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;11958:1;11944:16;;:2;:16;;;;11936:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;12011:43;12033:4;12039:2;12043:7;12052:1;12011:21;:43::i;:::-;12111:49;12128:1;12132:7;12141:13;:18;;;12111:8;:49::i;:::-;12199:1;12169:12;:18;12182:4;12169:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;12235:1;12207:12;:16;12220:2;12207:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;12266:43;;;;;;;;12281:2;12266:43;;;;;;12292:15;12266:43;;;;;12243:11;:20;12255:7;12243:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12537:19;12569:1;12559:7;:11;;;;:::i;:::-;12537:33;;12622:1;12581:43;;:11;:24;12593:11;12581:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;12577:236;;;12639:20;12647:11;12639:7;:20::i;:::-;12635:171;;;12699:97;;;;;;;;12726:13;:18;;;12699:97;;;;;;12757:13;:28;;;12699:97;;;;;12672:11;:24;12684:11;12672:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12635:171;12577:236;12845:7;12841:2;12826:27;;12835:4;12826:27;;;;;;;;;;;;12860:42;12881:4;12887:2;12891:7;12900:1;12860:20;:42::i;:::-;11469:1439;;;11379:1529;;;:::o;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;2270:187:0:-;2343:16;2362:6;;;;;;;;;;;2343:25;;2387:8;2378:6;;:17;;;;;;;;;;;;;;;;;;2441:8;2410:40;;2431:8;2410:40;;;;;;;;;;;;2333:124;2270:187;:::o;14729:690:13:-;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;2941:108:12:-;3001:13;3034:7;3027:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2941: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;1153:184:9:-;1274:4;1326;1297:25;1310:5;1317:4;1297:12;:25::i;:::-;:33;1290:40;;1153:184;;;;;:::o;4894:240:13:-;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;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;15881:141::-;;;;;:::o;16408:140::-;;;;;:::o;1175:320:6:-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;1991:290:9:-;2074:7;2093:20;2116:4;2093:27;;2135:9;2130:116;2154:5;:12;2150:1;:16;2130:116;;;2202:33;2212:12;2226:5;2232:1;2226:8;;;;;;;;:::i;:::-;;;;;;;;2202:9;:33::i;:::-;2187:48;;2168:3;;;;;:::i;:::-;;;;2130:116;;;;2262:12;2255:19;;;1991:290;;;;:::o;8054:147::-;8117:7;8147:1;8143;:5;:51;;8174:20;8189:1;8192;8174:14;:20::i;:::-;8143:51;;;8151:20;8166:1;8169;8151:14;:20::i;:::-;8143:51;8136:58;;8054:147;;;;:::o;8207:261::-;8275:13;8379:1;8373:4;8366:15;8407:1;8401:4;8394:15;8447:4;8441;8431:21;8422:30;;8207:261;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:14:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;585:568::-;658:8;668:6;718:3;711:4;703:6;699:17;695:27;685:122;;726:79;;:::i;:::-;685:122;839:6;826:20;816:30;;869:18;861:6;858:30;855:117;;;891:79;;:::i;:::-;855:117;1005:4;997:6;993:17;981:29;;1059:3;1051:4;1043:6;1039:17;1029:8;1025:32;1022:41;1019:128;;;1066:79;;:::i;:::-;1019:128;585:568;;;;;:::o;1159:133::-;1202:5;1240:6;1227:20;1218:29;;1256:30;1280:5;1256:30;:::i;:::-;1159:133;;;;:::o;1298:139::-;1344:5;1382:6;1369:20;1360:29;;1398:33;1425:5;1398:33;:::i;:::-;1298:139;;;;:::o;1443:137::-;1488:5;1526:6;1513:20;1504:29;;1542:32;1568:5;1542:32;:::i;:::-;1443:137;;;;:::o;1586:141::-;1642:5;1673:6;1667:13;1658:22;;1689:32;1715:5;1689:32;:::i;:::-;1586:141;;;;:::o;1746:338::-;1801:5;1850:3;1843:4;1835:6;1831:17;1827:27;1817:122;;1858:79;;:::i;:::-;1817:122;1975:6;1962:20;2000:78;2074:3;2066:6;2059:4;2051:6;2047:17;2000:78;:::i;:::-;1991:87;;1807:277;1746:338;;;;:::o;2104:553::-;2162:8;2172:6;2222:3;2215:4;2207:6;2203:17;2199:27;2189:122;;2230:79;;:::i;:::-;2189:122;2343:6;2330:20;2320:30;;2373:18;2365:6;2362:30;2359:117;;;2395:79;;:::i;:::-;2359:117;2509:4;2501:6;2497:17;2485:29;;2563:3;2555:4;2547:6;2543:17;2533:8;2529:32;2526:41;2523:128;;;2570:79;;:::i;:::-;2523:128;2104:553;;;;;:::o;2663:139::-;2709:5;2747:6;2734:20;2725:29;;2763:33;2790:5;2763:33;:::i;:::-;2663:139;;;;:::o;2808:329::-;2867:6;2916:2;2904:9;2895:7;2891:23;2887:32;2884:119;;;2922:79;;:::i;:::-;2884:119;3042:1;3067:53;3112:7;3103:6;3092:9;3088:22;3067:53;:::i;:::-;3057:63;;3013:117;2808:329;;;;:::o;3143:474::-;3211:6;3219;3268:2;3256:9;3247:7;3243:23;3239:32;3236:119;;;3274:79;;:::i;:::-;3236:119;3394:1;3419:53;3464:7;3455:6;3444:9;3440:22;3419:53;:::i;:::-;3409:63;;3365:117;3521:2;3547:53;3592:7;3583:6;3572:9;3568:22;3547:53;:::i;:::-;3537:63;;3492:118;3143:474;;;;;:::o;3623:619::-;3700:6;3708;3716;3765:2;3753:9;3744:7;3740:23;3736:32;3733:119;;;3771:79;;:::i;:::-;3733:119;3891:1;3916:53;3961:7;3952:6;3941:9;3937:22;3916:53;:::i;:::-;3906:63;;3862:117;4018:2;4044:53;4089:7;4080:6;4069:9;4065:22;4044:53;:::i;:::-;4034:63;;3989:118;4146:2;4172:53;4217:7;4208:6;4197:9;4193:22;4172:53;:::i;:::-;4162:63;;4117:118;3623:619;;;;;:::o;4248:943::-;4343:6;4351;4359;4367;4416:3;4404:9;4395:7;4391:23;4387:33;4384:120;;;4423:79;;:::i;:::-;4384:120;4543:1;4568:53;4613:7;4604:6;4593:9;4589:22;4568:53;:::i;:::-;4558:63;;4514:117;4670:2;4696:53;4741:7;4732:6;4721:9;4717:22;4696:53;:::i;:::-;4686:63;;4641:118;4798:2;4824:53;4869:7;4860:6;4849:9;4845:22;4824:53;:::i;:::-;4814:63;;4769:118;4954:2;4943:9;4939:18;4926:32;4985:18;4977:6;4974:30;4971:117;;;5007:79;;:::i;:::-;4971:117;5112:62;5166:7;5157:6;5146:9;5142:22;5112:62;:::i;:::-;5102:72;;4897:287;4248:943;;;;;;;:::o;5197:468::-;5262:6;5270;5319:2;5307:9;5298:7;5294:23;5290:32;5287:119;;;5325:79;;:::i;:::-;5287:119;5445:1;5470:53;5515:7;5506:6;5495:9;5491:22;5470:53;:::i;:::-;5460:63;;5416:117;5572:2;5598:50;5640:7;5631:6;5620:9;5616:22;5598:50;:::i;:::-;5588:60;;5543:115;5197:468;;;;;:::o;5671:474::-;5739:6;5747;5796:2;5784:9;5775:7;5771:23;5767:32;5764:119;;;5802:79;;:::i;:::-;5764:119;5922:1;5947:53;5992:7;5983:6;5972:9;5968:22;5947:53;:::i;:::-;5937:63;;5893:117;6049:2;6075:53;6120:7;6111:6;6100:9;6096:22;6075:53;:::i;:::-;6065:63;;6020:118;5671:474;;;;;:::o;6151:329::-;6210:6;6259:2;6247:9;6238:7;6234:23;6230:32;6227:119;;;6265:79;;:::i;:::-;6227:119;6385:1;6410:53;6455:7;6446:6;6435:9;6431:22;6410:53;:::i;:::-;6400:63;;6356:117;6151:329;;;;:::o;6486:327::-;6544:6;6593:2;6581:9;6572:7;6568:23;6564:32;6561:119;;;6599:79;;:::i;:::-;6561:119;6719:1;6744:52;6788:7;6779:6;6768:9;6764:22;6744:52;:::i;:::-;6734:62;;6690:116;6486:327;;;;:::o;6819:349::-;6888:6;6937:2;6925:9;6916:7;6912:23;6908:32;6905:119;;;6943:79;;:::i;:::-;6905:119;7063:1;7088:63;7143:7;7134:6;7123:9;7119:22;7088:63;:::i;:::-;7078:73;;7034:127;6819:349;;;;:::o;7174:529::-;7245:6;7253;7302:2;7290:9;7281:7;7277:23;7273:32;7270:119;;;7308:79;;:::i;:::-;7270:119;7456:1;7445:9;7441:17;7428:31;7486:18;7478:6;7475:30;7472:117;;;7508:79;;:::i;:::-;7472:117;7621:65;7678:7;7669:6;7658:9;7654:22;7621:65;:::i;:::-;7603:83;;;;7399:297;7174:529;;;;;:::o;7709:329::-;7768:6;7817:2;7805:9;7796:7;7792:23;7788:32;7785:119;;;7823:79;;:::i;:::-;7785:119;7943:1;7968:53;8013:7;8004:6;7993:9;7989:22;7968:53;:::i;:::-;7958:63;;7914:117;7709:329;;;;:::o;8044:704::-;8139:6;8147;8155;8204:2;8192:9;8183:7;8179:23;8175:32;8172:119;;;8210:79;;:::i;:::-;8172:119;8330:1;8355:53;8400:7;8391:6;8380:9;8376:22;8355:53;:::i;:::-;8345:63;;8301:117;8485:2;8474:9;8470:18;8457:32;8516:18;8508:6;8505:30;8502:117;;;8538:79;;:::i;:::-;8502:117;8651:80;8723:7;8714:6;8703:9;8699:22;8651:80;:::i;:::-;8633:98;;;;8428:313;8044:704;;;;;:::o;8754:118::-;8841:24;8859:5;8841:24;:::i;:::-;8836:3;8829:37;8754:118;;:::o;8878:157::-;8983:45;9003:24;9021:5;9003:24;:::i;:::-;8983:45;:::i;:::-;8978:3;8971:58;8878:157;;:::o;9041:109::-;9122:21;9137:5;9122:21;:::i;:::-;9117:3;9110:34;9041:109;;:::o;9156:118::-;9243:24;9261:5;9243:24;:::i;:::-;9238:3;9231:37;9156:118;;:::o;9280:360::-;9366:3;9394:38;9426:5;9394:38;:::i;:::-;9448:70;9511:6;9506:3;9448:70;:::i;:::-;9441:77;;9527:52;9572:6;9567:3;9560:4;9553:5;9549:16;9527:52;:::i;:::-;9604:29;9626:6;9604:29;:::i;:::-;9599:3;9595:39;9588:46;;9370:270;9280:360;;;;:::o;9646:364::-;9734:3;9762:39;9795:5;9762:39;:::i;:::-;9817:71;9881:6;9876:3;9817:71;:::i;:::-;9810:78;;9897:52;9942:6;9937:3;9930:4;9923:5;9919:16;9897:52;:::i;:::-;9974:29;9996:6;9974:29;:::i;:::-;9969:3;9965:39;9958:46;;9738:272;9646:364;;;;:::o;10016:377::-;10122:3;10150:39;10183:5;10150:39;:::i;:::-;10205:89;10287:6;10282:3;10205:89;:::i;:::-;10198:96;;10303:52;10348:6;10343:3;10336:4;10329:5;10325:16;10303:52;:::i;:::-;10380:6;10375:3;10371:16;10364:23;;10126:267;10016:377;;;;:::o;10399:366::-;10541:3;10562:67;10626:2;10621:3;10562:67;:::i;:::-;10555:74;;10638:93;10727:3;10638:93;:::i;:::-;10756:2;10751:3;10747:12;10740:19;;10399:366;;;:::o;10771:::-;10913:3;10934:67;10998:2;10993:3;10934:67;:::i;:::-;10927:74;;11010:93;11099:3;11010:93;:::i;:::-;11128:2;11123:3;11119:12;11112:19;;10771:366;;;:::o;11143:::-;11285:3;11306:67;11370:2;11365:3;11306:67;:::i;:::-;11299:74;;11382:93;11471:3;11382:93;:::i;:::-;11500:2;11495:3;11491:12;11484:19;;11143:366;;;:::o;11515:::-;11657:3;11678:67;11742:2;11737:3;11678:67;:::i;:::-;11671:74;;11754:93;11843:3;11754:93;:::i;:::-;11872:2;11867:3;11863:12;11856:19;;11515:366;;;:::o;11887:::-;12029:3;12050:67;12114:2;12109:3;12050:67;:::i;:::-;12043:74;;12126:93;12215:3;12126:93;:::i;:::-;12244:2;12239:3;12235:12;12228:19;;11887:366;;;:::o;12259:::-;12401:3;12422:67;12486:2;12481:3;12422:67;:::i;:::-;12415:74;;12498:93;12587:3;12498:93;:::i;:::-;12616:2;12611:3;12607:12;12600:19;;12259:366;;;:::o;12631:::-;12773:3;12794:67;12858:2;12853:3;12794:67;:::i;:::-;12787:74;;12870:93;12959:3;12870:93;:::i;:::-;12988:2;12983:3;12979:12;12972:19;;12631:366;;;:::o;13003:::-;13145:3;13166:67;13230:2;13225:3;13166:67;:::i;:::-;13159:74;;13242:93;13331:3;13242:93;:::i;:::-;13360:2;13355:3;13351:12;13344:19;;13003:366;;;:::o;13375:::-;13517:3;13538:67;13602:2;13597:3;13538:67;:::i;:::-;13531:74;;13614:93;13703:3;13614:93;:::i;:::-;13732:2;13727:3;13723:12;13716:19;;13375:366;;;:::o;13747:::-;13889:3;13910:67;13974:2;13969:3;13910:67;:::i;:::-;13903:74;;13986:93;14075:3;13986:93;:::i;:::-;14104:2;14099:3;14095:12;14088:19;;13747:366;;;:::o;14119:::-;14261:3;14282:67;14346:2;14341:3;14282:67;:::i;:::-;14275:74;;14358:93;14447:3;14358:93;:::i;:::-;14476:2;14471:3;14467:12;14460:19;;14119:366;;;:::o;14491:::-;14633:3;14654:67;14718:2;14713:3;14654:67;:::i;:::-;14647:74;;14730:93;14819:3;14730:93;:::i;:::-;14848:2;14843:3;14839:12;14832:19;;14491:366;;;:::o;14863:::-;15005:3;15026:67;15090:2;15085:3;15026:67;:::i;:::-;15019:74;;15102:93;15191:3;15102:93;:::i;:::-;15220:2;15215:3;15211:12;15204:19;;14863:366;;;:::o;15235:::-;15377:3;15398:67;15462:2;15457:3;15398:67;:::i;:::-;15391:74;;15474:93;15563:3;15474:93;:::i;:::-;15592:2;15587:3;15583:12;15576:19;;15235:366;;;:::o;15607:::-;15749:3;15770:67;15834:2;15829:3;15770:67;:::i;:::-;15763:74;;15846:93;15935:3;15846:93;:::i;:::-;15964:2;15959:3;15955:12;15948:19;;15607:366;;;:::o;15979:::-;16121:3;16142:67;16206:2;16201:3;16142:67;:::i;:::-;16135:74;;16218:93;16307:3;16218:93;:::i;:::-;16336:2;16331:3;16327:12;16320:19;;15979:366;;;:::o;16351:::-;16493:3;16514:67;16578:2;16573:3;16514:67;:::i;:::-;16507:74;;16590:93;16679:3;16590:93;:::i;:::-;16708:2;16703:3;16699:12;16692:19;;16351:366;;;:::o;16723:::-;16865:3;16886:67;16950:2;16945:3;16886:67;:::i;:::-;16879:74;;16962:93;17051:3;16962:93;:::i;:::-;17080:2;17075:3;17071:12;17064:19;;16723:366;;;:::o;17095:::-;17237:3;17258:67;17322:2;17317:3;17258:67;:::i;:::-;17251:74;;17334:93;17423:3;17334:93;:::i;:::-;17452:2;17447:3;17443:12;17436:19;;17095:366;;;:::o;17467:::-;17609:3;17630:67;17694:2;17689:3;17630:67;:::i;:::-;17623:74;;17706:93;17795:3;17706:93;:::i;:::-;17824:2;17819:3;17815:12;17808:19;;17467:366;;;:::o;17839:::-;17981:3;18002:67;18066:2;18061:3;18002:67;:::i;:::-;17995:74;;18078:93;18167:3;18078:93;:::i;:::-;18196:2;18191:3;18187:12;18180:19;;17839:366;;;:::o;18211:::-;18353:3;18374:67;18438:2;18433:3;18374:67;:::i;:::-;18367:74;;18450:93;18539:3;18450:93;:::i;:::-;18568:2;18563:3;18559:12;18552:19;;18211:366;;;:::o;18583:::-;18725:3;18746:67;18810:2;18805:3;18746:67;:::i;:::-;18739:74;;18822:93;18911:3;18822:93;:::i;:::-;18940:2;18935:3;18931:12;18924:19;;18583:366;;;:::o;18955:::-;19097:3;19118:67;19182:2;19177:3;19118:67;:::i;:::-;19111:74;;19194:93;19283:3;19194:93;:::i;:::-;19312:2;19307:3;19303:12;19296:19;;18955:366;;;:::o;19327:::-;19469:3;19490:67;19554:2;19549:3;19490:67;:::i;:::-;19483:74;;19566:93;19655:3;19566:93;:::i;:::-;19684:2;19679:3;19675:12;19668:19;;19327:366;;;:::o;19699:::-;19841:3;19862:67;19926:2;19921:3;19862:67;:::i;:::-;19855:74;;19938:93;20027:3;19938:93;:::i;:::-;20056:2;20051:3;20047:12;20040:19;;19699:366;;;:::o;20071:::-;20213:3;20234:67;20298:2;20293:3;20234:67;:::i;:::-;20227:74;;20310:93;20399:3;20310:93;:::i;:::-;20428:2;20423:3;20419:12;20412:19;;20071:366;;;:::o;20443:::-;20585:3;20606:67;20670:2;20665:3;20606:67;:::i;:::-;20599:74;;20682:93;20771:3;20682:93;:::i;:::-;20800:2;20795:3;20791:12;20784:19;;20443:366;;;:::o;20815:::-;20957:3;20978:67;21042:2;21037:3;20978:67;:::i;:::-;20971:74;;21054:93;21143:3;21054:93;:::i;:::-;21172:2;21167:3;21163:12;21156:19;;20815:366;;;:::o;21187:::-;21329:3;21350:67;21414:2;21409:3;21350:67;:::i;:::-;21343:74;;21426:93;21515:3;21426:93;:::i;:::-;21544:2;21539:3;21535:12;21528:19;;21187:366;;;:::o;21559:::-;21701:3;21722:67;21786:2;21781:3;21722:67;:::i;:::-;21715:74;;21798:93;21887:3;21798:93;:::i;:::-;21916:2;21911:3;21907:12;21900:19;;21559:366;;;:::o;21931:118::-;22018:24;22036:5;22018:24;:::i;:::-;22013:3;22006:37;21931:118;;:::o;22055:256::-;22167:3;22182:75;22253:3;22244:6;22182:75;:::i;:::-;22282:2;22277:3;22273:12;22266:19;;22302:3;22295:10;;22055:256;;;;:::o;22317:435::-;22497:3;22519:95;22610:3;22601:6;22519:95;:::i;:::-;22512:102;;22631:95;22722:3;22713:6;22631:95;:::i;:::-;22624:102;;22743:3;22736:10;;22317:435;;;;;:::o;22758:222::-;22851:4;22889:2;22878:9;22874:18;22866:26;;22902:71;22970:1;22959:9;22955:17;22946:6;22902:71;:::i;:::-;22758:222;;;;:::o;22986:640::-;23181:4;23219:3;23208:9;23204:19;23196:27;;23233:71;23301:1;23290:9;23286:17;23277:6;23233:71;:::i;:::-;23314:72;23382:2;23371:9;23367:18;23358:6;23314:72;:::i;:::-;23396;23464:2;23453:9;23449:18;23440:6;23396:72;:::i;:::-;23515:9;23509:4;23505:20;23500:2;23489:9;23485:18;23478:48;23543:76;23614:4;23605:6;23543:76;:::i;:::-;23535:84;;22986:640;;;;;;;:::o;23632:210::-;23719:4;23757:2;23746:9;23742:18;23734:26;;23770:65;23832:1;23821:9;23817:17;23808:6;23770:65;:::i;:::-;23632:210;;;;:::o;23848:222::-;23941:4;23979:2;23968:9;23964:18;23956:26;;23992:71;24060:1;24049:9;24045:17;24036:6;23992:71;:::i;:::-;23848:222;;;;:::o;24076:313::-;24189:4;24227:2;24216:9;24212:18;24204:26;;24276:9;24270:4;24266:20;24262:1;24251:9;24247:17;24240:47;24304:78;24377:4;24368:6;24304:78;:::i;:::-;24296:86;;24076:313;;;;:::o;24395:419::-;24561:4;24599:2;24588:9;24584:18;24576:26;;24648:9;24642:4;24638:20;24634:1;24623:9;24619:17;24612:47;24676:131;24802:4;24676:131;:::i;:::-;24668:139;;24395:419;;;:::o;24820:::-;24986:4;25024:2;25013:9;25009:18;25001:26;;25073:9;25067:4;25063:20;25059:1;25048:9;25044:17;25037:47;25101:131;25227:4;25101:131;:::i;:::-;25093:139;;24820:419;;;:::o;25245:::-;25411:4;25449:2;25438:9;25434:18;25426:26;;25498:9;25492:4;25488:20;25484:1;25473:9;25469:17;25462:47;25526:131;25652:4;25526:131;:::i;:::-;25518:139;;25245:419;;;:::o;25670:::-;25836:4;25874:2;25863:9;25859:18;25851:26;;25923:9;25917:4;25913:20;25909:1;25898:9;25894:17;25887:47;25951:131;26077:4;25951:131;:::i;:::-;25943:139;;25670:419;;;:::o;26095:::-;26261:4;26299:2;26288:9;26284:18;26276:26;;26348:9;26342:4;26338:20;26334:1;26323:9;26319:17;26312:47;26376:131;26502:4;26376:131;:::i;:::-;26368:139;;26095:419;;;:::o;26520:::-;26686:4;26724:2;26713:9;26709:18;26701:26;;26773:9;26767:4;26763:20;26759:1;26748:9;26744:17;26737:47;26801:131;26927:4;26801:131;:::i;:::-;26793:139;;26520:419;;;:::o;26945:::-;27111:4;27149:2;27138:9;27134:18;27126:26;;27198:9;27192:4;27188:20;27184:1;27173:9;27169:17;27162:47;27226:131;27352:4;27226:131;:::i;:::-;27218:139;;26945:419;;;:::o;27370:::-;27536:4;27574:2;27563:9;27559:18;27551:26;;27623:9;27617:4;27613:20;27609:1;27598:9;27594:17;27587:47;27651:131;27777:4;27651:131;:::i;:::-;27643:139;;27370:419;;;:::o;27795:::-;27961:4;27999:2;27988:9;27984:18;27976:26;;28048:9;28042:4;28038:20;28034:1;28023:9;28019:17;28012:47;28076:131;28202:4;28076:131;:::i;:::-;28068:139;;27795:419;;;:::o;28220:::-;28386:4;28424:2;28413:9;28409:18;28401:26;;28473:9;28467:4;28463:20;28459:1;28448:9;28444:17;28437:47;28501:131;28627:4;28501:131;:::i;:::-;28493:139;;28220:419;;;:::o;28645:::-;28811:4;28849:2;28838:9;28834:18;28826:26;;28898:9;28892:4;28888:20;28884:1;28873:9;28869:17;28862:47;28926:131;29052:4;28926:131;:::i;:::-;28918:139;;28645:419;;;:::o;29070:::-;29236:4;29274:2;29263:9;29259:18;29251:26;;29323:9;29317:4;29313:20;29309:1;29298:9;29294:17;29287:47;29351:131;29477:4;29351:131;:::i;:::-;29343:139;;29070:419;;;:::o;29495:::-;29661:4;29699:2;29688:9;29684:18;29676:26;;29748:9;29742:4;29738:20;29734:1;29723:9;29719:17;29712:47;29776:131;29902:4;29776:131;:::i;:::-;29768:139;;29495:419;;;:::o;29920:::-;30086:4;30124:2;30113:9;30109:18;30101:26;;30173:9;30167:4;30163:20;30159:1;30148:9;30144:17;30137:47;30201:131;30327:4;30201:131;:::i;:::-;30193:139;;29920:419;;;:::o;30345:::-;30511:4;30549:2;30538:9;30534:18;30526:26;;30598:9;30592:4;30588:20;30584:1;30573:9;30569:17;30562:47;30626:131;30752:4;30626:131;:::i;:::-;30618:139;;30345:419;;;:::o;30770:::-;30936:4;30974:2;30963:9;30959:18;30951:26;;31023:9;31017:4;31013:20;31009:1;30998:9;30994:17;30987:47;31051:131;31177:4;31051:131;:::i;:::-;31043:139;;30770:419;;;:::o;31195:::-;31361:4;31399:2;31388:9;31384:18;31376:26;;31448:9;31442:4;31438:20;31434:1;31423:9;31419:17;31412:47;31476:131;31602:4;31476:131;:::i;:::-;31468:139;;31195:419;;;:::o;31620:::-;31786:4;31824:2;31813:9;31809:18;31801:26;;31873:9;31867:4;31863:20;31859:1;31848:9;31844:17;31837:47;31901:131;32027:4;31901:131;:::i;:::-;31893:139;;31620:419;;;:::o;32045:::-;32211:4;32249:2;32238:9;32234:18;32226:26;;32298:9;32292:4;32288:20;32284:1;32273:9;32269:17;32262:47;32326:131;32452:4;32326:131;:::i;:::-;32318:139;;32045:419;;;:::o;32470:::-;32636:4;32674:2;32663:9;32659:18;32651:26;;32723:9;32717:4;32713:20;32709:1;32698:9;32694:17;32687:47;32751:131;32877:4;32751:131;:::i;:::-;32743:139;;32470:419;;;:::o;32895:::-;33061:4;33099:2;33088:9;33084:18;33076:26;;33148:9;33142:4;33138:20;33134:1;33123:9;33119:17;33112:47;33176:131;33302:4;33176:131;:::i;:::-;33168:139;;32895:419;;;:::o;33320:::-;33486:4;33524:2;33513:9;33509:18;33501:26;;33573:9;33567:4;33563:20;33559:1;33548:9;33544:17;33537:47;33601:131;33727:4;33601:131;:::i;:::-;33593:139;;33320:419;;;:::o;33745:::-;33911:4;33949:2;33938:9;33934:18;33926:26;;33998:9;33992:4;33988:20;33984:1;33973:9;33969:17;33962:47;34026:131;34152:4;34026:131;:::i;:::-;34018:139;;33745:419;;;:::o;34170:::-;34336:4;34374:2;34363:9;34359:18;34351:26;;34423:9;34417:4;34413:20;34409:1;34398:9;34394:17;34387:47;34451:131;34577:4;34451:131;:::i;:::-;34443:139;;34170:419;;;:::o;34595:::-;34761:4;34799:2;34788:9;34784:18;34776:26;;34848:9;34842:4;34838:20;34834:1;34823:9;34819:17;34812:47;34876:131;35002:4;34876:131;:::i;:::-;34868:139;;34595:419;;;:::o;35020:::-;35186:4;35224:2;35213:9;35209:18;35201:26;;35273:9;35267:4;35263:20;35259:1;35248:9;35244:17;35237:47;35301:131;35427:4;35301:131;:::i;:::-;35293:139;;35020:419;;;:::o;35445:::-;35611:4;35649:2;35638:9;35634:18;35626:26;;35698:9;35692:4;35688:20;35684:1;35673:9;35669:17;35662:47;35726:131;35852:4;35726:131;:::i;:::-;35718:139;;35445:419;;;:::o;35870:::-;36036:4;36074:2;36063:9;36059:18;36051:26;;36123:9;36117:4;36113:20;36109:1;36098:9;36094:17;36087:47;36151:131;36277:4;36151:131;:::i;:::-;36143:139;;35870:419;;;:::o;36295:::-;36461:4;36499:2;36488:9;36484:18;36476:26;;36548:9;36542:4;36538:20;36534:1;36523:9;36519:17;36512:47;36576:131;36702:4;36576:131;:::i;:::-;36568:139;;36295:419;;;:::o;36720:::-;36886:4;36924:2;36913:9;36909:18;36901:26;;36973:9;36967:4;36963:20;36959:1;36948:9;36944:17;36937:47;37001:131;37127:4;37001:131;:::i;:::-;36993:139;;36720:419;;;:::o;37145:::-;37311:4;37349:2;37338:9;37334:18;37326:26;;37398:9;37392:4;37388:20;37384:1;37373:9;37369:17;37362:47;37426:131;37552:4;37426:131;:::i;:::-;37418:139;;37145:419;;;:::o;37570:222::-;37663:4;37701:2;37690:9;37686:18;37678:26;;37714:71;37782:1;37771:9;37767:17;37758:6;37714:71;:::i;:::-;37570:222;;;;:::o;37798:129::-;37832:6;37859:20;;:::i;:::-;37849:30;;37888:33;37916:4;37908:6;37888:33;:::i;:::-;37798:129;;;:::o;37933:75::-;37966:6;37999:2;37993:9;37983:19;;37933:75;:::o;38014:307::-;38075:4;38165:18;38157:6;38154:30;38151:56;;;38187:18;;:::i;:::-;38151:56;38225:29;38247:6;38225:29;:::i;:::-;38217:37;;38309:4;38303;38299:15;38291:23;;38014:307;;;:::o;38327:98::-;38378:6;38412:5;38406:12;38396:22;;38327:98;;;:::o;38431:99::-;38483:6;38517:5;38511:12;38501:22;;38431:99;;;:::o;38536:168::-;38619:11;38653:6;38648:3;38641:19;38693:4;38688:3;38684:14;38669:29;;38536:168;;;;:::o;38710:169::-;38794:11;38828:6;38823:3;38816:19;38868:4;38863:3;38859:14;38844:29;;38710:169;;;;:::o;38885:148::-;38987:11;39024:3;39009:18;;38885:148;;;;:::o;39039:273::-;39079:3;39098:20;39116:1;39098:20;:::i;:::-;39093:25;;39132:20;39150:1;39132:20;:::i;:::-;39127:25;;39254:1;39218:34;39214:42;39211:1;39208:49;39205:75;;;39260:18;;:::i;:::-;39205:75;39304:1;39301;39297:9;39290:16;;39039:273;;;;:::o;39318:305::-;39358:3;39377:20;39395:1;39377:20;:::i;:::-;39372:25;;39411:20;39429:1;39411:20;:::i;:::-;39406:25;;39565:1;39497:66;39493:74;39490:1;39487:81;39484:107;;;39571:18;;:::i;:::-;39484:107;39615:1;39612;39608:9;39601:16;;39318:305;;;;:::o;39629:185::-;39669:1;39686:20;39704:1;39686:20;:::i;:::-;39681:25;;39720:20;39738:1;39720:20;:::i;:::-;39715:25;;39759:1;39749:35;;39764:18;;:::i;:::-;39749:35;39806:1;39803;39799:9;39794:14;;39629:185;;;;:::o;39820:348::-;39860:7;39883:20;39901:1;39883:20;:::i;:::-;39878:25;;39917:20;39935:1;39917:20;:::i;:::-;39912:25;;40105:1;40037:66;40033:74;40030:1;40027:81;40022:1;40015:9;40008:17;40004:105;40001:131;;;40112:18;;:::i;:::-;40001:131;40160:1;40157;40153:9;40142:20;;39820:348;;;;:::o;40174:191::-;40214:4;40234:20;40252:1;40234:20;:::i;:::-;40229:25;;40268:20;40286:1;40268:20;:::i;:::-;40263:25;;40307:1;40304;40301:8;40298:34;;;40312:18;;:::i;:::-;40298:34;40357:1;40354;40350:9;40342:17;;40174:191;;;;:::o;40371:::-;40411:4;40431:20;40449:1;40431:20;:::i;:::-;40426:25;;40465:20;40483:1;40465:20;:::i;:::-;40460:25;;40504:1;40501;40498:8;40495:34;;;40509:18;;:::i;:::-;40495:34;40554:1;40551;40547:9;40539:17;;40371:191;;;;:::o;40568:96::-;40605:7;40634:24;40652:5;40634:24;:::i;:::-;40623:35;;40568:96;;;:::o;40670:90::-;40704:7;40747:5;40740:13;40733:21;40722:32;;40670:90;;;:::o;40766:77::-;40803:7;40832:5;40821:16;;40766:77;;;:::o;40849:149::-;40885:7;40925:66;40918:5;40914:78;40903:89;;40849:149;;;:::o;41004:118::-;41041:7;41081:34;41074:5;41070:46;41059:57;;41004:118;;;:::o;41128:126::-;41165:7;41205:42;41198:5;41194:54;41183:65;;41128:126;;;:::o;41260:77::-;41297:7;41326:5;41315:16;;41260:77;;;:::o;41343:154::-;41427:6;41422:3;41417;41404:30;41489:1;41480:6;41475:3;41471:16;41464:27;41343:154;;;:::o;41503:307::-;41571:1;41581:113;41595:6;41592:1;41589:13;41581:113;;;41680:1;41675:3;41671:11;41665:18;41661:1;41656:3;41652:11;41645:39;41617:2;41614:1;41610:10;41605:15;;41581:113;;;41712:6;41709:1;41706:13;41703:101;;;41792:1;41783:6;41778:3;41774:16;41767:27;41703:101;41552:258;41503:307;;;:::o;41816:171::-;41855:3;41878:24;41896:5;41878:24;:::i;:::-;41869:33;;41924:4;41917:5;41914:15;41911:41;;;41932:18;;:::i;:::-;41911:41;41979:1;41972:5;41968:13;41961:20;;41816:171;;;:::o;41993:320::-;42037:6;42074:1;42068:4;42064:12;42054:22;;42121:1;42115:4;42111:12;42142:18;42132:81;;42198:4;42190:6;42186:17;42176:27;;42132:81;42260:2;42252:6;42249:14;42229:18;42226:38;42223:84;;;42279:18;;:::i;:::-;42223:84;42044:269;41993:320;;;:::o;42319:281::-;42402:27;42424:4;42402:27;:::i;:::-;42394:6;42390:40;42532:6;42520:10;42517:22;42496:18;42484:10;42481:34;42478:62;42475:88;;;42543:18;;:::i;:::-;42475:88;42583:10;42579:2;42572:22;42362:238;42319:281;;:::o;42606:233::-;42645:3;42668:24;42686:5;42668:24;:::i;:::-;42659:33;;42714:66;42707:5;42704:77;42701:103;;;42784:18;;:::i;:::-;42701:103;42831:1;42824:5;42820:13;42813:20;;42606:233;;;:::o;42845:100::-;42884:7;42913:26;42933:5;42913:26;:::i;:::-;42902:37;;42845:100;;;:::o;42951:94::-;42990:7;43019:20;43033:5;43019:20;:::i;:::-;43008:31;;42951:94;;;:::o;43051:176::-;43083:1;43100:20;43118:1;43100:20;:::i;:::-;43095:25;;43134:20;43152:1;43134:20;:::i;:::-;43129:25;;43173:1;43163:35;;43178:18;;:::i;:::-;43163:35;43219:1;43216;43212:9;43207:14;;43051:176;;;;:::o;43233:180::-;43281:77;43278:1;43271:88;43378:4;43375:1;43368:15;43402:4;43399:1;43392:15;43419:180;43467:77;43464:1;43457:88;43564:4;43561:1;43554:15;43588:4;43585:1;43578:15;43605:180;43653:77;43650:1;43643:88;43750:4;43747:1;43740:15;43774:4;43771:1;43764:15;43791:180;43839:77;43836:1;43829:88;43936:4;43933:1;43926:15;43960:4;43957:1;43950:15;43977:180;44025:77;44022:1;44015:88;44122:4;44119:1;44112:15;44146:4;44143:1;44136:15;44163:117;44272:1;44269;44262:12;44286:117;44395:1;44392;44385:12;44409:117;44518:1;44515;44508:12;44532:117;44641:1;44638;44631:12;44655:117;44764:1;44761;44754:12;44778:117;44887:1;44884;44877:12;44901:102;44942:6;44993:2;44989:7;44984:2;44977:5;44973:14;44969:28;44959:38;;44901:102;;;:::o;45009:94::-;45042:8;45090:5;45086:2;45082:14;45061:35;;45009:94;;;:::o;45109:221::-;45249:34;45245:1;45237:6;45233:14;45226:58;45318:4;45313:2;45305:6;45301:15;45294:29;45109:221;:::o;45336:222::-;45476:34;45472:1;45464:6;45460:14;45453:58;45545:5;45540:2;45532:6;45528:15;45521:30;45336:222;:::o;45564:225::-;45704:34;45700:1;45692:6;45688:14;45681:58;45773:8;45768:2;45760:6;45756:15;45749:33;45564:225;:::o;45795:229::-;45935:34;45931:1;45923:6;45919:14;45912:58;46004:12;45999:2;45991:6;45987:15;45980:37;45795:229;:::o;46030:177::-;46170:29;46166:1;46158:6;46154:14;46147:53;46030:177;:::o;46213:222::-;46353:34;46349:1;46341:6;46337:14;46330:58;46422:5;46417:2;46409:6;46405:15;46398:30;46213:222;:::o;46441:224::-;46581:34;46577:1;46569:6;46565:14;46558:58;46650:7;46645:2;46637:6;46633:15;46626:32;46441:224;:::o;46671:178::-;46811:30;46807:1;46799:6;46795:14;46788:54;46671:178;:::o;46855:236::-;46995:34;46991:1;46983:6;46979:14;46972:58;47064:19;47059:2;47051:6;47047:15;47040:44;46855:236;:::o;47097:175::-;47237:27;47233:1;47225:6;47221:14;47214:51;47097:175;:::o;47278:244::-;47418:34;47414:1;47406:6;47402:14;47395:58;47487:27;47482:2;47474:6;47470:15;47463:52;47278:244;:::o;47528:230::-;47668:34;47664:1;47656:6;47652:14;47645:58;47737:13;47732:2;47724:6;47720:15;47713:38;47528:230;:::o;47764:180::-;47904:32;47900:1;47892:6;47888:14;47881:56;47764:180;:::o;47950:220::-;48090:34;48086:1;48078:6;48074:14;48067:58;48159:3;48154:2;48146:6;48142:15;48135:28;47950:220;:::o;48176:230::-;48316:34;48312:1;48304:6;48300:14;48293:58;48385:13;48380:2;48372:6;48368:15;48361:38;48176:230;:::o;48412:167::-;48552:19;48548:1;48540:6;48536:14;48529:43;48412:167;:::o;48585:225::-;48725:34;48721:1;48713:6;48709:14;48702:58;48794:8;48789:2;48781:6;48777:15;48770:33;48585:225;:::o;48816:226::-;48956:34;48952:1;48944:6;48940:14;48933:58;49025:9;49020:2;49012:6;49008:15;49001:34;48816:226;:::o;49048:182::-;49188:34;49184:1;49176:6;49172:14;49165:58;49048:182;:::o;49236:234::-;49376:34;49372:1;49364:6;49360:14;49353:58;49445:17;49440:2;49432:6;49428:15;49421:42;49236:234;:::o;49476:176::-;49616:28;49612:1;49604:6;49600:14;49593:52;49476:176;:::o;49658:237::-;49798:34;49794:1;49786:6;49782:14;49775:58;49867:20;49862:2;49854:6;49850:15;49843:45;49658:237;:::o;49901:174::-;50041:26;50037:1;50029:6;50025:14;50018:50;49901:174;:::o;50081:221::-;50221:34;50217:1;50209:6;50205:14;50198:58;50290:4;50285:2;50277:6;50273:15;50266:29;50081:221;:::o;50308:238::-;50448:34;50444:1;50436:6;50432:14;50425:58;50517:21;50512:2;50504:6;50500:15;50493:46;50308:238;:::o;50552:179::-;50692:31;50688:1;50680:6;50676:14;50669:55;50552:179;:::o;50737:220::-;50877:34;50873:1;50865:6;50861:14;50854:58;50946:3;50941:2;50933:6;50929:15;50922:28;50737:220;:::o;50963:233::-;51103:34;51099:1;51091:6;51087:14;51080:58;51172:16;51167:2;51159:6;51155:15;51148:41;50963:233;:::o;51202:234::-;51342:34;51338:1;51330:6;51326:14;51319:58;51411:17;51406:2;51398:6;51394:15;51387:42;51202:234;:::o;51442:232::-;51582:34;51578:1;51570:6;51566:14;51559:58;51651:15;51646:2;51638:6;51634:15;51627:40;51442:232;:::o;51680:221::-;51820:34;51816:1;51808:6;51804:14;51797:58;51889:4;51884:2;51876:6;51872:15;51865:29;51680:221;:::o;51907:122::-;51980:24;51998:5;51980:24;:::i;:::-;51973:5;51970:35;51960:63;;52019:1;52016;52009:12;51960:63;51907:122;:::o;52035:116::-;52105:21;52120:5;52105:21;:::i;:::-;52098:5;52095:32;52085:60;;52141:1;52138;52131:12;52085:60;52035:116;:::o;52157:122::-;52230:24;52248:5;52230:24;:::i;:::-;52223:5;52220:35;52210:63;;52269:1;52266;52259:12;52210:63;52157:122;:::o;52285:120::-;52357:23;52374:5;52357:23;:::i;:::-;52350:5;52347:34;52337:62;;52395:1;52392;52385:12;52337:62;52285:120;:::o;52411:122::-;52484:24;52502:5;52484:24;:::i;:::-;52477:5;52474:35;52464:63;;52523:1;52520;52513:12;52464:63;52411:122;:::o

Swarm Source

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