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

Token

Crocsgang (Crocsgang)
 

Overview

Max Total Supply

1,740 Crocsgang

Holders

1,565

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Crocsgang
0xc8fc4f75009b69ba5769d525da49a3b2bca143a5
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Crocsgang

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

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

    uint public asdasd;
    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 freeNFT = 1;
    uint public maxPerTx = 5;  
    uint public maxPerWallet = 5;
    uint public maxSupply = 5555;
    uint public priceMint = 10000000000000000; //0.01 ETH

    constructor() ERC721A("Crocsgang", "Crocsgang",10,5555){}

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

    function publicMint(uint256 qty) external payable
    {
        require(mintPublicEnabled, "Crocsgang: Minting Public Pause");
        if(walletPublic[msg.sender] < freeNFT) 
        {
           uint256 claimFree = qty - freeNFT;
           require(msg.value >= claimFree * priceMint,"Crocsgang: Insufficient Eth Claim Free");
        }
        else
        {
           require(msg.value >= qty * priceMint,"Crocsgang: Insufficient Eth Normal");
        }
        require(walletPublic[msg.sender] + qty <= maxPerWallet,"Crocsgang: Max Per Wallet");
        require(qty <= maxPerTx, "Crocsgang: Limit Per Transaction");
        require(totalSupply() + qty <= maxSupply,"Crocsgang: We Are Soldout");
        walletPublic[msg.sender] += qty;
        _safeMint(msg.sender, qty);
    }
    
    function whitelistMint() public view returns (uint256) {
        return walletPublic[msg.sender];
    }
    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

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

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

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

    function ownerBatchMint(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 setPrice(uint256 price_) external onlyOwner {
        priceMint = price_;
    }

    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 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":"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":[],"name":"asdasd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"freeNFT","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":"qty","type":"uint256"}],"name":"ownerBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceMint","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":"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":"setPrice","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":[],"name":"whitelistMint","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"}]

60c06040526000805560006007556000600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055506001601055600560115560056012556115b3601355662386f26fc100006014553480156200007057600080fd5b506040518060400160405280600981526020017f43726f637367616e6700000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f43726f637367616e670000000000000000000000000000000000000000000000815250600a6115b36000811162000128576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200011f90620003d0565b60405180910390fd5b600082116200016e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016590620003ae565b60405180910390fd5b836001908051906020019062000186929190620002b0565b5082600290805190602001906200019f929190620002b0565b508160a08181525050806080818152505050505050620001d4620001c8620001e260201b60201c565b620001ea60201b60201c565b600160098190555062000506565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002be9062000403565b90600052602060002090601f016020900481019282620002e257600085556200032e565b82601f10620002fd57805160ff19168380011785556200032e565b828001600101855582156200032e579182015b828111156200032d57825182559160200191906001019062000310565b5b5090506200033d919062000341565b5090565b5b808211156200035c57600081600090555060010162000342565b5090565b60006200036f602783620003f2565b91506200037c8262000468565b604082019050919050565b600062000396602e83620003f2565b9150620003a382620004b7565b604082019050919050565b60006020820190508181036000830152620003c98162000360565b9050919050565b60006020820190508181036000830152620003eb8162000387565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200041c57607f821691505b6020821081141562000433576200043262000439565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a0516156ca6200053760003960008181612cb601528181612cdf01526134820152600050506156ca6000f3fe6080604052600436106102885760003560e01c806370a082311161015a578063b7002ab4116100c1578063d7224ba01161007a578063d7224ba01461098c578063dc33e681146109b7578063e268e4d3146109f4578063e985e9c514610a1d578063f2fde38b14610a5a578063f968adbe14610a8357610288565b8063b7002ab41461088b578063b88d4fde146108b6578063c6f6f216146108df578063c87b56dd14610908578063d2cab05614610945578063d5abeb011461096157610288565b80638db89f07116101135780638db89f071461078f57806391b7f5ed146107b857806395d89b41146107e1578063a22cb4651461080c578063a402c6d214610835578063a5b590431461086057610288565b806370a0823114610693578063715018a6146106d05780637cb64759146106e7578063804f43cd146107105780638ba4cc3c1461073b5780638da5cb5b1461076457610288565b80632eb4a7ab116101fe5780634f6ccce7116101b75780634f6ccce71461058357806355f804b3146105c05780636352211e146105e95780636b8a21fc146106265780636c0360eb1461063d5780636e3fc3f61461066857610288565b80632eb4a7ab146104735780632f745c591461049e5780633ccfd60b146104db57806342842e0e146104f2578063453c23101461051b5780634a81d9dd1461054657610288565b806318160ddd1161025057806318160ddd14610386578063228025e8146103b157806323b872dd146103da5780632be905ba146104035780632c1270ee146104405780632db115441461045757610288565b806301ffc9a71461028d57806306fdde03146102ca578063081812fc146102f5578063095ea7b31461033257806310c39c031461035b575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613dc2565b610aae565b6040516102c191906144ac565b60405180910390f35b3480156102d657600080fd5b506102df610bf8565b6040516102ec91906144e2565b60405180910390f35b34801561030157600080fd5b5061031c60048036038101906103179190613e69565b610c8a565b6040516103299190614445565b60405180910390f35b34801561033e57600080fd5b5061035960048036038101906103549190613d55565b610d0f565b005b34801561036757600080fd5b50610370610e28565b60405161037d91906148c4565b60405180910390f35b34801561039257600080fd5b5061039b610e2e565b6040516103a891906148c4565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190613e69565b610e37565b005b3480156103e657600080fd5b5061040160048036038101906103fc9190613c3f565b610ebd565b005b34801561040f57600080fd5b5061042a60048036038101906104259190613bd2565b610ecd565b60405161043791906148c4565b60405180910390f35b34801561044c57600080fd5b50610455610ee5565b005b610471600480360381019061046c9190613e69565b610f8d565b005b34801561047f57600080fd5b5061048861126c565b60405161049591906144c7565b60405180910390f35b3480156104aa57600080fd5b506104c560048036038101906104c09190613d55565b611272565b6040516104d291906148c4565b60405180910390f35b3480156104e757600080fd5b506104f0611470565b005b3480156104fe57600080fd5b5061051960048036038101906105149190613c3f565b61154c565b005b34801561052757600080fd5b5061053061156c565b60405161053d91906148c4565b60405180910390f35b34801561055257600080fd5b5061056d60048036038101906105689190613bd2565b611572565b60405161057a91906148c4565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a59190613e69565b61158a565b6040516105b791906148c4565b60405180910390f35b3480156105cc57600080fd5b506105e760048036038101906105e29190613e1c565b6115dd565b005b3480156105f557600080fd5b50610610600480360381019061060b9190613e69565b61166f565b60405161061d9190614445565b60405180910390f35b34801561063257600080fd5b5061063b611685565b005b34801561064957600080fd5b5061065261172d565b60405161065f91906144e2565b60405180910390f35b34801561067457600080fd5b5061067d6117bb565b60405161068a91906144ac565b60405180910390f35b34801561069f57600080fd5b506106ba60048036038101906106b59190613bd2565b6117ce565b6040516106c791906148c4565b60405180910390f35b3480156106dc57600080fd5b506106e56118b7565b005b3480156106f357600080fd5b5061070e60048036038101906107099190613d95565b61193f565b005b34801561071c57600080fd5b506107256119c5565b60405161073291906148c4565b60405180910390f35b34801561074757600080fd5b50610762600480360381019061075d9190613d55565b611a0c565b005b34801561077057600080fd5b50610779611a96565b6040516107869190614445565b60405180910390f35b34801561079b57600080fd5b506107b660048036038101906107b19190613e69565b611ac0565b005b3480156107c457600080fd5b506107df60048036038101906107da9190613e69565b611b49565b005b3480156107ed57600080fd5b506107f6611bcf565b60405161080391906144e2565b60405180910390f35b34801561081857600080fd5b50610833600480360381019061082e9190613d15565b611c61565b005b34801561084157600080fd5b5061084a611de2565b60405161085791906144ac565b60405180910390f35b34801561086c57600080fd5b50610875611df5565b60405161088291906148c4565b60405180910390f35b34801561089757600080fd5b506108a0611dfb565b6040516108ad91906148c4565b60405180910390f35b3480156108c257600080fd5b506108dd60048036038101906108d89190613c92565b611e01565b005b3480156108eb57600080fd5b5061090660048036038101906109019190613e69565b611e5d565b005b34801561091457600080fd5b5061092f600480360381019061092a9190613e69565b611ee3565b60405161093c91906144e2565b60405180910390f35b61095f600480360381019061095a9190613e96565b611f8a565b005b34801561096d57600080fd5b50610976612324565b60405161098391906148c4565b60405180910390f35b34801561099857600080fd5b506109a161232a565b6040516109ae91906148c4565b60405180910390f35b3480156109c357600080fd5b506109de60048036038101906109d99190613bd2565b612330565b6040516109eb91906148c4565b60405180910390f35b348015610a0057600080fd5b50610a1b6004803603810190610a169190613e69565b612342565b005b348015610a2957600080fd5b50610a446004803603810190610a3f9190613bff565b6123c8565b604051610a5191906144ac565b60405180910390f35b348015610a6657600080fd5b50610a816004803603810190610a7c9190613bd2565b61245c565b005b348015610a8f57600080fd5b50610a98612554565b604051610aa591906148c4565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b7957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610be157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bf15750610bf08261255a565b5b9050919050565b606060018054610c0790614c0d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3390614c0d565b8015610c805780601f10610c5557610100808354040283529160200191610c80565b820191906000526020600020905b815481529060010190602001808311610c6357829003601f168201915b5050505050905090565b6000610c95826125c4565b610cd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccb90614864565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d1a8261166f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8290614744565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610daa6125d1565b73ffffffffffffffffffffffffffffffffffffffff161480610dd95750610dd881610dd36125d1565b6123c8565b5b610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f906145e4565b60405180910390fd5b610e238383836125d9565b505050565b600a5481565b60008054905090565b610e3f6125d1565b73ffffffffffffffffffffffffffffffffffffffff16610e5d611a96565b73ffffffffffffffffffffffffffffffffffffffff1614610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaa906146a4565b60405180910390fd5b8060138190555050565b610ec883838361268b565b505050565b600b6020528060005260406000206000915090505481565b610eed6125d1565b73ffffffffffffffffffffffffffffffffffffffff16610f0b611a96565b73ffffffffffffffffffffffffffffffffffffffff1614610f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f58906146a4565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b600e60019054906101000a900460ff16610fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd390614764565b60405180910390fd5b601054600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561108d576000601054826110359190614ad3565b9050601454816110459190614a45565b341015611087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107e90614624565b60405180910390fd5b506110de565b6014548161109b9190614a45565b3410156110dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d490614664565b60405180910390fd5b5b60125481600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461112c91906149be565b111561116d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116490614804565b60405180910390fd5b6011548111156111b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a9906147c4565b60405180910390fd5b601354816111be610e2e565b6111c891906149be565b1115611209576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120090614684565b60405180910390fd5b80600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461125891906149be565b925050819055506112693382612c44565b50565b600f5481565b600061127d836117ce565b82106112be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b590614504565b60405180910390fd5b60006112c8610e2e565b905060008060005b8381101561142e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146113c257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561141a578684141561140b57819550505050505061146a565b838061141690614c70565b9450505b50808061142690614c70565b9150506112d0565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146190614824565b60405180910390fd5b92915050565b6114786125d1565b73ffffffffffffffffffffffffffffffffffffffff16611496611a96565b73ffffffffffffffffffffffffffffffffffffffff16146114ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e3906146a4565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015611549573d6000803e3d6000fd5b50565b61156783838360405180602001604052806000815250611e01565b505050565b60125481565b600c6020528060005260406000206000915090505481565b6000611594610e2e565b82106115d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cc90614564565b60405180910390fd5b819050919050565b6115e56125d1565b73ffffffffffffffffffffffffffffffffffffffff16611603611a96565b73ffffffffffffffffffffffffffffffffffffffff1614611659576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611650906146a4565b60405180910390fd5b8181600d919061166a92919061395b565b505050565b600061167a82612c62565b600001519050919050565b61168d6125d1565b73ffffffffffffffffffffffffffffffffffffffff166116ab611a96565b73ffffffffffffffffffffffffffffffffffffffff1614611701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f8906146a4565b60405180910390fd5b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b600d805461173a90614c0d565b80601f016020809104026020016040519081016040528092919081815260200182805461176690614c0d565b80156117b35780601f10611788576101008083540402835291602001916117b3565b820191906000526020600020905b81548152906001019060200180831161179657829003601f168201915b505050505081565b600e60019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561183f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183690614604565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6118bf6125d1565b73ffffffffffffffffffffffffffffffffffffffff166118dd611a96565b73ffffffffffffffffffffffffffffffffffffffff1614611933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192a906146a4565b60405180910390fd5b61193d6000612e65565b565b6119476125d1565b73ffffffffffffffffffffffffffffffffffffffff16611965611a96565b73ffffffffffffffffffffffffffffffffffffffff16146119bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b2906146a4565b60405180910390fd5b80600f8190555050565b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b611a146125d1565b73ffffffffffffffffffffffffffffffffffffffff16611a32611a96565b73ffffffffffffffffffffffffffffffffffffffff1614611a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7f906146a4565b60405180910390fd5b611a928282612c44565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611ac86125d1565b73ffffffffffffffffffffffffffffffffffffffff16611ae6611a96565b73ffffffffffffffffffffffffffffffffffffffff1614611b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b33906146a4565b60405180910390fd5b611b463382612c44565b50565b611b516125d1565b73ffffffffffffffffffffffffffffffffffffffff16611b6f611a96565b73ffffffffffffffffffffffffffffffffffffffff1614611bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbc906146a4565b60405180910390fd5b8060148190555050565b606060028054611bde90614c0d565b80601f0160208091040260200160405190810160405280929190818152602001828054611c0a90614c0d565b8015611c575780601f10611c2c57610100808354040283529160200191611c57565b820191906000526020600020905b815481529060010190602001808311611c3a57829003601f168201915b5050505050905090565b611c696125d1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cce90614704565b60405180910390fd5b8060066000611ce46125d1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d916125d1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611dd691906144ac565b60405180910390a35050565b600e60009054906101000a900460ff1681565b60145481565b60105481565b611e0c84848461268b565b611e1884848484612f2b565b611e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4e90614784565b60405180910390fd5b50505050565b611e656125d1565b73ffffffffffffffffffffffffffffffffffffffff16611e83611a96565b73ffffffffffffffffffffffffffffffffffffffff1614611ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed0906146a4565b60405180910390fd5b8060118190555050565b6060611eee826125c4565b611f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f24906146e4565b60405180910390fd5b6000611f376130c2565b90506000815111611f575760405180602001604052806000815250611f82565b80611f6184613154565b604051602001611f72929190614421565b6040516020818303038152906040525b915050919050565b600e60009054906101000a900460ff16611fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd0906146c4565b60405180910390fd5b601054600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561208a576000601054846120329190614ad3565b9050601454816120429190614a45565b341015612084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207b90614624565b60405180910390fd5b506120db565b601454836120989190614a45565b3410156120da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d1906148a4565b60405180910390fd5b5b60125483600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461212991906149be565b111561216a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216190614804565b60405180910390fd5b6011548311156121af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a6906147c4565b60405180910390fd5b6000336040516020016121c29190614406565b604051602081830303815290604052805190602001209050612228838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f54836132b5565b612267576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225e906145a4565b60405180910390fd5b60135484612273610e2e565b61227d91906149be565b11156122be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b590614684565b60405180910390fd5b83600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461230d91906149be565b9250508190555061231e3385612c44565b50505050565b60135481565b60075481565b600061233b826132cc565b9050919050565b61234a6125d1565b73ffffffffffffffffffffffffffffffffffffffff16612368611a96565b73ffffffffffffffffffffffffffffffffffffffff16146123be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b5906146a4565b60405180910390fd5b8060128190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124646125d1565b73ffffffffffffffffffffffffffffffffffffffff16612482611a96565b73ffffffffffffffffffffffffffffffffffffffff16146124d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cf906146a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253f90614524565b60405180910390fd5b61255181612e65565b50565b60115481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061269682612c62565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166126bd6125d1565b73ffffffffffffffffffffffffffffffffffffffff16148061271957506126e26125d1565b73ffffffffffffffffffffffffffffffffffffffff1661270184610c8a565b73ffffffffffffffffffffffffffffffffffffffff16145b806127355750612734826000015161272f6125d1565b6123c8565b5b905080612777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276e90614724565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146127e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e090614644565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612859576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285090614584565b60405180910390fd5b61286685858560016133b5565b61287660008484600001516125d9565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166128e49190614a9f565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166129889190614978565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612a8e91906149be565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612bd457612b04816125c4565b15612bd3576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c3c86868660016133bb565b505050505050565b612c5e8282604051806020016040528060008152506133c1565b5050565b612c6a6139e1565b612c73826125c4565b612cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca990614544565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310612d165760017f000000000000000000000000000000000000000000000000000000000000000084612d099190614ad3565b612d1391906149be565b90505b60008390505b818110612e24576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e1057809350505050612e60565b508080612e1c90614be3565b915050612d1c565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5790614844565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612f4c8473ffffffffffffffffffffffffffffffffffffffff166138a0565b156130b5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f756125d1565b8786866040518563ffffffff1660e01b8152600401612f979493929190614460565b602060405180830381600087803b158015612fb157600080fd5b505af1925050508015612fe257506040513d601f19601f82011682018060405250810190612fdf9190613def565b60015b613065573d8060008114613012576040519150601f19603f3d011682016040523d82523d6000602084013e613017565b606091505b5060008151141561305d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305490614784565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130ba565b600190505b949350505050565b6060600d80546130d190614c0d565b80601f01602080910402602001604051908101604052809291908181526020018280546130fd90614c0d565b801561314a5780601f1061311f5761010080835404028352916020019161314a565b820191906000526020600020905b81548152906001019060200180831161312d57829003601f168201915b5050505050905090565b6060600082141561319c576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132b0565b600082905060005b600082146131ce5780806131b790614c70565b915050600a826131c79190614a14565b91506131a4565b60008167ffffffffffffffff8111156131ea576131e9614dca565b5b6040519080825280601f01601f19166020018201604052801561321c5781602001600182028036833780820191505090505b5090505b600085146132a9576001826132359190614ad3565b9150600a856132449190614cdd565b603061325091906149be565b60f81b81838151811061326657613265614d9b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132a29190614a14565b9450613220565b8093505050505b919050565b6000826132c285846138c3565b1490509392505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561333d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613334906145c4565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342e906147e4565b60405180910390fd5b613440816125c4565b15613480576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613477906147a4565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008311156134e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134da90614884565b60405180910390fd5b6134f060008583866133b5565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516135ed9190614978565b6fffffffffffffffffffffffffffffffff1681526020018583602001516136149190614978565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561388357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46138236000888488612f2b565b613862576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161385990614784565b60405180910390fd5b818061386d90614c70565b925050808061387b90614c70565b9150506137b2565b508060008190555061389860008785886133bb565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008082905060005b845181101561390e576138f9828683815181106138ec576138eb614d9b565b5b6020026020010151613919565b9150808061390690614c70565b9150506138cc565b508091505092915050565b60008183106139315761392c8284613944565b61393c565b61393b8383613944565b5b905092915050565b600082600052816020526040600020905092915050565b82805461396790614c0d565b90600052602060002090601f01602090048101928261398957600085556139d0565b82601f106139a257803560ff19168380011785556139d0565b828001600101855582156139d0579182015b828111156139cf5782358255916020019190600101906139b4565b5b5090506139dd9190613a1b565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613a34576000816000905550600101613a1c565b5090565b6000613a4b613a4684614904565b6148df565b905082815260208101848484011115613a6757613a66614e08565b5b613a72848285614ba1565b509392505050565b600081359050613a8981615621565b92915050565b60008083601f840112613aa557613aa4614dfe565b5b8235905067ffffffffffffffff811115613ac257613ac1614df9565b5b602083019150836020820283011115613ade57613add614e03565b5b9250929050565b600081359050613af481615638565b92915050565b600081359050613b098161564f565b92915050565b600081359050613b1e81615666565b92915050565b600081519050613b3381615666565b92915050565b600082601f830112613b4e57613b4d614dfe565b5b8135613b5e848260208601613a38565b91505092915050565b60008083601f840112613b7d57613b7c614dfe565b5b8235905067ffffffffffffffff811115613b9a57613b99614df9565b5b602083019150836001820283011115613bb657613bb5614e03565b5b9250929050565b600081359050613bcc8161567d565b92915050565b600060208284031215613be857613be7614e12565b5b6000613bf684828501613a7a565b91505092915050565b60008060408385031215613c1657613c15614e12565b5b6000613c2485828601613a7a565b9250506020613c3585828601613a7a565b9150509250929050565b600080600060608486031215613c5857613c57614e12565b5b6000613c6686828701613a7a565b9350506020613c7786828701613a7a565b9250506040613c8886828701613bbd565b9150509250925092565b60008060008060808587031215613cac57613cab614e12565b5b6000613cba87828801613a7a565b9450506020613ccb87828801613a7a565b9350506040613cdc87828801613bbd565b925050606085013567ffffffffffffffff811115613cfd57613cfc614e0d565b5b613d0987828801613b39565b91505092959194509250565b60008060408385031215613d2c57613d2b614e12565b5b6000613d3a85828601613a7a565b9250506020613d4b85828601613ae5565b9150509250929050565b60008060408385031215613d6c57613d6b614e12565b5b6000613d7a85828601613a7a565b9250506020613d8b85828601613bbd565b9150509250929050565b600060208284031215613dab57613daa614e12565b5b6000613db984828501613afa565b91505092915050565b600060208284031215613dd857613dd7614e12565b5b6000613de684828501613b0f565b91505092915050565b600060208284031215613e0557613e04614e12565b5b6000613e1384828501613b24565b91505092915050565b60008060208385031215613e3357613e32614e12565b5b600083013567ffffffffffffffff811115613e5157613e50614e0d565b5b613e5d85828601613b67565b92509250509250929050565b600060208284031215613e7f57613e7e614e12565b5b6000613e8d84828501613bbd565b91505092915050565b600080600060408486031215613eaf57613eae614e12565b5b6000613ebd86828701613bbd565b935050602084013567ffffffffffffffff811115613ede57613edd614e0d565b5b613eea86828701613a8f565b92509250509250925092565b613eff81614b07565b82525050565b613f16613f1182614b07565b614cb9565b82525050565b613f2581614b19565b82525050565b613f3481614b25565b82525050565b6000613f4582614935565b613f4f818561494b565b9350613f5f818560208601614bb0565b613f6881614e17565b840191505092915050565b6000613f7e82614940565b613f88818561495c565b9350613f98818560208601614bb0565b613fa181614e17565b840191505092915050565b6000613fb782614940565b613fc1818561496d565b9350613fd1818560208601614bb0565b80840191505092915050565b6000613fea60228361495c565b9150613ff582614e35565b604082019050919050565b600061400d60268361495c565b915061401882614e84565b604082019050919050565b6000614030602a8361495c565b915061403b82614ed3565b604082019050919050565b600061405360238361495c565b915061405e82614f22565b604082019050919050565b600061407660258361495c565b915061408182614f71565b604082019050919050565b6000614099601d8361495c565b91506140a482614fc0565b602082019050919050565b60006140bc60318361495c565b91506140c782614fe9565b604082019050919050565b60006140df60398361495c565b91506140ea82615038565b604082019050919050565b6000614102602b8361495c565b915061410d82615087565b604082019050919050565b600061412560268361495c565b9150614130826150d6565b604082019050919050565b600061414860268361495c565b915061415382615125565b604082019050919050565b600061416b60228361495c565b915061417682615174565b604082019050919050565b600061418e60198361495c565b9150614199826151c3565b602082019050919050565b60006141b160208361495c565b91506141bc826151ec565b602082019050919050565b60006141d460228361495c565b91506141df82615215565b604082019050919050565b60006141f7602f8361495c565b915061420282615264565b604082019050919050565b600061421a601a8361495c565b9150614225826152b3565b602082019050919050565b600061423d60328361495c565b9150614248826152dc565b604082019050919050565b600061426060228361495c565b915061426b8261532b565b604082019050919050565b6000614283601f8361495c565b915061428e8261537a565b602082019050919050565b60006142a660338361495c565b91506142b1826153a3565b604082019050919050565b60006142c9601d8361495c565b91506142d4826153f2565b602082019050919050565b60006142ec60208361495c565b91506142f78261541b565b602082019050919050565b600061430f60218361495c565b915061431a82615444565b604082019050919050565b600061433260198361495c565b915061433d82615493565b602082019050919050565b6000614355602e8361495c565b9150614360826154bc565b604082019050919050565b6000614378602f8361495c565b91506143838261550b565b604082019050919050565b600061439b602d8361495c565b91506143a68261555a565b604082019050919050565b60006143be60228361495c565b91506143c9826155a9565b604082019050919050565b60006143e1601b8361495c565b91506143ec826155f8565b602082019050919050565b61440081614b97565b82525050565b60006144128284613f05565b60148201915081905092915050565b600061442d8285613fac565b91506144398284613fac565b91508190509392505050565b600060208201905061445a6000830184613ef6565b92915050565b60006080820190506144756000830187613ef6565b6144826020830186613ef6565b61448f60408301856143f7565b81810360608301526144a18184613f3a565b905095945050505050565b60006020820190506144c16000830184613f1c565b92915050565b60006020820190506144dc6000830184613f2b565b92915050565b600060208201905081810360008301526144fc8184613f73565b905092915050565b6000602082019050818103600083015261451d81613fdd565b9050919050565b6000602082019050818103600083015261453d81614000565b9050919050565b6000602082019050818103600083015261455d81614023565b9050919050565b6000602082019050818103600083015261457d81614046565b9050919050565b6000602082019050818103600083015261459d81614069565b9050919050565b600060208201905081810360008301526145bd8161408c565b9050919050565b600060208201905081810360008301526145dd816140af565b9050919050565b600060208201905081810360008301526145fd816140d2565b9050919050565b6000602082019050818103600083015261461d816140f5565b9050919050565b6000602082019050818103600083015261463d81614118565b9050919050565b6000602082019050818103600083015261465d8161413b565b9050919050565b6000602082019050818103600083015261467d8161415e565b9050919050565b6000602082019050818103600083015261469d81614181565b9050919050565b600060208201905081810360008301526146bd816141a4565b9050919050565b600060208201905081810360008301526146dd816141c7565b9050919050565b600060208201905081810360008301526146fd816141ea565b9050919050565b6000602082019050818103600083015261471d8161420d565b9050919050565b6000602082019050818103600083015261473d81614230565b9050919050565b6000602082019050818103600083015261475d81614253565b9050919050565b6000602082019050818103600083015261477d81614276565b9050919050565b6000602082019050818103600083015261479d81614299565b9050919050565b600060208201905081810360008301526147bd816142bc565b9050919050565b600060208201905081810360008301526147dd816142df565b9050919050565b600060208201905081810360008301526147fd81614302565b9050919050565b6000602082019050818103600083015261481d81614325565b9050919050565b6000602082019050818103600083015261483d81614348565b9050919050565b6000602082019050818103600083015261485d8161436b565b9050919050565b6000602082019050818103600083015261487d8161438e565b9050919050565b6000602082019050818103600083015261489d816143b1565b9050919050565b600060208201905081810360008301526148bd816143d4565b9050919050565b60006020820190506148d960008301846143f7565b92915050565b60006148e96148fa565b90506148f58282614c3f565b919050565b6000604051905090565b600067ffffffffffffffff82111561491f5761491e614dca565b5b61492882614e17565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061498382614b5b565b915061498e83614b5b565b9250826fffffffffffffffffffffffffffffffff038211156149b3576149b2614d0e565b5b828201905092915050565b60006149c982614b97565b91506149d483614b97565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a0957614a08614d0e565b5b828201905092915050565b6000614a1f82614b97565b9150614a2a83614b97565b925082614a3a57614a39614d3d565b5b828204905092915050565b6000614a5082614b97565b9150614a5b83614b97565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a9457614a93614d0e565b5b828202905092915050565b6000614aaa82614b5b565b9150614ab583614b5b565b925082821015614ac857614ac7614d0e565b5b828203905092915050565b6000614ade82614b97565b9150614ae983614b97565b925082821015614afc57614afb614d0e565b5b828203905092915050565b6000614b1282614b77565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614bce578082015181840152602081019050614bb3565b83811115614bdd576000848401525b50505050565b6000614bee82614b97565b91506000821415614c0257614c01614d0e565b5b600182039050919050565b60006002820490506001821680614c2557607f821691505b60208210811415614c3957614c38614d6c565b5b50919050565b614c4882614e17565b810181811067ffffffffffffffff82111715614c6757614c66614dca565b5b80604052505050565b6000614c7b82614b97565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614cae57614cad614d0e565b5b600182019050919050565b6000614cc482614ccb565b9050919050565b6000614cd682614e28565b9050919050565b6000614ce882614b97565b9150614cf383614b97565b925082614d0357614d02614d3d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f43726f637367616e673a204e6f7420696e2077686974656c6973746564000000600082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f43726f637367616e673a20496e73756666696369656e742045746820436c616960008201527f6d20467265650000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f43726f637367616e673a20496e73756666696369656e7420457468204e6f726d60008201527f616c000000000000000000000000000000000000000000000000000000000000602082015250565b7f43726f637367616e673a2057652041726520536f6c646f757400000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43726f637367616e673a204d696e74696e672057686974656c6973742050617560008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f43726f637367616e673a204d696e74696e67205075626c696320506175736500600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f43726f637367616e673a204c696d697420506572205472616e73616374696f6e600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f43726f637367616e673a204d6178205065722057616c6c657400000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f43726f637367616e673a20496e73756666696369656e74204574680000000000600082015250565b61562a81614b07565b811461563557600080fd5b50565b61564181614b19565b811461564c57600080fd5b50565b61565881614b25565b811461566357600080fd5b50565b61566f81614b2f565b811461567a57600080fd5b50565b61568681614b97565b811461569157600080fd5b5056fea26469706673582212202b21f24a7041ec54bab8a652776030c23031ce82385d3468696b5fa6fdaed1b664736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102885760003560e01c806370a082311161015a578063b7002ab4116100c1578063d7224ba01161007a578063d7224ba01461098c578063dc33e681146109b7578063e268e4d3146109f4578063e985e9c514610a1d578063f2fde38b14610a5a578063f968adbe14610a8357610288565b8063b7002ab41461088b578063b88d4fde146108b6578063c6f6f216146108df578063c87b56dd14610908578063d2cab05614610945578063d5abeb011461096157610288565b80638db89f07116101135780638db89f071461078f57806391b7f5ed146107b857806395d89b41146107e1578063a22cb4651461080c578063a402c6d214610835578063a5b590431461086057610288565b806370a0823114610693578063715018a6146106d05780637cb64759146106e7578063804f43cd146107105780638ba4cc3c1461073b5780638da5cb5b1461076457610288565b80632eb4a7ab116101fe5780634f6ccce7116101b75780634f6ccce71461058357806355f804b3146105c05780636352211e146105e95780636b8a21fc146106265780636c0360eb1461063d5780636e3fc3f61461066857610288565b80632eb4a7ab146104735780632f745c591461049e5780633ccfd60b146104db57806342842e0e146104f2578063453c23101461051b5780634a81d9dd1461054657610288565b806318160ddd1161025057806318160ddd14610386578063228025e8146103b157806323b872dd146103da5780632be905ba146104035780632c1270ee146104405780632db115441461045757610288565b806301ffc9a71461028d57806306fdde03146102ca578063081812fc146102f5578063095ea7b31461033257806310c39c031461035b575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613dc2565b610aae565b6040516102c191906144ac565b60405180910390f35b3480156102d657600080fd5b506102df610bf8565b6040516102ec91906144e2565b60405180910390f35b34801561030157600080fd5b5061031c60048036038101906103179190613e69565b610c8a565b6040516103299190614445565b60405180910390f35b34801561033e57600080fd5b5061035960048036038101906103549190613d55565b610d0f565b005b34801561036757600080fd5b50610370610e28565b60405161037d91906148c4565b60405180910390f35b34801561039257600080fd5b5061039b610e2e565b6040516103a891906148c4565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190613e69565b610e37565b005b3480156103e657600080fd5b5061040160048036038101906103fc9190613c3f565b610ebd565b005b34801561040f57600080fd5b5061042a60048036038101906104259190613bd2565b610ecd565b60405161043791906148c4565b60405180910390f35b34801561044c57600080fd5b50610455610ee5565b005b610471600480360381019061046c9190613e69565b610f8d565b005b34801561047f57600080fd5b5061048861126c565b60405161049591906144c7565b60405180910390f35b3480156104aa57600080fd5b506104c560048036038101906104c09190613d55565b611272565b6040516104d291906148c4565b60405180910390f35b3480156104e757600080fd5b506104f0611470565b005b3480156104fe57600080fd5b5061051960048036038101906105149190613c3f565b61154c565b005b34801561052757600080fd5b5061053061156c565b60405161053d91906148c4565b60405180910390f35b34801561055257600080fd5b5061056d60048036038101906105689190613bd2565b611572565b60405161057a91906148c4565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a59190613e69565b61158a565b6040516105b791906148c4565b60405180910390f35b3480156105cc57600080fd5b506105e760048036038101906105e29190613e1c565b6115dd565b005b3480156105f557600080fd5b50610610600480360381019061060b9190613e69565b61166f565b60405161061d9190614445565b60405180910390f35b34801561063257600080fd5b5061063b611685565b005b34801561064957600080fd5b5061065261172d565b60405161065f91906144e2565b60405180910390f35b34801561067457600080fd5b5061067d6117bb565b60405161068a91906144ac565b60405180910390f35b34801561069f57600080fd5b506106ba60048036038101906106b59190613bd2565b6117ce565b6040516106c791906148c4565b60405180910390f35b3480156106dc57600080fd5b506106e56118b7565b005b3480156106f357600080fd5b5061070e60048036038101906107099190613d95565b61193f565b005b34801561071c57600080fd5b506107256119c5565b60405161073291906148c4565b60405180910390f35b34801561074757600080fd5b50610762600480360381019061075d9190613d55565b611a0c565b005b34801561077057600080fd5b50610779611a96565b6040516107869190614445565b60405180910390f35b34801561079b57600080fd5b506107b660048036038101906107b19190613e69565b611ac0565b005b3480156107c457600080fd5b506107df60048036038101906107da9190613e69565b611b49565b005b3480156107ed57600080fd5b506107f6611bcf565b60405161080391906144e2565b60405180910390f35b34801561081857600080fd5b50610833600480360381019061082e9190613d15565b611c61565b005b34801561084157600080fd5b5061084a611de2565b60405161085791906144ac565b60405180910390f35b34801561086c57600080fd5b50610875611df5565b60405161088291906148c4565b60405180910390f35b34801561089757600080fd5b506108a0611dfb565b6040516108ad91906148c4565b60405180910390f35b3480156108c257600080fd5b506108dd60048036038101906108d89190613c92565b611e01565b005b3480156108eb57600080fd5b5061090660048036038101906109019190613e69565b611e5d565b005b34801561091457600080fd5b5061092f600480360381019061092a9190613e69565b611ee3565b60405161093c91906144e2565b60405180910390f35b61095f600480360381019061095a9190613e96565b611f8a565b005b34801561096d57600080fd5b50610976612324565b60405161098391906148c4565b60405180910390f35b34801561099857600080fd5b506109a161232a565b6040516109ae91906148c4565b60405180910390f35b3480156109c357600080fd5b506109de60048036038101906109d99190613bd2565b612330565b6040516109eb91906148c4565b60405180910390f35b348015610a0057600080fd5b50610a1b6004803603810190610a169190613e69565b612342565b005b348015610a2957600080fd5b50610a446004803603810190610a3f9190613bff565b6123c8565b604051610a5191906144ac565b60405180910390f35b348015610a6657600080fd5b50610a816004803603810190610a7c9190613bd2565b61245c565b005b348015610a8f57600080fd5b50610a98612554565b604051610aa591906148c4565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b7957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610be157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bf15750610bf08261255a565b5b9050919050565b606060018054610c0790614c0d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3390614c0d565b8015610c805780601f10610c5557610100808354040283529160200191610c80565b820191906000526020600020905b815481529060010190602001808311610c6357829003601f168201915b5050505050905090565b6000610c95826125c4565b610cd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccb90614864565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d1a8261166f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8290614744565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610daa6125d1565b73ffffffffffffffffffffffffffffffffffffffff161480610dd95750610dd881610dd36125d1565b6123c8565b5b610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f906145e4565b60405180910390fd5b610e238383836125d9565b505050565b600a5481565b60008054905090565b610e3f6125d1565b73ffffffffffffffffffffffffffffffffffffffff16610e5d611a96565b73ffffffffffffffffffffffffffffffffffffffff1614610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaa906146a4565b60405180910390fd5b8060138190555050565b610ec883838361268b565b505050565b600b6020528060005260406000206000915090505481565b610eed6125d1565b73ffffffffffffffffffffffffffffffffffffffff16610f0b611a96565b73ffffffffffffffffffffffffffffffffffffffff1614610f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f58906146a4565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b600e60019054906101000a900460ff16610fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd390614764565b60405180910390fd5b601054600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561108d576000601054826110359190614ad3565b9050601454816110459190614a45565b341015611087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107e90614624565b60405180910390fd5b506110de565b6014548161109b9190614a45565b3410156110dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d490614664565b60405180910390fd5b5b60125481600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461112c91906149be565b111561116d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116490614804565b60405180910390fd5b6011548111156111b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a9906147c4565b60405180910390fd5b601354816111be610e2e565b6111c891906149be565b1115611209576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120090614684565b60405180910390fd5b80600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461125891906149be565b925050819055506112693382612c44565b50565b600f5481565b600061127d836117ce565b82106112be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b590614504565b60405180910390fd5b60006112c8610e2e565b905060008060005b8381101561142e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146113c257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561141a578684141561140b57819550505050505061146a565b838061141690614c70565b9450505b50808061142690614c70565b9150506112d0565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146190614824565b60405180910390fd5b92915050565b6114786125d1565b73ffffffffffffffffffffffffffffffffffffffff16611496611a96565b73ffffffffffffffffffffffffffffffffffffffff16146114ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e3906146a4565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015611549573d6000803e3d6000fd5b50565b61156783838360405180602001604052806000815250611e01565b505050565b60125481565b600c6020528060005260406000206000915090505481565b6000611594610e2e565b82106115d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cc90614564565b60405180910390fd5b819050919050565b6115e56125d1565b73ffffffffffffffffffffffffffffffffffffffff16611603611a96565b73ffffffffffffffffffffffffffffffffffffffff1614611659576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611650906146a4565b60405180910390fd5b8181600d919061166a92919061395b565b505050565b600061167a82612c62565b600001519050919050565b61168d6125d1565b73ffffffffffffffffffffffffffffffffffffffff166116ab611a96565b73ffffffffffffffffffffffffffffffffffffffff1614611701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f8906146a4565b60405180910390fd5b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b600d805461173a90614c0d565b80601f016020809104026020016040519081016040528092919081815260200182805461176690614c0d565b80156117b35780601f10611788576101008083540402835291602001916117b3565b820191906000526020600020905b81548152906001019060200180831161179657829003601f168201915b505050505081565b600e60019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561183f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183690614604565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6118bf6125d1565b73ffffffffffffffffffffffffffffffffffffffff166118dd611a96565b73ffffffffffffffffffffffffffffffffffffffff1614611933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192a906146a4565b60405180910390fd5b61193d6000612e65565b565b6119476125d1565b73ffffffffffffffffffffffffffffffffffffffff16611965611a96565b73ffffffffffffffffffffffffffffffffffffffff16146119bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b2906146a4565b60405180910390fd5b80600f8190555050565b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b611a146125d1565b73ffffffffffffffffffffffffffffffffffffffff16611a32611a96565b73ffffffffffffffffffffffffffffffffffffffff1614611a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7f906146a4565b60405180910390fd5b611a928282612c44565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611ac86125d1565b73ffffffffffffffffffffffffffffffffffffffff16611ae6611a96565b73ffffffffffffffffffffffffffffffffffffffff1614611b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b33906146a4565b60405180910390fd5b611b463382612c44565b50565b611b516125d1565b73ffffffffffffffffffffffffffffffffffffffff16611b6f611a96565b73ffffffffffffffffffffffffffffffffffffffff1614611bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbc906146a4565b60405180910390fd5b8060148190555050565b606060028054611bde90614c0d565b80601f0160208091040260200160405190810160405280929190818152602001828054611c0a90614c0d565b8015611c575780601f10611c2c57610100808354040283529160200191611c57565b820191906000526020600020905b815481529060010190602001808311611c3a57829003601f168201915b5050505050905090565b611c696125d1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cce90614704565b60405180910390fd5b8060066000611ce46125d1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d916125d1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611dd691906144ac565b60405180910390a35050565b600e60009054906101000a900460ff1681565b60145481565b60105481565b611e0c84848461268b565b611e1884848484612f2b565b611e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4e90614784565b60405180910390fd5b50505050565b611e656125d1565b73ffffffffffffffffffffffffffffffffffffffff16611e83611a96565b73ffffffffffffffffffffffffffffffffffffffff1614611ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed0906146a4565b60405180910390fd5b8060118190555050565b6060611eee826125c4565b611f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f24906146e4565b60405180910390fd5b6000611f376130c2565b90506000815111611f575760405180602001604052806000815250611f82565b80611f6184613154565b604051602001611f72929190614421565b6040516020818303038152906040525b915050919050565b600e60009054906101000a900460ff16611fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd0906146c4565b60405180910390fd5b601054600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561208a576000601054846120329190614ad3565b9050601454816120429190614a45565b341015612084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207b90614624565b60405180910390fd5b506120db565b601454836120989190614a45565b3410156120da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d1906148a4565b60405180910390fd5b5b60125483600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461212991906149be565b111561216a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216190614804565b60405180910390fd5b6011548311156121af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a6906147c4565b60405180910390fd5b6000336040516020016121c29190614406565b604051602081830303815290604052805190602001209050612228838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f54836132b5565b612267576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225e906145a4565b60405180910390fd5b60135484612273610e2e565b61227d91906149be565b11156122be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b590614684565b60405180910390fd5b83600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461230d91906149be565b9250508190555061231e3385612c44565b50505050565b60135481565b60075481565b600061233b826132cc565b9050919050565b61234a6125d1565b73ffffffffffffffffffffffffffffffffffffffff16612368611a96565b73ffffffffffffffffffffffffffffffffffffffff16146123be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b5906146a4565b60405180910390fd5b8060128190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124646125d1565b73ffffffffffffffffffffffffffffffffffffffff16612482611a96565b73ffffffffffffffffffffffffffffffffffffffff16146124d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cf906146a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253f90614524565b60405180910390fd5b61255181612e65565b50565b60115481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061269682612c62565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166126bd6125d1565b73ffffffffffffffffffffffffffffffffffffffff16148061271957506126e26125d1565b73ffffffffffffffffffffffffffffffffffffffff1661270184610c8a565b73ffffffffffffffffffffffffffffffffffffffff16145b806127355750612734826000015161272f6125d1565b6123c8565b5b905080612777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276e90614724565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146127e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e090614644565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612859576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285090614584565b60405180910390fd5b61286685858560016133b5565b61287660008484600001516125d9565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166128e49190614a9f565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166129889190614978565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612a8e91906149be565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612bd457612b04816125c4565b15612bd3576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c3c86868660016133bb565b505050505050565b612c5e8282604051806020016040528060008152506133c1565b5050565b612c6a6139e1565b612c73826125c4565b612cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca990614544565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a8310612d165760017f000000000000000000000000000000000000000000000000000000000000000a84612d099190614ad3565b612d1391906149be565b90505b60008390505b818110612e24576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e1057809350505050612e60565b508080612e1c90614be3565b915050612d1c565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5790614844565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612f4c8473ffffffffffffffffffffffffffffffffffffffff166138a0565b156130b5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f756125d1565b8786866040518563ffffffff1660e01b8152600401612f979493929190614460565b602060405180830381600087803b158015612fb157600080fd5b505af1925050508015612fe257506040513d601f19601f82011682018060405250810190612fdf9190613def565b60015b613065573d8060008114613012576040519150601f19603f3d011682016040523d82523d6000602084013e613017565b606091505b5060008151141561305d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305490614784565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130ba565b600190505b949350505050565b6060600d80546130d190614c0d565b80601f01602080910402602001604051908101604052809291908181526020018280546130fd90614c0d565b801561314a5780601f1061311f5761010080835404028352916020019161314a565b820191906000526020600020905b81548152906001019060200180831161312d57829003601f168201915b5050505050905090565b6060600082141561319c576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132b0565b600082905060005b600082146131ce5780806131b790614c70565b915050600a826131c79190614a14565b91506131a4565b60008167ffffffffffffffff8111156131ea576131e9614dca565b5b6040519080825280601f01601f19166020018201604052801561321c5781602001600182028036833780820191505090505b5090505b600085146132a9576001826132359190614ad3565b9150600a856132449190614cdd565b603061325091906149be565b60f81b81838151811061326657613265614d9b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132a29190614a14565b9450613220565b8093505050505b919050565b6000826132c285846138c3565b1490509392505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561333d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613334906145c4565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342e906147e4565b60405180910390fd5b613440816125c4565b15613480576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613477906147a4565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a8311156134e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134da90614884565b60405180910390fd5b6134f060008583866133b5565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516135ed9190614978565b6fffffffffffffffffffffffffffffffff1681526020018583602001516136149190614978565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561388357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46138236000888488612f2b565b613862576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161385990614784565b60405180910390fd5b818061386d90614c70565b925050808061387b90614c70565b9150506137b2565b508060008190555061389860008785886133bb565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008082905060005b845181101561390e576138f9828683815181106138ec576138eb614d9b565b5b6020026020010151613919565b9150808061390690614c70565b9150506138cc565b508091505092915050565b60008183106139315761392c8284613944565b61393c565b61393b8383613944565b5b905092915050565b600082600052816020526040600020905092915050565b82805461396790614c0d565b90600052602060002090601f01602090048101928261398957600085556139d0565b82601f106139a257803560ff19168380011785556139d0565b828001600101855582156139d0579182015b828111156139cf5782358255916020019190600101906139b4565b5b5090506139dd9190613a1b565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613a34576000816000905550600101613a1c565b5090565b6000613a4b613a4684614904565b6148df565b905082815260208101848484011115613a6757613a66614e08565b5b613a72848285614ba1565b509392505050565b600081359050613a8981615621565b92915050565b60008083601f840112613aa557613aa4614dfe565b5b8235905067ffffffffffffffff811115613ac257613ac1614df9565b5b602083019150836020820283011115613ade57613add614e03565b5b9250929050565b600081359050613af481615638565b92915050565b600081359050613b098161564f565b92915050565b600081359050613b1e81615666565b92915050565b600081519050613b3381615666565b92915050565b600082601f830112613b4e57613b4d614dfe565b5b8135613b5e848260208601613a38565b91505092915050565b60008083601f840112613b7d57613b7c614dfe565b5b8235905067ffffffffffffffff811115613b9a57613b99614df9565b5b602083019150836001820283011115613bb657613bb5614e03565b5b9250929050565b600081359050613bcc8161567d565b92915050565b600060208284031215613be857613be7614e12565b5b6000613bf684828501613a7a565b91505092915050565b60008060408385031215613c1657613c15614e12565b5b6000613c2485828601613a7a565b9250506020613c3585828601613a7a565b9150509250929050565b600080600060608486031215613c5857613c57614e12565b5b6000613c6686828701613a7a565b9350506020613c7786828701613a7a565b9250506040613c8886828701613bbd565b9150509250925092565b60008060008060808587031215613cac57613cab614e12565b5b6000613cba87828801613a7a565b9450506020613ccb87828801613a7a565b9350506040613cdc87828801613bbd565b925050606085013567ffffffffffffffff811115613cfd57613cfc614e0d565b5b613d0987828801613b39565b91505092959194509250565b60008060408385031215613d2c57613d2b614e12565b5b6000613d3a85828601613a7a565b9250506020613d4b85828601613ae5565b9150509250929050565b60008060408385031215613d6c57613d6b614e12565b5b6000613d7a85828601613a7a565b9250506020613d8b85828601613bbd565b9150509250929050565b600060208284031215613dab57613daa614e12565b5b6000613db984828501613afa565b91505092915050565b600060208284031215613dd857613dd7614e12565b5b6000613de684828501613b0f565b91505092915050565b600060208284031215613e0557613e04614e12565b5b6000613e1384828501613b24565b91505092915050565b60008060208385031215613e3357613e32614e12565b5b600083013567ffffffffffffffff811115613e5157613e50614e0d565b5b613e5d85828601613b67565b92509250509250929050565b600060208284031215613e7f57613e7e614e12565b5b6000613e8d84828501613bbd565b91505092915050565b600080600060408486031215613eaf57613eae614e12565b5b6000613ebd86828701613bbd565b935050602084013567ffffffffffffffff811115613ede57613edd614e0d565b5b613eea86828701613a8f565b92509250509250925092565b613eff81614b07565b82525050565b613f16613f1182614b07565b614cb9565b82525050565b613f2581614b19565b82525050565b613f3481614b25565b82525050565b6000613f4582614935565b613f4f818561494b565b9350613f5f818560208601614bb0565b613f6881614e17565b840191505092915050565b6000613f7e82614940565b613f88818561495c565b9350613f98818560208601614bb0565b613fa181614e17565b840191505092915050565b6000613fb782614940565b613fc1818561496d565b9350613fd1818560208601614bb0565b80840191505092915050565b6000613fea60228361495c565b9150613ff582614e35565b604082019050919050565b600061400d60268361495c565b915061401882614e84565b604082019050919050565b6000614030602a8361495c565b915061403b82614ed3565b604082019050919050565b600061405360238361495c565b915061405e82614f22565b604082019050919050565b600061407660258361495c565b915061408182614f71565b604082019050919050565b6000614099601d8361495c565b91506140a482614fc0565b602082019050919050565b60006140bc60318361495c565b91506140c782614fe9565b604082019050919050565b60006140df60398361495c565b91506140ea82615038565b604082019050919050565b6000614102602b8361495c565b915061410d82615087565b604082019050919050565b600061412560268361495c565b9150614130826150d6565b604082019050919050565b600061414860268361495c565b915061415382615125565b604082019050919050565b600061416b60228361495c565b915061417682615174565b604082019050919050565b600061418e60198361495c565b9150614199826151c3565b602082019050919050565b60006141b160208361495c565b91506141bc826151ec565b602082019050919050565b60006141d460228361495c565b91506141df82615215565b604082019050919050565b60006141f7602f8361495c565b915061420282615264565b604082019050919050565b600061421a601a8361495c565b9150614225826152b3565b602082019050919050565b600061423d60328361495c565b9150614248826152dc565b604082019050919050565b600061426060228361495c565b915061426b8261532b565b604082019050919050565b6000614283601f8361495c565b915061428e8261537a565b602082019050919050565b60006142a660338361495c565b91506142b1826153a3565b604082019050919050565b60006142c9601d8361495c565b91506142d4826153f2565b602082019050919050565b60006142ec60208361495c565b91506142f78261541b565b602082019050919050565b600061430f60218361495c565b915061431a82615444565b604082019050919050565b600061433260198361495c565b915061433d82615493565b602082019050919050565b6000614355602e8361495c565b9150614360826154bc565b604082019050919050565b6000614378602f8361495c565b91506143838261550b565b604082019050919050565b600061439b602d8361495c565b91506143a68261555a565b604082019050919050565b60006143be60228361495c565b91506143c9826155a9565b604082019050919050565b60006143e1601b8361495c565b91506143ec826155f8565b602082019050919050565b61440081614b97565b82525050565b60006144128284613f05565b60148201915081905092915050565b600061442d8285613fac565b91506144398284613fac565b91508190509392505050565b600060208201905061445a6000830184613ef6565b92915050565b60006080820190506144756000830187613ef6565b6144826020830186613ef6565b61448f60408301856143f7565b81810360608301526144a18184613f3a565b905095945050505050565b60006020820190506144c16000830184613f1c565b92915050565b60006020820190506144dc6000830184613f2b565b92915050565b600060208201905081810360008301526144fc8184613f73565b905092915050565b6000602082019050818103600083015261451d81613fdd565b9050919050565b6000602082019050818103600083015261453d81614000565b9050919050565b6000602082019050818103600083015261455d81614023565b9050919050565b6000602082019050818103600083015261457d81614046565b9050919050565b6000602082019050818103600083015261459d81614069565b9050919050565b600060208201905081810360008301526145bd8161408c565b9050919050565b600060208201905081810360008301526145dd816140af565b9050919050565b600060208201905081810360008301526145fd816140d2565b9050919050565b6000602082019050818103600083015261461d816140f5565b9050919050565b6000602082019050818103600083015261463d81614118565b9050919050565b6000602082019050818103600083015261465d8161413b565b9050919050565b6000602082019050818103600083015261467d8161415e565b9050919050565b6000602082019050818103600083015261469d81614181565b9050919050565b600060208201905081810360008301526146bd816141a4565b9050919050565b600060208201905081810360008301526146dd816141c7565b9050919050565b600060208201905081810360008301526146fd816141ea565b9050919050565b6000602082019050818103600083015261471d8161420d565b9050919050565b6000602082019050818103600083015261473d81614230565b9050919050565b6000602082019050818103600083015261475d81614253565b9050919050565b6000602082019050818103600083015261477d81614276565b9050919050565b6000602082019050818103600083015261479d81614299565b9050919050565b600060208201905081810360008301526147bd816142bc565b9050919050565b600060208201905081810360008301526147dd816142df565b9050919050565b600060208201905081810360008301526147fd81614302565b9050919050565b6000602082019050818103600083015261481d81614325565b9050919050565b6000602082019050818103600083015261483d81614348565b9050919050565b6000602082019050818103600083015261485d8161436b565b9050919050565b6000602082019050818103600083015261487d8161438e565b9050919050565b6000602082019050818103600083015261489d816143b1565b9050919050565b600060208201905081810360008301526148bd816143d4565b9050919050565b60006020820190506148d960008301846143f7565b92915050565b60006148e96148fa565b90506148f58282614c3f565b919050565b6000604051905090565b600067ffffffffffffffff82111561491f5761491e614dca565b5b61492882614e17565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061498382614b5b565b915061498e83614b5b565b9250826fffffffffffffffffffffffffffffffff038211156149b3576149b2614d0e565b5b828201905092915050565b60006149c982614b97565b91506149d483614b97565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a0957614a08614d0e565b5b828201905092915050565b6000614a1f82614b97565b9150614a2a83614b97565b925082614a3a57614a39614d3d565b5b828204905092915050565b6000614a5082614b97565b9150614a5b83614b97565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a9457614a93614d0e565b5b828202905092915050565b6000614aaa82614b5b565b9150614ab583614b5b565b925082821015614ac857614ac7614d0e565b5b828203905092915050565b6000614ade82614b97565b9150614ae983614b97565b925082821015614afc57614afb614d0e565b5b828203905092915050565b6000614b1282614b77565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614bce578082015181840152602081019050614bb3565b83811115614bdd576000848401525b50505050565b6000614bee82614b97565b91506000821415614c0257614c01614d0e565b5b600182039050919050565b60006002820490506001821680614c2557607f821691505b60208210811415614c3957614c38614d6c565b5b50919050565b614c4882614e17565b810181811067ffffffffffffffff82111715614c6757614c66614dca565b5b80604052505050565b6000614c7b82614b97565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614cae57614cad614d0e565b5b600182019050919050565b6000614cc482614ccb565b9050919050565b6000614cd682614e28565b9050919050565b6000614ce882614b97565b9150614cf383614b97565b925082614d0357614d02614d3d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f43726f637367616e673a204e6f7420696e2077686974656c6973746564000000600082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f43726f637367616e673a20496e73756666696369656e742045746820436c616960008201527f6d20467265650000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f43726f637367616e673a20496e73756666696369656e7420457468204e6f726d60008201527f616c000000000000000000000000000000000000000000000000000000000000602082015250565b7f43726f637367616e673a2057652041726520536f6c646f757400000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43726f637367616e673a204d696e74696e672057686974656c6973742050617560008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f43726f637367616e673a204d696e74696e67205075626c696320506175736500600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f43726f637367616e673a204c696d697420506572205472616e73616374696f6e600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f43726f637367616e673a204d6178205065722057616c6c657400000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f43726f637367616e673a20496e73756666696369656e74204574680000000000600082015250565b61562a81614b07565b811461563557600080fd5b50565b61564181614b19565b811461564c57600080fd5b50565b61565881614b25565b811461566357600080fd5b50565b61566f81614b2f565b811461567a57600080fd5b50565b61568681614b97565b811461569157600080fd5b5056fea26469706673582212202b21f24a7041ec54bab8a652776030c23031ce82385d3468696b5fa6fdaed1b664736f6c63430008070033

Deployed Bytecode Sourcemap

275:4019:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4251:370:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5977:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7502:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7065:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;340:18:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2812:94:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4065:102:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8352:142:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;365:48:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3505:116;;;;;;;;;;;;;:::i;:::-;;1910:799;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;599:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3443:744:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4175:116:12;;;;;;;;;;;;;:::i;:::-;;8557:157:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;694:28:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;420:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2975:177:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3629:102:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5800:118:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3392:107:12;;;;;;;;;;;;;:::i;:::-;;478:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;555:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4677:211:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1668:101:0;;;;;;;;;;;;;:::i;:::-;;3069:90:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2721:105;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3167:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1036:85:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3278:106:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3739:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6132:98:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7770:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;508:40:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;764:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;631:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8777:311:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3837:98:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6293:394:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;890:1012:12;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;729:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13192:43:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2832:113:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3943:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8107:186:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1918:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;661:24:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;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;340:18:12:-;;;;:::o;2812:94:13:-;2865:7;2888:12;;2881:19;;2812:94;:::o;4065:102:12:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4149:10:12::1;4137:9;:22;;;;4065:102:::0;:::o;8352:142:13:-;8460:28;8470:4;8476:2;8480:7;8460:9;:28::i;:::-;8352:142;;;:::o;365:48:12:-;;;;;;;;;;;;;;;;;:::o;3505:116::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3593:20:12::1;;;;;;;;;;;3592:21;3569:20;;:44;;;;;;;;;;;;;;;;;;3505:116::o:0;1910:799::-;1984:17;;;;;;;;;;;1976:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;2078:7;;2051:12;:24;2064:10;2051:24;;;;;;;;;;;;;;;;:34;2048:330;;;2111:17;2137:7;;2131:3;:13;;;;:::i;:::-;2111:33;;2191:9;;2179;:21;;;;:::i;:::-;2166:9;:34;;2158:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;2097:157;2048:330;;;2319:9;;2313:3;:15;;;;:::i;:::-;2300:9;:28;;2292:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;2048:330;2430:12;;2423:3;2396:12;:24;2409:10;2396:24;;;;;;;;;;;;;;;;:30;;;;:::i;:::-;:46;;2388:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;2497:8;;2490:3;:15;;2482:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;2584:9;;2577:3;2561:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;2553:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;2661:3;2633:12;:24;2646:10;2633:24;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;2675:26;2685:10;2697:3;2675:9;:26::i;:::-;1910:799;:::o;599: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;4175:116:12:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4231:10:12::1;4223:28;;:60;4268:4;4252:30;;;4223:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;4175:116::o:0;8557:157:13:-;8669:39;8686:4;8692:2;8696:7;8669:39;;;;;;;;;;;;:16;:39::i;:::-;8557:157;;;:::o;694:28:12:-;;;;:::o;420: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;3629:102:12:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3715:8:12::1;;3705:7;:18;;;;;;;:::i;:::-;;3629:102:::0;;:::o;5800:118:13:-;5864:7;5887:20;5899:7;5887:11;:20::i;:::-;:25;;;5880:32;;5800:118;;;:::o;3392:107:12:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3474:17:12::1;;;;;;;;;;;3473:18;3453:17;;:38;;;;;;;;;;;;;;;;;;3392:107::o:0;478:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;555: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;3069:90:12:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3147:4:12::1;3134:10;:17;;;;3069:90:::0;:::o;2721:105::-;2767:7;2794:12;:24;2807:10;2794:24;;;;;;;;;;;;;;;;2787:31;;2721:105;:::o;3167:103::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3244:18:12::1;3254:2;3258:3;3244:9;:18::i;:::-;3167:103:::0;;:::o;1036:85:0:-;1082:7;1108:6;;;;;;;;;;;1101:13;;1036:85;:::o;3278:106:12:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3350:26:12::1;3360:10;3372:3;3350:9;:26::i;:::-;3278:106:::0;:::o;3739:90::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3815:6:12::1;3803:9;:18;;;;3739:90:::0;:::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;508:40:12:-;;;;;;;;;;;;;:::o;764:41::-;;;;:::o;631:23::-;;;;:::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;3837:98:12:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3918:9:12::1;3907:8;:20;;;;3837: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;890:1012:12:-;1001:20;;;;;;;;;;;993:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;1104:7;;1074:15;:27;1090:10;1074:27;;;;;;;;;;;;;;;;:37;1071:326;;;1137:17;1163:7;;1157:3;:13;;;;:::i;:::-;1137:33;;1217:9;;1205;:21;;;;:::i;:::-;1192:9;:34;;1184:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;1123:157;1071:326;;;1345:9;;1339:3;:15;;;;:::i;:::-;1326:9;:28;;1318:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;1071:326;1452:12;;1445:3;1415:15;:27;1431:10;1415:27;;;;;;;;;;;;;;;;:33;;;;:::i;:::-;:49;;1407:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;1519:8;;1512:3;:15;;1504:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;1575:12;1617:10;1600:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;1590:39;;;;;;1575:54;;1648:50;1667:12;;1648:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1681:10;;1693:4;1648:18;:50::i;:::-;1640:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;1774:9;;1767:3;1751:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;1743:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;1854:3;1823:15;:27;1839:10;1823:27;;;;;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;1868:26;1878:10;1890:3;1868:9;:26::i;:::-;981:921;890:1012;;;:::o;729:28::-;;;;:::o;13192:43:13:-;;;;:::o;2832:113:12:-;2890:7;2917:20;2931:5;2917:13;:20::i;:::-;2910:27;;2832:113;;;:::o;3943:114::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4036:13:12::1;4021:12;:28;;;;3943: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;661:24:12:-;;;;:::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;640:96:7:-;693:7;719:10;712:17;;640:96;:::o;13014:172:13:-;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;9438:98::-;9503:27;9513:2;9517:8;9503:27;;;;;;;;;;;;:9;:27::i;:::-;9438:98;;:::o;5140:606::-;5216:21;;:::i;:::-;5257:16;5265:7;5257;:16::i;:::-;5249:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;5329:26;5377:12;5366:7;:23;5362:93;;5446:1;5431:12;5421:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;5400:47;;5362:93;5468:12;5483:7;5468:22;;5463:212;5500:18;5492:4;:26;5463:212;;5537:31;5571:11;:17;5583:4;5571:17;;;;;;;;;;;5537:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5627:1;5601:28;;:9;:14;;;:28;;;5597:71;;5649:9;5642:16;;;;;;;5597:71;5528:147;5520:6;;;;;:::i;:::-;;;;5463:212;;;;5683:57;;;;;;;;;;:::i;:::-;;;;;;;;5140:606;;;;:::o;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;2953:108:12:-;3013:13;3046:7;3039:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2953: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;15881:141::-;;;;;:::o;16408:140::-;;;;;:::o;9875:1272::-;9980:20;10003:12;;9980:35;;10044:1;10030:16;;:2;:16;;;;10022:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;10221:21;10229:12;10221:7;:21::i;:::-;10220:22;10212:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;10303:12;10291:8;:24;;10283:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;10363:61;10393:1;10397:2;10401:12;10415:8;10363:21;:61::i;:::-;10433:30;10466:12;:16;10479:2;10466:16;;;;;;;;;;;;;;;10433:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10508:119;;;;;;;;10558:8;10528:11;:19;;;:39;;;;:::i;:::-;10508:119;;;;;;10611:8;10576:11;:24;;;:44;;;;:::i;:::-;10508:119;;;;;10489:12;:16;10502:2;10489:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10662:43;;;;;;;;10677:2;10662:43;;;;;;10688:15;10662:43;;;;;10634:11;:25;10646:12;10634:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10714:20;10737:12;10714:35;;10763:9;10758:281;10782:8;10778:1;:12;10758:281;;;10836:12;10832:2;10811:38;;10828:1;10811:38;;;;;;;;;;;;10876:59;10907:1;10911:2;10915:12;10929:5;10876:22;:59::i;:::-;10858:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;11017:14;;;;;:::i;:::-;;;;10792:3;;;;;:::i;:::-;;;;10758:281;;;;11062:12;11047;:27;;;;11081:60;11110:1;11114:2;11118:12;11132:8;11081:20;:60::i;:::-;9973:1174;;;9875:1272;;;:::o;1175:320:6:-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;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:118::-;21646:24;21664:5;21646:24;:::i;:::-;21641:3;21634:37;21559:118;;:::o;21683:256::-;21795:3;21810:75;21881:3;21872:6;21810:75;:::i;:::-;21910:2;21905:3;21901:12;21894:19;;21930:3;21923:10;;21683:256;;;;:::o;21945:435::-;22125:3;22147:95;22238:3;22229:6;22147:95;:::i;:::-;22140:102;;22259:95;22350:3;22341:6;22259:95;:::i;:::-;22252:102;;22371:3;22364:10;;21945:435;;;;;:::o;22386:222::-;22479:4;22517:2;22506:9;22502:18;22494:26;;22530:71;22598:1;22587:9;22583:17;22574:6;22530:71;:::i;:::-;22386:222;;;;:::o;22614:640::-;22809:4;22847:3;22836:9;22832:19;22824:27;;22861:71;22929:1;22918:9;22914:17;22905:6;22861:71;:::i;:::-;22942:72;23010:2;22999:9;22995:18;22986:6;22942:72;:::i;:::-;23024;23092:2;23081:9;23077:18;23068:6;23024:72;:::i;:::-;23143:9;23137:4;23133:20;23128:2;23117:9;23113:18;23106:48;23171:76;23242:4;23233:6;23171:76;:::i;:::-;23163:84;;22614:640;;;;;;;:::o;23260:210::-;23347:4;23385:2;23374:9;23370:18;23362:26;;23398:65;23460:1;23449:9;23445:17;23436:6;23398:65;:::i;:::-;23260:210;;;;:::o;23476:222::-;23569:4;23607:2;23596:9;23592:18;23584:26;;23620:71;23688:1;23677:9;23673:17;23664:6;23620:71;:::i;:::-;23476:222;;;;:::o;23704:313::-;23817:4;23855:2;23844:9;23840:18;23832:26;;23904:9;23898:4;23894:20;23890:1;23879:9;23875:17;23868:47;23932:78;24005:4;23996:6;23932:78;:::i;:::-;23924:86;;23704:313;;;;:::o;24023:419::-;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:131;24430:4;24304:131;:::i;:::-;24296:139;;24023:419;;;:::o;24448:::-;24614:4;24652:2;24641:9;24637:18;24629:26;;24701:9;24695:4;24691:20;24687:1;24676:9;24672:17;24665:47;24729:131;24855:4;24729:131;:::i;:::-;24721:139;;24448:419;;;:::o;24873:::-;25039:4;25077:2;25066:9;25062:18;25054:26;;25126:9;25120:4;25116:20;25112:1;25101:9;25097:17;25090:47;25154:131;25280:4;25154:131;:::i;:::-;25146:139;;24873:419;;;:::o;25298:::-;25464:4;25502:2;25491:9;25487:18;25479:26;;25551:9;25545:4;25541:20;25537:1;25526:9;25522:17;25515:47;25579:131;25705:4;25579:131;:::i;:::-;25571:139;;25298:419;;;:::o;25723:::-;25889:4;25927:2;25916:9;25912:18;25904:26;;25976:9;25970:4;25966:20;25962:1;25951:9;25947:17;25940:47;26004:131;26130:4;26004:131;:::i;:::-;25996:139;;25723:419;;;:::o;26148:::-;26314:4;26352:2;26341:9;26337:18;26329:26;;26401:9;26395:4;26391:20;26387:1;26376:9;26372:17;26365:47;26429:131;26555:4;26429:131;:::i;:::-;26421:139;;26148:419;;;:::o;26573:::-;26739:4;26777:2;26766:9;26762:18;26754:26;;26826:9;26820:4;26816:20;26812:1;26801:9;26797:17;26790:47;26854:131;26980:4;26854:131;:::i;:::-;26846:139;;26573:419;;;:::o;26998:::-;27164:4;27202:2;27191:9;27187:18;27179:26;;27251:9;27245:4;27241:20;27237:1;27226:9;27222:17;27215:47;27279:131;27405:4;27279:131;:::i;:::-;27271:139;;26998:419;;;:::o;27423:::-;27589:4;27627:2;27616:9;27612:18;27604:26;;27676:9;27670:4;27666:20;27662:1;27651:9;27647:17;27640:47;27704:131;27830:4;27704:131;:::i;:::-;27696:139;;27423:419;;;:::o;27848:::-;28014:4;28052:2;28041:9;28037:18;28029:26;;28101:9;28095:4;28091:20;28087:1;28076:9;28072:17;28065:47;28129:131;28255:4;28129:131;:::i;:::-;28121:139;;27848:419;;;:::o;28273:::-;28439:4;28477:2;28466:9;28462:18;28454:26;;28526:9;28520:4;28516:20;28512:1;28501:9;28497:17;28490:47;28554:131;28680:4;28554:131;:::i;:::-;28546:139;;28273:419;;;:::o;28698:::-;28864:4;28902:2;28891:9;28887:18;28879:26;;28951:9;28945:4;28941:20;28937:1;28926:9;28922:17;28915:47;28979:131;29105:4;28979:131;:::i;:::-;28971:139;;28698:419;;;:::o;29123:::-;29289:4;29327:2;29316:9;29312:18;29304:26;;29376:9;29370:4;29366:20;29362:1;29351:9;29347:17;29340:47;29404:131;29530:4;29404:131;:::i;:::-;29396:139;;29123:419;;;:::o;29548:::-;29714:4;29752:2;29741:9;29737:18;29729:26;;29801:9;29795:4;29791:20;29787:1;29776:9;29772:17;29765:47;29829:131;29955:4;29829:131;:::i;:::-;29821:139;;29548:419;;;:::o;29973:::-;30139:4;30177:2;30166:9;30162:18;30154:26;;30226:9;30220:4;30216:20;30212:1;30201:9;30197:17;30190:47;30254:131;30380:4;30254:131;:::i;:::-;30246:139;;29973:419;;;:::o;30398:::-;30564:4;30602:2;30591:9;30587:18;30579:26;;30651:9;30645:4;30641:20;30637:1;30626:9;30622:17;30615:47;30679:131;30805:4;30679:131;:::i;:::-;30671:139;;30398:419;;;:::o;30823:::-;30989:4;31027:2;31016:9;31012:18;31004:26;;31076:9;31070:4;31066:20;31062:1;31051:9;31047:17;31040:47;31104:131;31230:4;31104:131;:::i;:::-;31096:139;;30823:419;;;:::o;31248:::-;31414:4;31452:2;31441:9;31437:18;31429:26;;31501:9;31495:4;31491:20;31487:1;31476:9;31472:17;31465:47;31529:131;31655:4;31529:131;:::i;:::-;31521:139;;31248:419;;;:::o;31673:::-;31839:4;31877:2;31866:9;31862:18;31854:26;;31926:9;31920:4;31916:20;31912:1;31901:9;31897:17;31890:47;31954:131;32080:4;31954:131;:::i;:::-;31946:139;;31673:419;;;:::o;32098:::-;32264:4;32302:2;32291:9;32287:18;32279:26;;32351:9;32345:4;32341:20;32337:1;32326:9;32322:17;32315:47;32379:131;32505:4;32379:131;:::i;:::-;32371:139;;32098:419;;;:::o;32523:::-;32689:4;32727:2;32716:9;32712:18;32704:26;;32776:9;32770:4;32766:20;32762:1;32751:9;32747:17;32740:47;32804:131;32930:4;32804:131;:::i;:::-;32796:139;;32523:419;;;:::o;32948:::-;33114:4;33152:2;33141:9;33137:18;33129:26;;33201:9;33195:4;33191:20;33187:1;33176:9;33172:17;33165:47;33229:131;33355:4;33229:131;:::i;:::-;33221:139;;32948:419;;;:::o;33373:::-;33539:4;33577:2;33566:9;33562:18;33554:26;;33626:9;33620:4;33616:20;33612:1;33601:9;33597:17;33590:47;33654:131;33780:4;33654:131;:::i;:::-;33646:139;;33373:419;;;:::o;33798:::-;33964:4;34002:2;33991:9;33987:18;33979:26;;34051:9;34045:4;34041:20;34037:1;34026:9;34022:17;34015:47;34079:131;34205:4;34079:131;:::i;:::-;34071:139;;33798:419;;;:::o;34223:::-;34389:4;34427:2;34416:9;34412:18;34404:26;;34476:9;34470:4;34466:20;34462:1;34451:9;34447:17;34440:47;34504:131;34630:4;34504:131;:::i;:::-;34496:139;;34223:419;;;:::o;34648:::-;34814:4;34852:2;34841:9;34837:18;34829:26;;34901:9;34895:4;34891:20;34887:1;34876:9;34872:17;34865:47;34929:131;35055:4;34929:131;:::i;:::-;34921:139;;34648:419;;;:::o;35073:::-;35239:4;35277:2;35266:9;35262:18;35254:26;;35326:9;35320:4;35316:20;35312:1;35301:9;35297:17;35290:47;35354:131;35480:4;35354:131;:::i;:::-;35346:139;;35073:419;;;:::o;35498:::-;35664:4;35702:2;35691:9;35687:18;35679:26;;35751:9;35745:4;35741:20;35737:1;35726:9;35722:17;35715:47;35779:131;35905:4;35779:131;:::i;:::-;35771:139;;35498:419;;;:::o;35923:::-;36089:4;36127:2;36116:9;36112:18;36104:26;;36176:9;36170:4;36166:20;36162:1;36151:9;36147:17;36140:47;36204:131;36330:4;36204:131;:::i;:::-;36196:139;;35923:419;;;:::o;36348:::-;36514:4;36552:2;36541:9;36537:18;36529:26;;36601:9;36595:4;36591:20;36587:1;36576:9;36572:17;36565:47;36629:131;36755:4;36629:131;:::i;:::-;36621:139;;36348:419;;;:::o;36773:222::-;36866:4;36904:2;36893:9;36889:18;36881:26;;36917:71;36985:1;36974:9;36970:17;36961:6;36917:71;:::i;:::-;36773:222;;;;:::o;37001:129::-;37035:6;37062:20;;:::i;:::-;37052:30;;37091:33;37119:4;37111:6;37091:33;:::i;:::-;37001:129;;;:::o;37136:75::-;37169:6;37202:2;37196:9;37186:19;;37136:75;:::o;37217:307::-;37278:4;37368:18;37360:6;37357:30;37354:56;;;37390:18;;:::i;:::-;37354:56;37428:29;37450:6;37428:29;:::i;:::-;37420:37;;37512:4;37506;37502:15;37494:23;;37217:307;;;:::o;37530:98::-;37581:6;37615:5;37609:12;37599:22;;37530:98;;;:::o;37634:99::-;37686:6;37720:5;37714:12;37704:22;;37634:99;;;:::o;37739:168::-;37822:11;37856:6;37851:3;37844:19;37896:4;37891:3;37887:14;37872:29;;37739:168;;;;:::o;37913:169::-;37997:11;38031:6;38026:3;38019:19;38071:4;38066:3;38062:14;38047:29;;37913:169;;;;:::o;38088:148::-;38190:11;38227:3;38212:18;;38088:148;;;;:::o;38242:273::-;38282:3;38301:20;38319:1;38301:20;:::i;:::-;38296:25;;38335:20;38353:1;38335:20;:::i;:::-;38330:25;;38457:1;38421:34;38417:42;38414:1;38411:49;38408:75;;;38463:18;;:::i;:::-;38408:75;38507:1;38504;38500:9;38493:16;;38242:273;;;;:::o;38521:305::-;38561:3;38580:20;38598:1;38580:20;:::i;:::-;38575:25;;38614:20;38632:1;38614:20;:::i;:::-;38609:25;;38768:1;38700:66;38696:74;38693:1;38690:81;38687:107;;;38774:18;;:::i;:::-;38687:107;38818:1;38815;38811:9;38804:16;;38521:305;;;;:::o;38832:185::-;38872:1;38889:20;38907:1;38889:20;:::i;:::-;38884:25;;38923:20;38941:1;38923:20;:::i;:::-;38918:25;;38962:1;38952:35;;38967:18;;:::i;:::-;38952:35;39009:1;39006;39002:9;38997:14;;38832:185;;;;:::o;39023:348::-;39063:7;39086:20;39104:1;39086:20;:::i;:::-;39081:25;;39120:20;39138:1;39120:20;:::i;:::-;39115:25;;39308:1;39240:66;39236:74;39233:1;39230:81;39225:1;39218:9;39211:17;39207:105;39204:131;;;39315:18;;:::i;:::-;39204:131;39363:1;39360;39356:9;39345:20;;39023:348;;;;:::o;39377:191::-;39417:4;39437:20;39455:1;39437:20;:::i;:::-;39432:25;;39471:20;39489:1;39471:20;:::i;:::-;39466:25;;39510:1;39507;39504:8;39501:34;;;39515:18;;:::i;:::-;39501:34;39560:1;39557;39553:9;39545:17;;39377:191;;;;:::o;39574:::-;39614:4;39634:20;39652:1;39634:20;:::i;:::-;39629:25;;39668:20;39686:1;39668:20;:::i;:::-;39663:25;;39707:1;39704;39701:8;39698:34;;;39712:18;;:::i;:::-;39698:34;39757:1;39754;39750:9;39742:17;;39574:191;;;;:::o;39771:96::-;39808:7;39837:24;39855:5;39837:24;:::i;:::-;39826:35;;39771:96;;;:::o;39873:90::-;39907:7;39950:5;39943:13;39936:21;39925:32;;39873:90;;;:::o;39969:77::-;40006:7;40035:5;40024:16;;39969:77;;;:::o;40052:149::-;40088:7;40128:66;40121:5;40117:78;40106:89;;40052:149;;;:::o;40207:118::-;40244:7;40284:34;40277:5;40273:46;40262:57;;40207:118;;;:::o;40331:126::-;40368:7;40408:42;40401:5;40397:54;40386:65;;40331:126;;;:::o;40463:77::-;40500:7;40529:5;40518:16;;40463:77;;;:::o;40546:154::-;40630:6;40625:3;40620;40607:30;40692:1;40683:6;40678:3;40674:16;40667:27;40546:154;;;:::o;40706:307::-;40774:1;40784:113;40798:6;40795:1;40792:13;40784:113;;;40883:1;40878:3;40874:11;40868:18;40864:1;40859:3;40855:11;40848:39;40820:2;40817:1;40813:10;40808:15;;40784:113;;;40915:6;40912:1;40909:13;40906:101;;;40995:1;40986:6;40981:3;40977:16;40970:27;40906:101;40755:258;40706:307;;;:::o;41019:171::-;41058:3;41081:24;41099:5;41081:24;:::i;:::-;41072:33;;41127:4;41120:5;41117:15;41114:41;;;41135:18;;:::i;:::-;41114:41;41182:1;41175:5;41171:13;41164:20;;41019:171;;;:::o;41196:320::-;41240:6;41277:1;41271:4;41267:12;41257:22;;41324:1;41318:4;41314:12;41345:18;41335:81;;41401:4;41393:6;41389:17;41379:27;;41335:81;41463:2;41455:6;41452:14;41432:18;41429:38;41426:84;;;41482:18;;:::i;:::-;41426:84;41247:269;41196:320;;;:::o;41522:281::-;41605:27;41627:4;41605:27;:::i;:::-;41597:6;41593:40;41735:6;41723:10;41720:22;41699:18;41687:10;41684:34;41681:62;41678:88;;;41746:18;;:::i;:::-;41678:88;41786:10;41782:2;41775:22;41565:238;41522:281;;:::o;41809:233::-;41848:3;41871:24;41889:5;41871:24;:::i;:::-;41862:33;;41917:66;41910:5;41907:77;41904:103;;;41987:18;;:::i;:::-;41904:103;42034:1;42027:5;42023:13;42016:20;;41809:233;;;:::o;42048:100::-;42087:7;42116:26;42136:5;42116:26;:::i;:::-;42105:37;;42048:100;;;:::o;42154:94::-;42193:7;42222:20;42236:5;42222:20;:::i;:::-;42211:31;;42154:94;;;:::o;42254:176::-;42286:1;42303:20;42321:1;42303:20;:::i;:::-;42298:25;;42337:20;42355:1;42337:20;:::i;:::-;42332:25;;42376:1;42366:35;;42381:18;;:::i;:::-;42366:35;42422:1;42419;42415:9;42410:14;;42254:176;;;;:::o;42436:180::-;42484:77;42481:1;42474:88;42581:4;42578:1;42571:15;42605:4;42602:1;42595:15;42622:180;42670:77;42667:1;42660:88;42767:4;42764:1;42757:15;42791:4;42788:1;42781:15;42808:180;42856:77;42853:1;42846:88;42953:4;42950:1;42943:15;42977:4;42974:1;42967:15;42994:180;43042:77;43039:1;43032:88;43139:4;43136:1;43129:15;43163:4;43160:1;43153:15;43180:180;43228:77;43225:1;43218:88;43325:4;43322:1;43315:15;43349:4;43346:1;43339:15;43366:117;43475:1;43472;43465:12;43489:117;43598:1;43595;43588:12;43612:117;43721:1;43718;43711:12;43735:117;43844:1;43841;43834:12;43858:117;43967:1;43964;43957:12;43981:117;44090:1;44087;44080:12;44104:102;44145:6;44196:2;44192:7;44187:2;44180:5;44176:14;44172:28;44162:38;;44104:102;;;:::o;44212:94::-;44245:8;44293:5;44289:2;44285:14;44264:35;;44212:94;;;:::o;44312:221::-;44452:34;44448:1;44440:6;44436:14;44429:58;44521:4;44516:2;44508:6;44504:15;44497:29;44312:221;:::o;44539:225::-;44679:34;44675:1;44667:6;44663:14;44656:58;44748:8;44743:2;44735:6;44731:15;44724:33;44539:225;:::o;44770:229::-;44910:34;44906:1;44898:6;44894:14;44887:58;44979:12;44974:2;44966:6;44962:15;44955:37;44770:229;:::o;45005:222::-;45145:34;45141:1;45133:6;45129:14;45122:58;45214:5;45209:2;45201:6;45197:15;45190:30;45005:222;:::o;45233:224::-;45373:34;45369:1;45361:6;45357:14;45350:58;45442:7;45437:2;45429:6;45425:15;45418:32;45233:224;:::o;45463:179::-;45603:31;45599:1;45591:6;45587:14;45580:55;45463:179;:::o;45648:236::-;45788:34;45784:1;45776:6;45772:14;45765:58;45857:19;45852:2;45844:6;45840:15;45833:44;45648:236;:::o;45890:244::-;46030:34;46026:1;46018:6;46014:14;46007:58;46099:27;46094:2;46086:6;46082:15;46075:52;45890:244;:::o;46140:230::-;46280:34;46276:1;46268:6;46264:14;46257:58;46349:13;46344:2;46336:6;46332:15;46325:38;46140:230;:::o;46376:225::-;46516:34;46512:1;46504:6;46500:14;46493:58;46585:8;46580:2;46572:6;46568:15;46561:33;46376:225;:::o;46607:::-;46747:34;46743:1;46735:6;46731:14;46724:58;46816:8;46811:2;46803:6;46799:15;46792:33;46607:225;:::o;46838:221::-;46978:34;46974:1;46966:6;46962:14;46955:58;47047:4;47042:2;47034:6;47030:15;47023:29;46838:221;:::o;47065:175::-;47205:27;47201:1;47193:6;47189:14;47182:51;47065:175;:::o;47246:182::-;47386:34;47382:1;47374:6;47370:14;47363:58;47246:182;:::o;47434:221::-;47574:34;47570:1;47562:6;47558:14;47551:58;47643:4;47638:2;47630:6;47626:15;47619:29;47434:221;:::o;47661:234::-;47801:34;47797:1;47789:6;47785:14;47778:58;47870:17;47865:2;47857:6;47853:15;47846:42;47661:234;:::o;47901:176::-;48041:28;48037:1;48029:6;48025:14;48018:52;47901:176;:::o;48083:237::-;48223:34;48219:1;48211:6;48207:14;48200:58;48292:20;48287:2;48279:6;48275:15;48268:45;48083:237;:::o;48326:221::-;48466:34;48462:1;48454:6;48450:14;48443:58;48535:4;48530:2;48522:6;48518:15;48511:29;48326:221;:::o;48553:181::-;48693:33;48689:1;48681:6;48677:14;48670:57;48553:181;:::o;48740:238::-;48880:34;48876:1;48868:6;48864:14;48857:58;48949:21;48944:2;48936:6;48932:15;48925:46;48740:238;:::o;48984:179::-;49124:31;49120:1;49112:6;49108:14;49101:55;48984:179;:::o;49169:182::-;49309:34;49305:1;49297:6;49293:14;49286:58;49169:182;:::o;49357:220::-;49497:34;49493:1;49485:6;49481:14;49474:58;49566:3;49561:2;49553:6;49549:15;49542:28;49357:220;:::o;49583:175::-;49723:27;49719:1;49711:6;49707:14;49700:51;49583:175;:::o;49764:233::-;49904:34;49900:1;49892:6;49888:14;49881:58;49973:16;49968:2;49960:6;49956:15;49949:41;49764:233;:::o;50003:234::-;50143:34;50139:1;50131:6;50127:14;50120:58;50212:17;50207:2;50199:6;50195:15;50188:42;50003:234;:::o;50243:232::-;50383:34;50379:1;50371:6;50367:14;50360:58;50452:15;50447:2;50439:6;50435:15;50428:40;50243:232;:::o;50481:221::-;50621:34;50617:1;50609:6;50605:14;50598:58;50690:4;50685:2;50677:6;50673:15;50666:29;50481:221;:::o;50708:177::-;50848:29;50844:1;50836:6;50832:14;50825:53;50708:177;:::o;50891:122::-;50964:24;50982:5;50964:24;:::i;:::-;50957:5;50954:35;50944:63;;51003:1;51000;50993:12;50944:63;50891:122;:::o;51019:116::-;51089:21;51104:5;51089:21;:::i;:::-;51082:5;51079:32;51069:60;;51125:1;51122;51115:12;51069:60;51019:116;:::o;51141:122::-;51214:24;51232:5;51214:24;:::i;:::-;51207:5;51204:35;51194:63;;51253:1;51250;51243:12;51194:63;51141:122;:::o;51269:120::-;51341:23;51358:5;51341:23;:::i;:::-;51334:5;51331:34;51321:62;;51379:1;51376;51369:12;51321:62;51269:120;:::o;51395:122::-;51468:24;51486:5;51468:24;:::i;:::-;51461:5;51458:35;51448:63;;51507:1;51504;51497:12;51448:63;51395:122;:::o

Swarm Source

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