ETH Price: $2,358.90 (+0.76%)

Token

Mini Robots (BOT)
 

Overview

Max Total Supply

203 BOT

Holders

28

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 BOT
0x5248c07204874232515f1B0498aA3acC26Fd5eb1
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:
MiniRobots

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

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

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

contract MiniRobots is Ownable, ERC721A, ReentrancyGuard {


    uint256 public maxSupply = 3333;
    uint256 public mintTX = 20;
    string public baseURI;
    uint256 public price = 0.001 ether;

    constructor() 
        ERC721A("Mini Robots", "BOT", 20, 3333)  {
    }

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

    function setBaseURI(string memory newBaseURI) external onlyOwner {
        baseURI = newBaseURI;
    }

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

    function mint(uint256 amount) payable public {
        require(totalSupply() + amount <= maxSupply, "Soldout");
        require(amount <= mintTX,"Maximum 20 Per TX");
        require(msg.value >= price * amount, "Insufficient ETH");
        _safeMint(msg.sender, amount);
    }
    
}

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

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 3 of 13 : 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 4 of 13 : ERC721A.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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

File 5 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

File 8 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

File 12 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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 be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintTX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c060405260006001556000600855610d05600a556014600b5566038d7ea4c68000600d553480156200003157600080fd5b506040518060400160405280600b81526020017f4d696e6920526f626f74730000000000000000000000000000000000000000008152506040518060400160405280600381526020017f424f5400000000000000000000000000000000000000000000000000000000008152506014610d05620000c3620000b7620001a360201b60201c565b620001ab60201b60201c565b6000811162000109576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000100906200038f565b60405180910390fd5b600082116200014f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000146906200036d565b60405180910390fd5b8360029080519060200190620001679291906200026f565b508260039080519060200190620001809291906200026f565b508160a081815250508060808181525050505050506001600981905550620004c5565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200027d90620003c2565b90600052602060002090601f016020900481019282620002a15760008555620002ed565b82601f10620002bc57805160ff1916838001178555620002ed565b82800160010185558215620002ed579182015b82811115620002ec578251825591602001919060010190620002cf565b5b509050620002fc919062000300565b5090565b5b808211156200031b57600081600090555060010162000301565b5090565b60006200032e602783620003b1565b91506200033b8262000427565b604082019050919050565b600062000355602e83620003b1565b9150620003628262000476565b604082019050919050565b6000602082019050818103600083015262000388816200031f565b9050919050565b60006020820190508181036000830152620003aa8162000346565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620003db57607f821691505b60208210811415620003f257620003f1620003f8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a0516140c0620004f660003960008181611d1c01528181611d4501526124050152600050506140c06000f3fe60806040526004361061019c5760003560e01c806370a08231116100ec578063a2578c581161008a578063d5abeb0111610064578063d5abeb01146105b9578063d7224ba0146105e4578063e985e9c51461060f578063f2fde38b1461064c5761019c565b8063a2578c5814610528578063b88d4fde14610553578063c87b56dd1461057c5761019c565b806395d89b41116100c657806395d89b411461048d578063a035b1fe146104b8578063a0712d68146104e3578063a22cb465146104ff5761019c565b806370a082311461040e578063715018a61461044b5780638da5cb5b146104625761019c565b80632f745c59116101595780634f6ccce7116101335780634f6ccce71461034057806355f804b31461037d5780636352211e146103a65780636c0360eb146103e35761019c565b80632f745c59146102c35780633ccfd60b1461030057806342842e0e146103175761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806318160ddd1461026f57806323b872dd1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612c2f565b610675565b6040516101d5919061317f565b60405180910390f35b3480156101ea57600080fd5b506101f36107bf565b604051610200919061319a565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612cd2565b610851565b60405161023d9190613118565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612bef565b6108d6565b005b34801561027b57600080fd5b506102846109ef565b604051610291919061349c565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190612ad9565b6109f9565b005b3480156102cf57600080fd5b506102ea60048036038101906102e59190612bef565b610a09565b6040516102f7919061349c565b60405180910390f35b34801561030c57600080fd5b50610315610c07565b005b34801561032357600080fd5b5061033e60048036038101906103399190612ad9565b610ce3565b005b34801561034c57600080fd5b5061036760048036038101906103629190612cd2565b610d03565b604051610374919061349c565b60405180910390f35b34801561038957600080fd5b506103a4600480360381019061039f9190612c89565b610d56565b005b3480156103b257600080fd5b506103cd60048036038101906103c89190612cd2565b610dec565b6040516103da9190613118565b60405180910390f35b3480156103ef57600080fd5b506103f8610e02565b604051610405919061319a565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190612a6c565b610e90565b604051610442919061349c565b60405180910390f35b34801561045757600080fd5b50610460610f79565b005b34801561046e57600080fd5b50610477611001565b6040516104849190613118565b60405180910390f35b34801561049957600080fd5b506104a261102a565b6040516104af919061319a565b60405180910390f35b3480156104c457600080fd5b506104cd6110bc565b6040516104da919061349c565b60405180910390f35b6104fd60048036038101906104f89190612cd2565b6110c2565b005b34801561050b57600080fd5b5061052660048036038101906105219190612baf565b6111bb565b005b34801561053457600080fd5b5061053d61133c565b60405161054a919061349c565b60405180910390f35b34801561055f57600080fd5b5061057a60048036038101906105759190612b2c565b611342565b005b34801561058857600080fd5b506105a3600480360381019061059e9190612cd2565b61139e565b6040516105b0919061319a565b60405180910390f35b3480156105c557600080fd5b506105ce611445565b6040516105db919061349c565b60405180910390f35b3480156105f057600080fd5b506105f961144b565b604051610606919061349c565b60405180910390f35b34801561061b57600080fd5b5061063660048036038101906106319190612a99565b611451565b604051610643919061317f565b60405180910390f35b34801561065857600080fd5b50610673600480360381019061066e9190612a6c565b6114e5565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107b857506107b7826115dd565b5b9050919050565b6060600280546107ce9061380c565b80601f01602080910402602001604051908101604052809291908181526020018280546107fa9061380c565b80156108475780601f1061081c57610100808354040283529160200191610847565b820191906000526020600020905b81548152906001019060200180831161082a57829003601f168201915b5050505050905090565b600061085c82611647565b61089b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108929061345c565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108e182610dec565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610952576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109499061339c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610971611655565b73ffffffffffffffffffffffffffffffffffffffff1614806109a0575061099f8161099a611655565b611451565b5b6109df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d6906132bc565b60405180910390fd5b6109ea83838361165d565b505050565b6000600154905090565b610a0483838361170f565b505050565b6000610a1483610e90565b8210610a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4c906131bc565b60405180910390fd5b6000610a5f6109ef565b905060008060005b83811015610bc5576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610b5957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bb15786841415610ba2578195505050505050610c01565b8380610bad9061386f565b9450505b508080610bbd9061386f565b915050610a67565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf89061341c565b60405180910390fd5b92915050565b610c0f611655565b73ffffffffffffffffffffffffffffffffffffffff16610c2d611001565b73ffffffffffffffffffffffffffffffffffffffff1614610c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7a9061331c565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015610ce0573d6000803e3d6000fd5b50565b610cfe83838360405180602001604052806000815250611342565b505050565b6000610d0d6109ef565b8210610d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d459061323c565b60405180910390fd5b819050919050565b610d5e611655565b73ffffffffffffffffffffffffffffffffffffffff16610d7c611001565b73ffffffffffffffffffffffffffffffffffffffff1614610dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc99061331c565b60405180910390fd5b80600c9080519060200190610de8929190612846565b5050565b6000610df782611cc8565b600001519050919050565b600c8054610e0f9061380c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3b9061380c565b8015610e885780601f10610e5d57610100808354040283529160200191610e88565b820191906000526020600020905b815481529060010190602001808311610e6b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef8906132dc565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610f81611655565b73ffffffffffffffffffffffffffffffffffffffff16610f9f611001565b73ffffffffffffffffffffffffffffffffffffffff1614610ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fec9061331c565b60405180910390fd5b610fff6000611ecb565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110399061380c565b80601f01602080910402602001604051908101604052809291908181526020018280546110659061380c565b80156110b25780601f10611087576101008083540402835291602001916110b2565b820191906000526020600020905b81548152906001019060200180831161109557829003601f168201915b5050505050905090565b600d5481565b600a54816110ce6109ef565b6110d891906135c7565b1115611119576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111109061329c565b60405180910390fd5b600b5481111561115e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111559061327c565b60405180910390fd5b80600d5461116c919061364e565b3410156111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a5906131dc565b60405180910390fd5b6111b83382611f8f565b50565b6111c3611655565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611231576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112289061335c565b60405180910390fd5b806007600061123e611655565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112eb611655565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611330919061317f565b60405180910390a35050565b600b5481565b61134d84848461170f565b61135984848484611fad565b611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138f906133bc565b60405180910390fd5b50505050565b60606113a982611647565b6113e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113df9061333c565b60405180910390fd5b60006113f2612144565b90506000815111611412576040518060200160405280600081525061143d565b8061141c846121d6565b60405160200161142d9291906130f4565b6040516020818303038152906040525b915050919050565b600a5481565b60085481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114ed611655565b73ffffffffffffffffffffffffffffffffffffffff1661150b611001565b73ffffffffffffffffffffffffffffffffffffffff1614611561576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115589061331c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c8906131fc565b60405180910390fd5b6115da81611ecb565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061171a82611cc8565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611741611655565b73ffffffffffffffffffffffffffffffffffffffff16148061179d5750611766611655565b73ffffffffffffffffffffffffffffffffffffffff1661178584610851565b73ffffffffffffffffffffffffffffffffffffffff16145b806117b957506117b882600001516117b3611655565b611451565b5b9050806117fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f29061337c565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461186d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611864906132fc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156118dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d49061325c565b60405180910390fd5b6118ea8585856001612337565b6118fa600084846000015161165d565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661196891906136a8565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611a0c9190613581565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611b1291906135c7565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611c5857611b8881611647565b15611c57576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611cc0868686600161233d565b505050505050565b611cd06128cc565b611cd982611647565b611d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0f9061321c565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310611d7c5760017f000000000000000000000000000000000000000000000000000000000000000084611d6f91906136dc565b611d7991906135c7565b90505b60008390505b818110611e8a576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e7657809350505050611ec6565b508080611e82906137e2565b915050611d82565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebd9061343c565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fa9828260405180602001604052806000815250612343565b5050565b6000611fce8473ffffffffffffffffffffffffffffffffffffffff16612823565b15612137578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ff7611655565b8786866040518563ffffffff1660e01b81526004016120199493929190613133565b602060405180830381600087803b15801561203357600080fd5b505af192505050801561206457506040513d601f19601f820116820180604052508101906120619190612c5c565b60015b6120e7573d8060008114612094576040519150601f19603f3d011682016040523d82523d6000602084013e612099565b606091505b506000815114156120df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d6906133bc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061213c565b600190505b949350505050565b6060600c80546121539061380c565b80601f016020809104026020016040519081016040528092919081815260200182805461217f9061380c565b80156121cc5780601f106121a1576101008083540402835291602001916121cc565b820191906000526020600020905b8154815290600101906020018083116121af57829003601f168201915b5050505050905090565b6060600082141561221e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612332565b600082905060005b600082146122505780806122399061386f565b915050600a82612249919061361d565b9150612226565b60008167ffffffffffffffff81111561226c5761226b6139a5565b5b6040519080825280601f01601f19166020018201604052801561229e5781602001600182028036833780820191505090505b5090505b6000851461232b576001826122b791906136dc565b9150600a856122c691906138b8565b60306122d291906135c7565b60f81b8183815181106122e8576122e7613976565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612324919061361d565b94506122a2565b8093505050505b919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b1906133fc565b60405180910390fd5b6123c381611647565b15612403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fa906133dc565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245d9061347c565b60405180910390fd5b6124736000858386612337565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516125709190613581565b6fffffffffffffffffffffffffffffffff1681526020018583602001516125979190613581565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561280657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127a66000888488611fad565b6127e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127dc906133bc565b60405180910390fd5b81806127f09061386f565b92505080806127fe9061386f565b915050612735565b508060018190555061281b600087858861233d565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546128529061380c565b90600052602060002090601f01602090048101928261287457600085556128bb565b82601f1061288d57805160ff19168380011785556128bb565b828001600101855582156128bb579182015b828111156128ba57825182559160200191906001019061289f565b5b5090506128c89190612906565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561291f576000816000905550600101612907565b5090565b6000612936612931846134dc565b6134b7565b905082815260208101848484011115612952576129516139d9565b5b61295d8482856137a0565b509392505050565b60006129786129738461350d565b6134b7565b905082815260208101848484011115612994576129936139d9565b5b61299f8482856137a0565b509392505050565b6000813590506129b68161402e565b92915050565b6000813590506129cb81614045565b92915050565b6000813590506129e08161405c565b92915050565b6000815190506129f58161405c565b92915050565b600082601f830112612a1057612a0f6139d4565b5b8135612a20848260208601612923565b91505092915050565b600082601f830112612a3e57612a3d6139d4565b5b8135612a4e848260208601612965565b91505092915050565b600081359050612a6681614073565b92915050565b600060208284031215612a8257612a816139e3565b5b6000612a90848285016129a7565b91505092915050565b60008060408385031215612ab057612aaf6139e3565b5b6000612abe858286016129a7565b9250506020612acf858286016129a7565b9150509250929050565b600080600060608486031215612af257612af16139e3565b5b6000612b00868287016129a7565b9350506020612b11868287016129a7565b9250506040612b2286828701612a57565b9150509250925092565b60008060008060808587031215612b4657612b456139e3565b5b6000612b54878288016129a7565b9450506020612b65878288016129a7565b9350506040612b7687828801612a57565b925050606085013567ffffffffffffffff811115612b9757612b966139de565b5b612ba3878288016129fb565b91505092959194509250565b60008060408385031215612bc657612bc56139e3565b5b6000612bd4858286016129a7565b9250506020612be5858286016129bc565b9150509250929050565b60008060408385031215612c0657612c056139e3565b5b6000612c14858286016129a7565b9250506020612c2585828601612a57565b9150509250929050565b600060208284031215612c4557612c446139e3565b5b6000612c53848285016129d1565b91505092915050565b600060208284031215612c7257612c716139e3565b5b6000612c80848285016129e6565b91505092915050565b600060208284031215612c9f57612c9e6139e3565b5b600082013567ffffffffffffffff811115612cbd57612cbc6139de565b5b612cc984828501612a29565b91505092915050565b600060208284031215612ce857612ce76139e3565b5b6000612cf684828501612a57565b91505092915050565b612d0881613710565b82525050565b612d1781613722565b82525050565b6000612d288261353e565b612d328185613554565b9350612d428185602086016137af565b612d4b816139e8565b840191505092915050565b6000612d6182613549565b612d6b8185613565565b9350612d7b8185602086016137af565b612d84816139e8565b840191505092915050565b6000612d9a82613549565b612da48185613576565b9350612db48185602086016137af565b80840191505092915050565b6000612dcd602283613565565b9150612dd8826139f9565b604082019050919050565b6000612df0601083613565565b9150612dfb82613a48565b602082019050919050565b6000612e13602683613565565b9150612e1e82613a71565b604082019050919050565b6000612e36602a83613565565b9150612e4182613ac0565b604082019050919050565b6000612e59602383613565565b9150612e6482613b0f565b604082019050919050565b6000612e7c602583613565565b9150612e8782613b5e565b604082019050919050565b6000612e9f601183613565565b9150612eaa82613bad565b602082019050919050565b6000612ec2600783613565565b9150612ecd82613bd6565b602082019050919050565b6000612ee5603983613565565b9150612ef082613bff565b604082019050919050565b6000612f08602b83613565565b9150612f1382613c4e565b604082019050919050565b6000612f2b602683613565565b9150612f3682613c9d565b604082019050919050565b6000612f4e602083613565565b9150612f5982613cec565b602082019050919050565b6000612f71602f83613565565b9150612f7c82613d15565b604082019050919050565b6000612f94601a83613565565b9150612f9f82613d64565b602082019050919050565b6000612fb7603283613565565b9150612fc282613d8d565b604082019050919050565b6000612fda602283613565565b9150612fe582613ddc565b604082019050919050565b6000612ffd603383613565565b915061300882613e2b565b604082019050919050565b6000613020601d83613565565b915061302b82613e7a565b602082019050919050565b6000613043602183613565565b915061304e82613ea3565b604082019050919050565b6000613066602e83613565565b915061307182613ef2565b604082019050919050565b6000613089602f83613565565b915061309482613f41565b604082019050919050565b60006130ac602d83613565565b91506130b782613f90565b604082019050919050565b60006130cf602283613565565b91506130da82613fdf565b604082019050919050565b6130ee81613796565b82525050565b60006131008285612d8f565b915061310c8284612d8f565b91508190509392505050565b600060208201905061312d6000830184612cff565b92915050565b60006080820190506131486000830187612cff565b6131556020830186612cff565b61316260408301856130e5565b81810360608301526131748184612d1d565b905095945050505050565b60006020820190506131946000830184612d0e565b92915050565b600060208201905081810360008301526131b48184612d56565b905092915050565b600060208201905081810360008301526131d581612dc0565b9050919050565b600060208201905081810360008301526131f581612de3565b9050919050565b6000602082019050818103600083015261321581612e06565b9050919050565b6000602082019050818103600083015261323581612e29565b9050919050565b6000602082019050818103600083015261325581612e4c565b9050919050565b6000602082019050818103600083015261327581612e6f565b9050919050565b6000602082019050818103600083015261329581612e92565b9050919050565b600060208201905081810360008301526132b581612eb5565b9050919050565b600060208201905081810360008301526132d581612ed8565b9050919050565b600060208201905081810360008301526132f581612efb565b9050919050565b6000602082019050818103600083015261331581612f1e565b9050919050565b6000602082019050818103600083015261333581612f41565b9050919050565b6000602082019050818103600083015261335581612f64565b9050919050565b6000602082019050818103600083015261337581612f87565b9050919050565b6000602082019050818103600083015261339581612faa565b9050919050565b600060208201905081810360008301526133b581612fcd565b9050919050565b600060208201905081810360008301526133d581612ff0565b9050919050565b600060208201905081810360008301526133f581613013565b9050919050565b6000602082019050818103600083015261341581613036565b9050919050565b6000602082019050818103600083015261343581613059565b9050919050565b600060208201905081810360008301526134558161307c565b9050919050565b600060208201905081810360008301526134758161309f565b9050919050565b60006020820190508181036000830152613495816130c2565b9050919050565b60006020820190506134b160008301846130e5565b92915050565b60006134c16134d2565b90506134cd828261383e565b919050565b6000604051905090565b600067ffffffffffffffff8211156134f7576134f66139a5565b5b613500826139e8565b9050602081019050919050565b600067ffffffffffffffff821115613528576135276139a5565b5b613531826139e8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061358c8261375a565b91506135978361375a565b9250826fffffffffffffffffffffffffffffffff038211156135bc576135bb6138e9565b5b828201905092915050565b60006135d282613796565b91506135dd83613796565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613612576136116138e9565b5b828201905092915050565b600061362882613796565b915061363383613796565b92508261364357613642613918565b5b828204905092915050565b600061365982613796565b915061366483613796565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561369d5761369c6138e9565b5b828202905092915050565b60006136b38261375a565b91506136be8361375a565b9250828210156136d1576136d06138e9565b5b828203905092915050565b60006136e782613796565b91506136f283613796565b925082821015613705576137046138e9565b5b828203905092915050565b600061371b82613776565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156137cd5780820151818401526020810190506137b2565b838111156137dc576000848401525b50505050565b60006137ed82613796565b91506000821415613801576138006138e9565b5b600182039050919050565b6000600282049050600182168061382457607f821691505b6020821081141561383857613837613947565b5b50919050565b613847826139e8565b810181811067ffffffffffffffff82111715613866576138656139a5565b5b80604052505050565b600061387a82613796565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138ad576138ac6138e9565b5b600182019050919050565b60006138c382613796565b91506138ce83613796565b9250826138de576138dd613918565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742045544800000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20323020506572205458000000000000000000000000000000600082015250565b7f536f6c646f757400000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61403781613710565b811461404257600080fd5b50565b61404e81613722565b811461405957600080fd5b50565b6140658161372e565b811461407057600080fd5b50565b61407c81613796565b811461408757600080fd5b5056fea264697066735822122032ceaed408590ca065c5277d121a051eaf59e56ac94bccad37836a508fb7140864736f6c63430008070033

Deployed Bytecode

0x60806040526004361061019c5760003560e01c806370a08231116100ec578063a2578c581161008a578063d5abeb0111610064578063d5abeb01146105b9578063d7224ba0146105e4578063e985e9c51461060f578063f2fde38b1461064c5761019c565b8063a2578c5814610528578063b88d4fde14610553578063c87b56dd1461057c5761019c565b806395d89b41116100c657806395d89b411461048d578063a035b1fe146104b8578063a0712d68146104e3578063a22cb465146104ff5761019c565b806370a082311461040e578063715018a61461044b5780638da5cb5b146104625761019c565b80632f745c59116101595780634f6ccce7116101335780634f6ccce71461034057806355f804b31461037d5780636352211e146103a65780636c0360eb146103e35761019c565b80632f745c59146102c35780633ccfd60b1461030057806342842e0e146103175761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806318160ddd1461026f57806323b872dd1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612c2f565b610675565b6040516101d5919061317f565b60405180910390f35b3480156101ea57600080fd5b506101f36107bf565b604051610200919061319a565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612cd2565b610851565b60405161023d9190613118565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612bef565b6108d6565b005b34801561027b57600080fd5b506102846109ef565b604051610291919061349c565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190612ad9565b6109f9565b005b3480156102cf57600080fd5b506102ea60048036038101906102e59190612bef565b610a09565b6040516102f7919061349c565b60405180910390f35b34801561030c57600080fd5b50610315610c07565b005b34801561032357600080fd5b5061033e60048036038101906103399190612ad9565b610ce3565b005b34801561034c57600080fd5b5061036760048036038101906103629190612cd2565b610d03565b604051610374919061349c565b60405180910390f35b34801561038957600080fd5b506103a4600480360381019061039f9190612c89565b610d56565b005b3480156103b257600080fd5b506103cd60048036038101906103c89190612cd2565b610dec565b6040516103da9190613118565b60405180910390f35b3480156103ef57600080fd5b506103f8610e02565b604051610405919061319a565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190612a6c565b610e90565b604051610442919061349c565b60405180910390f35b34801561045757600080fd5b50610460610f79565b005b34801561046e57600080fd5b50610477611001565b6040516104849190613118565b60405180910390f35b34801561049957600080fd5b506104a261102a565b6040516104af919061319a565b60405180910390f35b3480156104c457600080fd5b506104cd6110bc565b6040516104da919061349c565b60405180910390f35b6104fd60048036038101906104f89190612cd2565b6110c2565b005b34801561050b57600080fd5b5061052660048036038101906105219190612baf565b6111bb565b005b34801561053457600080fd5b5061053d61133c565b60405161054a919061349c565b60405180910390f35b34801561055f57600080fd5b5061057a60048036038101906105759190612b2c565b611342565b005b34801561058857600080fd5b506105a3600480360381019061059e9190612cd2565b61139e565b6040516105b0919061319a565b60405180910390f35b3480156105c557600080fd5b506105ce611445565b6040516105db919061349c565b60405180910390f35b3480156105f057600080fd5b506105f961144b565b604051610606919061349c565b60405180910390f35b34801561061b57600080fd5b5061063660048036038101906106319190612a99565b611451565b604051610643919061317f565b60405180910390f35b34801561065857600080fd5b50610673600480360381019061066e9190612a6c565b6114e5565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107b857506107b7826115dd565b5b9050919050565b6060600280546107ce9061380c565b80601f01602080910402602001604051908101604052809291908181526020018280546107fa9061380c565b80156108475780601f1061081c57610100808354040283529160200191610847565b820191906000526020600020905b81548152906001019060200180831161082a57829003601f168201915b5050505050905090565b600061085c82611647565b61089b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108929061345c565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108e182610dec565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610952576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109499061339c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610971611655565b73ffffffffffffffffffffffffffffffffffffffff1614806109a0575061099f8161099a611655565b611451565b5b6109df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d6906132bc565b60405180910390fd5b6109ea83838361165d565b505050565b6000600154905090565b610a0483838361170f565b505050565b6000610a1483610e90565b8210610a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4c906131bc565b60405180910390fd5b6000610a5f6109ef565b905060008060005b83811015610bc5576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610b5957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bb15786841415610ba2578195505050505050610c01565b8380610bad9061386f565b9450505b508080610bbd9061386f565b915050610a67565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf89061341c565b60405180910390fd5b92915050565b610c0f611655565b73ffffffffffffffffffffffffffffffffffffffff16610c2d611001565b73ffffffffffffffffffffffffffffffffffffffff1614610c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7a9061331c565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015610ce0573d6000803e3d6000fd5b50565b610cfe83838360405180602001604052806000815250611342565b505050565b6000610d0d6109ef565b8210610d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d459061323c565b60405180910390fd5b819050919050565b610d5e611655565b73ffffffffffffffffffffffffffffffffffffffff16610d7c611001565b73ffffffffffffffffffffffffffffffffffffffff1614610dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc99061331c565b60405180910390fd5b80600c9080519060200190610de8929190612846565b5050565b6000610df782611cc8565b600001519050919050565b600c8054610e0f9061380c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3b9061380c565b8015610e885780601f10610e5d57610100808354040283529160200191610e88565b820191906000526020600020905b815481529060010190602001808311610e6b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef8906132dc565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610f81611655565b73ffffffffffffffffffffffffffffffffffffffff16610f9f611001565b73ffffffffffffffffffffffffffffffffffffffff1614610ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fec9061331c565b60405180910390fd5b610fff6000611ecb565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110399061380c565b80601f01602080910402602001604051908101604052809291908181526020018280546110659061380c565b80156110b25780601f10611087576101008083540402835291602001916110b2565b820191906000526020600020905b81548152906001019060200180831161109557829003601f168201915b5050505050905090565b600d5481565b600a54816110ce6109ef565b6110d891906135c7565b1115611119576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111109061329c565b60405180910390fd5b600b5481111561115e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111559061327c565b60405180910390fd5b80600d5461116c919061364e565b3410156111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a5906131dc565b60405180910390fd5b6111b83382611f8f565b50565b6111c3611655565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611231576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112289061335c565b60405180910390fd5b806007600061123e611655565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112eb611655565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611330919061317f565b60405180910390a35050565b600b5481565b61134d84848461170f565b61135984848484611fad565b611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138f906133bc565b60405180910390fd5b50505050565b60606113a982611647565b6113e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113df9061333c565b60405180910390fd5b60006113f2612144565b90506000815111611412576040518060200160405280600081525061143d565b8061141c846121d6565b60405160200161142d9291906130f4565b6040516020818303038152906040525b915050919050565b600a5481565b60085481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114ed611655565b73ffffffffffffffffffffffffffffffffffffffff1661150b611001565b73ffffffffffffffffffffffffffffffffffffffff1614611561576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115589061331c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c8906131fc565b60405180910390fd5b6115da81611ecb565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061171a82611cc8565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611741611655565b73ffffffffffffffffffffffffffffffffffffffff16148061179d5750611766611655565b73ffffffffffffffffffffffffffffffffffffffff1661178584610851565b73ffffffffffffffffffffffffffffffffffffffff16145b806117b957506117b882600001516117b3611655565b611451565b5b9050806117fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f29061337c565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461186d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611864906132fc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156118dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d49061325c565b60405180910390fd5b6118ea8585856001612337565b6118fa600084846000015161165d565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661196891906136a8565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611a0c9190613581565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611b1291906135c7565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611c5857611b8881611647565b15611c57576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611cc0868686600161233d565b505050505050565b611cd06128cc565b611cd982611647565b611d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0f9061321c565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000148310611d7c5760017f000000000000000000000000000000000000000000000000000000000000001484611d6f91906136dc565b611d7991906135c7565b90505b60008390505b818110611e8a576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e7657809350505050611ec6565b508080611e82906137e2565b915050611d82565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebd9061343c565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fa9828260405180602001604052806000815250612343565b5050565b6000611fce8473ffffffffffffffffffffffffffffffffffffffff16612823565b15612137578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ff7611655565b8786866040518563ffffffff1660e01b81526004016120199493929190613133565b602060405180830381600087803b15801561203357600080fd5b505af192505050801561206457506040513d601f19601f820116820180604052508101906120619190612c5c565b60015b6120e7573d8060008114612094576040519150601f19603f3d011682016040523d82523d6000602084013e612099565b606091505b506000815114156120df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d6906133bc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061213c565b600190505b949350505050565b6060600c80546121539061380c565b80601f016020809104026020016040519081016040528092919081815260200182805461217f9061380c565b80156121cc5780601f106121a1576101008083540402835291602001916121cc565b820191906000526020600020905b8154815290600101906020018083116121af57829003601f168201915b5050505050905090565b6060600082141561221e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612332565b600082905060005b600082146122505780806122399061386f565b915050600a82612249919061361d565b9150612226565b60008167ffffffffffffffff81111561226c5761226b6139a5565b5b6040519080825280601f01601f19166020018201604052801561229e5781602001600182028036833780820191505090505b5090505b6000851461232b576001826122b791906136dc565b9150600a856122c691906138b8565b60306122d291906135c7565b60f81b8183815181106122e8576122e7613976565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612324919061361d565b94506122a2565b8093505050505b919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b1906133fc565b60405180910390fd5b6123c381611647565b15612403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fa906133dc565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000014831115612466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245d9061347c565b60405180910390fd5b6124736000858386612337565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516125709190613581565b6fffffffffffffffffffffffffffffffff1681526020018583602001516125979190613581565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561280657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127a66000888488611fad565b6127e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127dc906133bc565b60405180910390fd5b81806127f09061386f565b92505080806127fe9061386f565b915050612735565b508060018190555061281b600087858861233d565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546128529061380c565b90600052602060002090601f01602090048101928261287457600085556128bb565b82601f1061288d57805160ff19168380011785556128bb565b828001600101855582156128bb579182015b828111156128ba57825182559160200191906001019061289f565b5b5090506128c89190612906565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561291f576000816000905550600101612907565b5090565b6000612936612931846134dc565b6134b7565b905082815260208101848484011115612952576129516139d9565b5b61295d8482856137a0565b509392505050565b60006129786129738461350d565b6134b7565b905082815260208101848484011115612994576129936139d9565b5b61299f8482856137a0565b509392505050565b6000813590506129b68161402e565b92915050565b6000813590506129cb81614045565b92915050565b6000813590506129e08161405c565b92915050565b6000815190506129f58161405c565b92915050565b600082601f830112612a1057612a0f6139d4565b5b8135612a20848260208601612923565b91505092915050565b600082601f830112612a3e57612a3d6139d4565b5b8135612a4e848260208601612965565b91505092915050565b600081359050612a6681614073565b92915050565b600060208284031215612a8257612a816139e3565b5b6000612a90848285016129a7565b91505092915050565b60008060408385031215612ab057612aaf6139e3565b5b6000612abe858286016129a7565b9250506020612acf858286016129a7565b9150509250929050565b600080600060608486031215612af257612af16139e3565b5b6000612b00868287016129a7565b9350506020612b11868287016129a7565b9250506040612b2286828701612a57565b9150509250925092565b60008060008060808587031215612b4657612b456139e3565b5b6000612b54878288016129a7565b9450506020612b65878288016129a7565b9350506040612b7687828801612a57565b925050606085013567ffffffffffffffff811115612b9757612b966139de565b5b612ba3878288016129fb565b91505092959194509250565b60008060408385031215612bc657612bc56139e3565b5b6000612bd4858286016129a7565b9250506020612be5858286016129bc565b9150509250929050565b60008060408385031215612c0657612c056139e3565b5b6000612c14858286016129a7565b9250506020612c2585828601612a57565b9150509250929050565b600060208284031215612c4557612c446139e3565b5b6000612c53848285016129d1565b91505092915050565b600060208284031215612c7257612c716139e3565b5b6000612c80848285016129e6565b91505092915050565b600060208284031215612c9f57612c9e6139e3565b5b600082013567ffffffffffffffff811115612cbd57612cbc6139de565b5b612cc984828501612a29565b91505092915050565b600060208284031215612ce857612ce76139e3565b5b6000612cf684828501612a57565b91505092915050565b612d0881613710565b82525050565b612d1781613722565b82525050565b6000612d288261353e565b612d328185613554565b9350612d428185602086016137af565b612d4b816139e8565b840191505092915050565b6000612d6182613549565b612d6b8185613565565b9350612d7b8185602086016137af565b612d84816139e8565b840191505092915050565b6000612d9a82613549565b612da48185613576565b9350612db48185602086016137af565b80840191505092915050565b6000612dcd602283613565565b9150612dd8826139f9565b604082019050919050565b6000612df0601083613565565b9150612dfb82613a48565b602082019050919050565b6000612e13602683613565565b9150612e1e82613a71565b604082019050919050565b6000612e36602a83613565565b9150612e4182613ac0565b604082019050919050565b6000612e59602383613565565b9150612e6482613b0f565b604082019050919050565b6000612e7c602583613565565b9150612e8782613b5e565b604082019050919050565b6000612e9f601183613565565b9150612eaa82613bad565b602082019050919050565b6000612ec2600783613565565b9150612ecd82613bd6565b602082019050919050565b6000612ee5603983613565565b9150612ef082613bff565b604082019050919050565b6000612f08602b83613565565b9150612f1382613c4e565b604082019050919050565b6000612f2b602683613565565b9150612f3682613c9d565b604082019050919050565b6000612f4e602083613565565b9150612f5982613cec565b602082019050919050565b6000612f71602f83613565565b9150612f7c82613d15565b604082019050919050565b6000612f94601a83613565565b9150612f9f82613d64565b602082019050919050565b6000612fb7603283613565565b9150612fc282613d8d565b604082019050919050565b6000612fda602283613565565b9150612fe582613ddc565b604082019050919050565b6000612ffd603383613565565b915061300882613e2b565b604082019050919050565b6000613020601d83613565565b915061302b82613e7a565b602082019050919050565b6000613043602183613565565b915061304e82613ea3565b604082019050919050565b6000613066602e83613565565b915061307182613ef2565b604082019050919050565b6000613089602f83613565565b915061309482613f41565b604082019050919050565b60006130ac602d83613565565b91506130b782613f90565b604082019050919050565b60006130cf602283613565565b91506130da82613fdf565b604082019050919050565b6130ee81613796565b82525050565b60006131008285612d8f565b915061310c8284612d8f565b91508190509392505050565b600060208201905061312d6000830184612cff565b92915050565b60006080820190506131486000830187612cff565b6131556020830186612cff565b61316260408301856130e5565b81810360608301526131748184612d1d565b905095945050505050565b60006020820190506131946000830184612d0e565b92915050565b600060208201905081810360008301526131b48184612d56565b905092915050565b600060208201905081810360008301526131d581612dc0565b9050919050565b600060208201905081810360008301526131f581612de3565b9050919050565b6000602082019050818103600083015261321581612e06565b9050919050565b6000602082019050818103600083015261323581612e29565b9050919050565b6000602082019050818103600083015261325581612e4c565b9050919050565b6000602082019050818103600083015261327581612e6f565b9050919050565b6000602082019050818103600083015261329581612e92565b9050919050565b600060208201905081810360008301526132b581612eb5565b9050919050565b600060208201905081810360008301526132d581612ed8565b9050919050565b600060208201905081810360008301526132f581612efb565b9050919050565b6000602082019050818103600083015261331581612f1e565b9050919050565b6000602082019050818103600083015261333581612f41565b9050919050565b6000602082019050818103600083015261335581612f64565b9050919050565b6000602082019050818103600083015261337581612f87565b9050919050565b6000602082019050818103600083015261339581612faa565b9050919050565b600060208201905081810360008301526133b581612fcd565b9050919050565b600060208201905081810360008301526133d581612ff0565b9050919050565b600060208201905081810360008301526133f581613013565b9050919050565b6000602082019050818103600083015261341581613036565b9050919050565b6000602082019050818103600083015261343581613059565b9050919050565b600060208201905081810360008301526134558161307c565b9050919050565b600060208201905081810360008301526134758161309f565b9050919050565b60006020820190508181036000830152613495816130c2565b9050919050565b60006020820190506134b160008301846130e5565b92915050565b60006134c16134d2565b90506134cd828261383e565b919050565b6000604051905090565b600067ffffffffffffffff8211156134f7576134f66139a5565b5b613500826139e8565b9050602081019050919050565b600067ffffffffffffffff821115613528576135276139a5565b5b613531826139e8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061358c8261375a565b91506135978361375a565b9250826fffffffffffffffffffffffffffffffff038211156135bc576135bb6138e9565b5b828201905092915050565b60006135d282613796565b91506135dd83613796565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613612576136116138e9565b5b828201905092915050565b600061362882613796565b915061363383613796565b92508261364357613642613918565b5b828204905092915050565b600061365982613796565b915061366483613796565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561369d5761369c6138e9565b5b828202905092915050565b60006136b38261375a565b91506136be8361375a565b9250828210156136d1576136d06138e9565b5b828203905092915050565b60006136e782613796565b91506136f283613796565b925082821015613705576137046138e9565b5b828203905092915050565b600061371b82613776565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156137cd5780820151818401526020810190506137b2565b838111156137dc576000848401525b50505050565b60006137ed82613796565b91506000821415613801576138006138e9565b5b600182039050919050565b6000600282049050600182168061382457607f821691505b6020821081141561383857613837613947565b5b50919050565b613847826139e8565b810181811067ffffffffffffffff82111715613866576138656139a5565b5b80604052505050565b600061387a82613796565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138ad576138ac6138e9565b5b600182019050919050565b60006138c382613796565b91506138ce83613796565b9250826138de576138dd613918565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742045544800000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20323020506572205458000000000000000000000000000000600082015250565b7f536f6c646f757400000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61403781613710565b811461404257600080fd5b50565b61404e81613722565b811461405957600080fd5b50565b6140658161372e565b811461407057600080fd5b50565b61407c81613796565b811461408757600080fd5b5056fea264697066735822122032ceaed408590ca065c5277d121a051eaf59e56ac94bccad37836a508fb7140864736f6c63430008070033

Deployed Bytecode Sourcemap

205:934:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4251:370:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5977:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7502:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7065:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2812:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8352:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3443:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;724:116:12;;;;;;;;;;;;;:::i;:::-;;8557:157:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2975:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;612:104:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5800:118:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;344:21:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4677:211:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1668:101:0;;;;;;;;;;;;;:::i;:::-;;1036:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6132:98:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;372:34:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;848:282;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7770:274:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;311:26:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8777:311:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6293:394;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;273:31:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13192:43:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8107:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1918:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4251:370:11;4378:4;4423:25;4408:40;;;:11;:40;;;;:99;;;;4474:33;4459:48;;;:11;:48;;;;4408:99;:160;;;;4533:35;4518:50;;;:11;:50;;;;4408:160;:207;;;;4579:36;4603:11;4579:23;:36::i;:::-;4408:207;4394:221;;4251:370;;;:::o;5977:94::-;6031:13;6060:5;6053:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5977:94;:::o;7502:204::-;7570:7;7594:16;7602:7;7594;:16::i;:::-;7586:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;7676:15;:24;7692:7;7676:24;;;;;;;;;;;;;;;;;;;;;7669:31;;7502:204;;;:::o;7065:379::-;7134:13;7150:24;7166:7;7150:15;:24::i;:::-;7134:40;;7195:5;7189:11;;:2;:11;;;;7181:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;7280:5;7264:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;7289:37;7306:5;7313:12;:10;:12::i;:::-;7289:16;:37::i;:::-;7264:62;7248:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;7410:28;7419:2;7423:7;7432:5;7410:8;:28::i;:::-;7127:317;7065:379;;:::o;2812:94::-;2865:7;2888:12;;2881:19;;2812:94;:::o;8352:142::-;8460:28;8470:4;8476:2;8480:7;8460:9;:28::i;:::-;8352:142;;;:::o;3443:744::-;3552:7;3587:16;3597:5;3587:9;:16::i;:::-;3579:5;:24;3571:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;3649:22;3674:13;:11;:13::i;:::-;3649:38;;3694:19;3724:25;3774:9;3769:350;3793:14;3789:1;:18;3769:350;;;3823:31;3857:11;:14;3869:1;3857:14;;;;;;;;;;;3823:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3910:1;3884:28;;:9;:14;;;:28;;;3880:89;;3945:9;:14;;;3925:34;;3880:89;4002:5;3981:26;;:17;:26;;;3977:135;;;4039:5;4024:11;:20;4020:59;;;4066:1;4059:8;;;;;;;;;4020:59;4089:13;;;;;:::i;:::-;;;;3977:135;3814:305;3809:3;;;;;:::i;:::-;;;;3769:350;;;;4125:56;;;;;;;;;;:::i;:::-;;;;;;;;3443:744;;;;;:::o;724:116:12:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;780:10:12::1;772:28;;:60;817:4;801:30;;;772:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;724:116::o:0;8557:157:11:-;8669:39;8686:4;8692:2;8696:7;8669:39;;;;;;;;;;;;:16;:39::i;:::-;8557:157;;;:::o;2975:177::-;3042:7;3074:13;:11;:13::i;:::-;3066:5;:21;3058:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;3141:5;3134:12;;2975:177;;;:::o;612:104:12:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;698:10:12::1;688:7;:20;;;;;;;;;;;;:::i;:::-;;612:104:::0;:::o;5800:118:11:-;5864:7;5887:20;5899:7;5887:11;:20::i;:::-;:25;;;5880:32;;5800:118;;;:::o;344:21:12:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4677:211:11:-;4741:7;4782:1;4765:19;;:5;:19;;;;4757:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;4854:12;:19;4867:5;4854:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;4846:36;;4839:43;;4677:211;;;:::o;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;1036:85::-;1082:7;1108:6;;;;;;;;;;;1101:13;;1036:85;:::o;6132:98:11:-;6188:13;6217:7;6210:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6132:98;:::o;372:34:12:-;;;;:::o;848:282::-;938:9;;928:6;912:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;904:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;988:6;;978;:16;;970:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;1055:6;1047:5;;:14;;;;:::i;:::-;1034:9;:27;;1026:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;1093:29;1103:10;1115:6;1093:9;:29::i;:::-;848:282;:::o;7770:274:11:-;7873:12;:10;:12::i;:::-;7861:24;;:8;:24;;;;7853:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;7970:8;7925:18;:32;7944:12;:10;:12::i;:::-;7925:32;;;;;;;;;;;;;;;:42;7958:8;7925:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;8019:8;7990:48;;8005:12;:10;:12::i;:::-;7990:48;;;8029:8;7990:48;;;;;;:::i;:::-;;;;;;;;7770:274;;:::o;311:26:12:-;;;;:::o;8777:311:11:-;8914:28;8924:4;8930:2;8934:7;8914:9;:28::i;:::-;8965:48;8988:4;8994:2;8998:7;9007:5;8965:22;:48::i;:::-;8949:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;8777:311;;;;:::o;6293:394::-;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;273:31:12:-;;;;:::o;13192:43:11:-;;;;:::o;8107:186::-;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;829:155:9:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;9327:105:11:-;9384:4;9414:12;;9404:7;:22;9397:29;;9327:105;;;:::o;640:96:7:-;693:7;719:10;712:17;;640:96;:::o;13014:172:11:-;13138:2;13111:15;:24;13127:7;13111:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;13172:7;13168:2;13152:28;;13161:5;13152:28;;;;;;;;;;;;13014:172;;;:::o;11379:1529::-;11476:35;11514:20;11526:7;11514:11;:20::i;:::-;11476:58;;11543:22;11585:13;:18;;;11569:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;11638:12;:10;:12::i;:::-;11614:36;;:20;11626:7;11614:11;:20::i;:::-;:36;;;11569:81;:142;;;;11661:50;11678:13;:18;;;11698:12;:10;:12::i;:::-;11661:16;:50::i;:::-;11569:142;11543:169;;11737:17;11721:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;11869:4;11847:26;;:13;:18;;;:26;;;11831:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;11958:1;11944:16;;:2;:16;;;;11936:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;12011:43;12033:4;12039:2;12043:7;12052:1;12011:21;:43::i;:::-;12111:49;12128:1;12132:7;12141:13;:18;;;12111:8;:49::i;:::-;12199:1;12169:12;:18;12182:4;12169:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;12235:1;12207:12;:16;12220:2;12207:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;12266:43;;;;;;;;12281:2;12266:43;;;;;;12292:15;12266:43;;;;;12243:11;:20;12255:7;12243:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12537:19;12569:1;12559:7;:11;;;;:::i;:::-;12537:33;;12622:1;12581:43;;:11;:24;12593:11;12581:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;12577:236;;;12639:20;12647:11;12639:7;:20::i;:::-;12635:171;;;12699:97;;;;;;;;12726:13;:18;;;12699:97;;;;;;12757:13;:28;;;12699:97;;;;;12672:11;:24;12684:11;12672:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12635:171;12577:236;12845:7;12841:2;12826:27;;12835:4;12826:27;;;;;;;;;;;;12860:42;12881:4;12887:2;12891:7;12900:1;12860:20;:42::i;:::-;11469:1439;;;11379:1529;;;:::o;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;9438:98:11:-;9503:27;9513:2;9517:8;9503:27;;;;;;;;;;;;:9;:27::i;:::-;9438:98;;:::o;14729:690::-;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;496:108:12:-;556:13;589:7;582:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;496:108;:::o;328:703:8:-;384:13;610:1;601:5;:10;597:51;;;627:10;;;;;;;;;;;;;;;;;;;;;597:51;657:12;672:5;657:20;;687:14;711:75;726:1;718:4;:9;711:75;;743:8;;;;;:::i;:::-;;;;773:2;765:10;;;;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795:39;;844:150;860:1;851:5;:10;844:150;;887:1;877:11;;;;;:::i;:::-;;;953:2;945:5;:10;;;;:::i;:::-;932:2;:24;;;;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;844:150;;;1017:6;1003:21;;;;;328:703;;;;:::o;15881:141:11:-;;;;;:::o;16408:140::-;;;;;:::o;9875:1272::-;9980:20;10003:12;;9980:35;;10044:1;10030:16;;:2;:16;;;;10022:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;10221:21;10229:12;10221:7;:21::i;:::-;10220:22;10212:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;10303:12;10291:8;:24;;10283:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;10363:61;10393:1;10397:2;10401:12;10415:8;10363:21;:61::i;:::-;10433:30;10466:12;:16;10479:2;10466:16;;;;;;;;;;;;;;;10433:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10508:119;;;;;;;;10558:8;10528:11;:19;;;:39;;;;:::i;:::-;10508:119;;;;;;10611:8;10576:11;:24;;;:44;;;;:::i;:::-;10508:119;;;;;10489:12;:16;10502:2;10489:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10662:43;;;;;;;;10677:2;10662:43;;;;;;10688:15;10662:43;;;;;10634:11;:25;10646:12;10634:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10714:20;10737:12;10714:35;;10763:9;10758:281;10782:8;10778:1;:12;10758:281;;;10836:12;10832:2;10811:38;;10828:1;10811:38;;;;;;;;;;;;10876:59;10907:1;10911:2;10915:12;10929:5;10876:22;:59::i;:::-;10858:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;11017:14;;;;;:::i;:::-;;;;10792:3;;;;;:::i;:::-;;;;10758:281;;;;11062:12;11047;:27;;;;11081:60;11110:1;11114:2;11118:12;11132:8;11081:20;:60::i;:::-;9973:1174;;;9875:1272;;;:::o;1175:320:6:-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:13:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:::-;9030:3;9051:67;9115:2;9110:3;9051:67;:::i;:::-;9044:74;;9127:93;9216:3;9127:93;:::i;:::-;9245:2;9240:3;9236:12;9229:19;;8888:366;;;:::o;9260:::-;9402:3;9423:67;9487:2;9482:3;9423:67;:::i;:::-;9416:74;;9499:93;9588:3;9499:93;:::i;:::-;9617:2;9612:3;9608:12;9601:19;;9260:366;;;:::o;9632:::-;9774:3;9795:67;9859:2;9854:3;9795:67;:::i;:::-;9788:74;;9871:93;9960:3;9871:93;:::i;:::-;9989:2;9984:3;9980:12;9973:19;;9632:366;;;:::o;10004:::-;10146:3;10167:67;10231:2;10226:3;10167:67;:::i;:::-;10160:74;;10243:93;10332:3;10243:93;:::i;:::-;10361:2;10356:3;10352:12;10345:19;;10004:366;;;:::o;10376:::-;10518:3;10539:67;10603:2;10598:3;10539:67;:::i;:::-;10532:74;;10615:93;10704:3;10615:93;:::i;:::-;10733:2;10728:3;10724:12;10717:19;;10376:366;;;:::o;10748:::-;10890:3;10911:67;10975:2;10970:3;10911:67;:::i;:::-;10904:74;;10987:93;11076:3;10987:93;:::i;:::-;11105:2;11100:3;11096:12;11089:19;;10748:366;;;:::o;11120:365::-;11262:3;11283:66;11347:1;11342:3;11283:66;:::i;:::-;11276:73;;11358:93;11447:3;11358:93;:::i;:::-;11476:2;11471:3;11467:12;11460:19;;11120:365;;;:::o;11491:366::-;11633:3;11654:67;11718:2;11713:3;11654:67;:::i;:::-;11647:74;;11730:93;11819:3;11730:93;:::i;:::-;11848:2;11843:3;11839:12;11832:19;;11491:366;;;:::o;11863:::-;12005:3;12026:67;12090:2;12085:3;12026:67;:::i;:::-;12019:74;;12102:93;12191:3;12102:93;:::i;:::-;12220:2;12215:3;12211:12;12204:19;;11863:366;;;:::o;12235:::-;12377:3;12398:67;12462:2;12457:3;12398:67;:::i;:::-;12391:74;;12474:93;12563:3;12474:93;:::i;:::-;12592:2;12587:3;12583:12;12576:19;;12235:366;;;:::o;12607:::-;12749:3;12770:67;12834:2;12829:3;12770:67;:::i;:::-;12763:74;;12846:93;12935:3;12846:93;:::i;:::-;12964:2;12959:3;12955:12;12948:19;;12607:366;;;:::o;12979:::-;13121:3;13142:67;13206:2;13201:3;13142:67;:::i;:::-;13135:74;;13218:93;13307:3;13218:93;:::i;:::-;13336:2;13331:3;13327:12;13320:19;;12979:366;;;:::o;13351:::-;13493:3;13514:67;13578:2;13573:3;13514:67;:::i;:::-;13507:74;;13590:93;13679:3;13590:93;:::i;:::-;13708:2;13703:3;13699:12;13692:19;;13351:366;;;:::o;13723:::-;13865:3;13886:67;13950:2;13945:3;13886:67;:::i;:::-;13879:74;;13962:93;14051:3;13962:93;:::i;:::-;14080:2;14075:3;14071:12;14064:19;;13723:366;;;:::o;14095:::-;14237:3;14258:67;14322:2;14317:3;14258:67;:::i;:::-;14251:74;;14334:93;14423:3;14334:93;:::i;:::-;14452:2;14447:3;14443:12;14436:19;;14095:366;;;:::o;14467:::-;14609:3;14630:67;14694:2;14689:3;14630:67;:::i;:::-;14623:74;;14706:93;14795:3;14706:93;:::i;:::-;14824:2;14819:3;14815:12;14808:19;;14467:366;;;:::o;14839:::-;14981:3;15002:67;15066:2;15061:3;15002:67;:::i;:::-;14995:74;;15078:93;15167:3;15078:93;:::i;:::-;15196:2;15191:3;15187:12;15180:19;;14839:366;;;:::o;15211:::-;15353:3;15374:67;15438:2;15433:3;15374:67;:::i;:::-;15367:74;;15450:93;15539:3;15450:93;:::i;:::-;15568:2;15563:3;15559:12;15552:19;;15211:366;;;:::o;15583:::-;15725:3;15746:67;15810:2;15805:3;15746:67;:::i;:::-;15739:74;;15822:93;15911:3;15822:93;:::i;:::-;15940:2;15935:3;15931:12;15924:19;;15583:366;;;:::o;15955:::-;16097:3;16118:67;16182:2;16177:3;16118:67;:::i;:::-;16111:74;;16194:93;16283:3;16194:93;:::i;:::-;16312:2;16307:3;16303:12;16296:19;;15955:366;;;:::o;16327:::-;16469:3;16490:67;16554:2;16549:3;16490:67;:::i;:::-;16483:74;;16566:93;16655:3;16566:93;:::i;:::-;16684:2;16679:3;16675:12;16668:19;;16327:366;;;:::o;16699:::-;16841:3;16862:67;16926:2;16921:3;16862:67;:::i;:::-;16855:74;;16938:93;17027:3;16938:93;:::i;:::-;17056:2;17051:3;17047:12;17040:19;;16699:366;;;:::o;17071:118::-;17158:24;17176:5;17158:24;:::i;:::-;17153:3;17146:37;17071:118;;:::o;17195:435::-;17375:3;17397:95;17488:3;17479:6;17397:95;:::i;:::-;17390:102;;17509:95;17600:3;17591:6;17509:95;:::i;:::-;17502:102;;17621:3;17614:10;;17195:435;;;;;:::o;17636:222::-;17729:4;17767:2;17756:9;17752:18;17744:26;;17780:71;17848:1;17837:9;17833:17;17824:6;17780:71;:::i;:::-;17636:222;;;;:::o;17864:640::-;18059:4;18097:3;18086:9;18082:19;18074:27;;18111:71;18179:1;18168:9;18164:17;18155:6;18111:71;:::i;:::-;18192:72;18260:2;18249:9;18245:18;18236:6;18192:72;:::i;:::-;18274;18342:2;18331:9;18327:18;18318:6;18274:72;:::i;:::-;18393:9;18387:4;18383:20;18378:2;18367:9;18363:18;18356:48;18421:76;18492:4;18483:6;18421:76;:::i;:::-;18413:84;;17864:640;;;;;;;:::o;18510:210::-;18597:4;18635:2;18624:9;18620:18;18612:26;;18648:65;18710:1;18699:9;18695:17;18686:6;18648:65;:::i;:::-;18510:210;;;;:::o;18726:313::-;18839:4;18877:2;18866:9;18862:18;18854:26;;18926:9;18920:4;18916:20;18912:1;18901:9;18897:17;18890:47;18954:78;19027:4;19018:6;18954:78;:::i;:::-;18946:86;;18726:313;;;;:::o;19045:419::-;19211:4;19249:2;19238:9;19234:18;19226:26;;19298:9;19292:4;19288:20;19284:1;19273:9;19269:17;19262:47;19326:131;19452:4;19326:131;:::i;:::-;19318:139;;19045:419;;;:::o;19470:::-;19636:4;19674:2;19663:9;19659:18;19651:26;;19723:9;19717:4;19713:20;19709:1;19698:9;19694:17;19687:47;19751:131;19877:4;19751:131;:::i;:::-;19743:139;;19470:419;;;:::o;19895:::-;20061:4;20099:2;20088:9;20084:18;20076:26;;20148:9;20142:4;20138:20;20134:1;20123:9;20119:17;20112:47;20176:131;20302:4;20176:131;:::i;:::-;20168:139;;19895:419;;;:::o;20320:::-;20486:4;20524:2;20513:9;20509:18;20501:26;;20573:9;20567:4;20563:20;20559:1;20548:9;20544:17;20537:47;20601:131;20727:4;20601:131;:::i;:::-;20593:139;;20320:419;;;:::o;20745:::-;20911:4;20949:2;20938:9;20934:18;20926:26;;20998:9;20992:4;20988:20;20984:1;20973:9;20969:17;20962:47;21026:131;21152:4;21026:131;:::i;:::-;21018:139;;20745:419;;;:::o;21170:::-;21336:4;21374:2;21363:9;21359:18;21351:26;;21423:9;21417:4;21413:20;21409:1;21398:9;21394:17;21387:47;21451:131;21577:4;21451:131;:::i;:::-;21443:139;;21170:419;;;:::o;21595:::-;21761:4;21799:2;21788:9;21784:18;21776:26;;21848:9;21842:4;21838:20;21834:1;21823:9;21819:17;21812:47;21876:131;22002:4;21876:131;:::i;:::-;21868:139;;21595:419;;;:::o;22020:::-;22186:4;22224:2;22213:9;22209:18;22201:26;;22273:9;22267:4;22263:20;22259:1;22248:9;22244:17;22237:47;22301:131;22427:4;22301:131;:::i;:::-;22293:139;;22020:419;;;:::o;22445:::-;22611:4;22649:2;22638:9;22634:18;22626:26;;22698:9;22692:4;22688:20;22684:1;22673:9;22669:17;22662:47;22726:131;22852:4;22726:131;:::i;:::-;22718:139;;22445:419;;;:::o;22870:::-;23036:4;23074:2;23063:9;23059:18;23051:26;;23123:9;23117:4;23113:20;23109:1;23098:9;23094:17;23087:47;23151:131;23277:4;23151:131;:::i;:::-;23143:139;;22870:419;;;:::o;23295:::-;23461:4;23499:2;23488:9;23484:18;23476:26;;23548:9;23542:4;23538:20;23534:1;23523:9;23519:17;23512:47;23576:131;23702:4;23576:131;:::i;:::-;23568:139;;23295:419;;;:::o;23720:::-;23886:4;23924:2;23913:9;23909:18;23901:26;;23973:9;23967:4;23963:20;23959:1;23948:9;23944:17;23937:47;24001:131;24127:4;24001:131;:::i;:::-;23993:139;;23720:419;;;:::o;24145:::-;24311:4;24349:2;24338:9;24334:18;24326:26;;24398:9;24392:4;24388:20;24384:1;24373:9;24369:17;24362:47;24426:131;24552:4;24426:131;:::i;:::-;24418:139;;24145:419;;;:::o;24570:::-;24736:4;24774:2;24763:9;24759:18;24751:26;;24823:9;24817:4;24813:20;24809:1;24798:9;24794:17;24787:47;24851:131;24977:4;24851:131;:::i;:::-;24843:139;;24570:419;;;:::o;24995:::-;25161:4;25199:2;25188:9;25184:18;25176:26;;25248:9;25242:4;25238:20;25234:1;25223:9;25219:17;25212:47;25276:131;25402:4;25276:131;:::i;:::-;25268:139;;24995:419;;;:::o;25420:::-;25586:4;25624:2;25613:9;25609:18;25601:26;;25673:9;25667:4;25663:20;25659:1;25648:9;25644:17;25637:47;25701:131;25827:4;25701:131;:::i;:::-;25693:139;;25420:419;;;:::o;25845:::-;26011:4;26049:2;26038:9;26034:18;26026:26;;26098:9;26092:4;26088:20;26084:1;26073:9;26069:17;26062:47;26126:131;26252:4;26126:131;:::i;:::-;26118:139;;25845:419;;;:::o;26270:::-;26436:4;26474:2;26463:9;26459:18;26451:26;;26523:9;26517:4;26513:20;26509:1;26498:9;26494:17;26487:47;26551:131;26677:4;26551:131;:::i;:::-;26543:139;;26270:419;;;:::o;26695:::-;26861:4;26899:2;26888:9;26884:18;26876:26;;26948:9;26942:4;26938:20;26934:1;26923:9;26919:17;26912:47;26976:131;27102:4;26976:131;:::i;:::-;26968:139;;26695:419;;;:::o;27120:::-;27286:4;27324:2;27313:9;27309:18;27301:26;;27373:9;27367:4;27363:20;27359:1;27348:9;27344:17;27337:47;27401:131;27527:4;27401:131;:::i;:::-;27393:139;;27120:419;;;:::o;27545:::-;27711:4;27749:2;27738:9;27734:18;27726:26;;27798:9;27792:4;27788:20;27784:1;27773:9;27769:17;27762:47;27826:131;27952:4;27826:131;:::i;:::-;27818:139;;27545:419;;;:::o;27970:::-;28136:4;28174:2;28163:9;28159:18;28151:26;;28223:9;28217:4;28213:20;28209:1;28198:9;28194:17;28187:47;28251:131;28377:4;28251:131;:::i;:::-;28243:139;;27970:419;;;:::o;28395:::-;28561:4;28599:2;28588:9;28584:18;28576:26;;28648:9;28642:4;28638:20;28634:1;28623:9;28619:17;28612:47;28676:131;28802:4;28676:131;:::i;:::-;28668:139;;28395:419;;;:::o;28820:222::-;28913:4;28951:2;28940:9;28936:18;28928:26;;28964:71;29032:1;29021:9;29017:17;29008:6;28964:71;:::i;:::-;28820:222;;;;:::o;29048:129::-;29082:6;29109:20;;:::i;:::-;29099:30;;29138:33;29166:4;29158:6;29138:33;:::i;:::-;29048:129;;;:::o;29183:75::-;29216:6;29249:2;29243:9;29233:19;;29183:75;:::o;29264:307::-;29325:4;29415:18;29407:6;29404:30;29401:56;;;29437:18;;:::i;:::-;29401:56;29475:29;29497:6;29475:29;:::i;:::-;29467:37;;29559:4;29553;29549:15;29541:23;;29264:307;;;:::o;29577:308::-;29639:4;29729:18;29721:6;29718:30;29715:56;;;29751:18;;:::i;:::-;29715:56;29789:29;29811:6;29789:29;:::i;:::-;29781:37;;29873:4;29867;29863:15;29855:23;;29577:308;;;:::o;29891:98::-;29942:6;29976:5;29970:12;29960:22;;29891:98;;;:::o;29995:99::-;30047:6;30081:5;30075:12;30065:22;;29995:99;;;:::o;30100:168::-;30183:11;30217:6;30212:3;30205:19;30257:4;30252:3;30248:14;30233:29;;30100:168;;;;:::o;30274:169::-;30358:11;30392:6;30387:3;30380:19;30432:4;30427:3;30423:14;30408:29;;30274:169;;;;:::o;30449:148::-;30551:11;30588:3;30573:18;;30449:148;;;;:::o;30603:273::-;30643:3;30662:20;30680:1;30662:20;:::i;:::-;30657:25;;30696:20;30714:1;30696:20;:::i;:::-;30691:25;;30818:1;30782:34;30778:42;30775:1;30772:49;30769:75;;;30824:18;;:::i;:::-;30769:75;30868:1;30865;30861:9;30854:16;;30603:273;;;;:::o;30882:305::-;30922:3;30941:20;30959:1;30941:20;:::i;:::-;30936:25;;30975:20;30993:1;30975:20;:::i;:::-;30970:25;;31129:1;31061:66;31057:74;31054:1;31051:81;31048:107;;;31135:18;;:::i;:::-;31048:107;31179:1;31176;31172:9;31165:16;;30882:305;;;;:::o;31193:185::-;31233:1;31250:20;31268:1;31250:20;:::i;:::-;31245:25;;31284:20;31302:1;31284:20;:::i;:::-;31279:25;;31323:1;31313:35;;31328:18;;:::i;:::-;31313:35;31370:1;31367;31363:9;31358:14;;31193:185;;;;:::o;31384:348::-;31424:7;31447:20;31465:1;31447:20;:::i;:::-;31442:25;;31481:20;31499:1;31481:20;:::i;:::-;31476:25;;31669:1;31601:66;31597:74;31594:1;31591:81;31586:1;31579:9;31572:17;31568:105;31565:131;;;31676:18;;:::i;:::-;31565:131;31724:1;31721;31717:9;31706:20;;31384:348;;;;:::o;31738:191::-;31778:4;31798:20;31816:1;31798:20;:::i;:::-;31793:25;;31832:20;31850:1;31832:20;:::i;:::-;31827:25;;31871:1;31868;31865:8;31862:34;;;31876:18;;:::i;:::-;31862:34;31921:1;31918;31914:9;31906:17;;31738:191;;;;:::o;31935:::-;31975:4;31995:20;32013:1;31995:20;:::i;:::-;31990:25;;32029:20;32047:1;32029:20;:::i;:::-;32024:25;;32068:1;32065;32062:8;32059:34;;;32073:18;;:::i;:::-;32059:34;32118:1;32115;32111:9;32103:17;;31935:191;;;;:::o;32132:96::-;32169:7;32198:24;32216:5;32198:24;:::i;:::-;32187:35;;32132:96;;;:::o;32234:90::-;32268:7;32311:5;32304:13;32297:21;32286:32;;32234:90;;;:::o;32330:149::-;32366:7;32406:66;32399:5;32395:78;32384:89;;32330:149;;;:::o;32485:118::-;32522:7;32562:34;32555:5;32551:46;32540:57;;32485:118;;;:::o;32609:126::-;32646:7;32686:42;32679:5;32675:54;32664:65;;32609:126;;;:::o;32741:77::-;32778:7;32807:5;32796:16;;32741:77;;;:::o;32824:154::-;32908:6;32903:3;32898;32885:30;32970:1;32961:6;32956:3;32952:16;32945:27;32824:154;;;:::o;32984:307::-;33052:1;33062:113;33076:6;33073:1;33070:13;33062:113;;;33161:1;33156:3;33152:11;33146:18;33142:1;33137:3;33133:11;33126:39;33098:2;33095:1;33091:10;33086:15;;33062:113;;;33193:6;33190:1;33187:13;33184:101;;;33273:1;33264:6;33259:3;33255:16;33248:27;33184:101;33033:258;32984:307;;;:::o;33297:171::-;33336:3;33359:24;33377:5;33359:24;:::i;:::-;33350:33;;33405:4;33398:5;33395:15;33392:41;;;33413:18;;:::i;:::-;33392:41;33460:1;33453:5;33449:13;33442:20;;33297:171;;;:::o;33474:320::-;33518:6;33555:1;33549:4;33545:12;33535:22;;33602:1;33596:4;33592:12;33623:18;33613:81;;33679:4;33671:6;33667:17;33657:27;;33613:81;33741:2;33733:6;33730:14;33710:18;33707:38;33704:84;;;33760:18;;:::i;:::-;33704:84;33525:269;33474:320;;;:::o;33800:281::-;33883:27;33905:4;33883:27;:::i;:::-;33875:6;33871:40;34013:6;34001:10;33998:22;33977:18;33965:10;33962:34;33959:62;33956:88;;;34024:18;;:::i;:::-;33956:88;34064:10;34060:2;34053:22;33843:238;33800:281;;:::o;34087:233::-;34126:3;34149:24;34167:5;34149:24;:::i;:::-;34140:33;;34195:66;34188:5;34185:77;34182:103;;;34265:18;;:::i;:::-;34182:103;34312:1;34305:5;34301:13;34294:20;;34087:233;;;:::o;34326:176::-;34358:1;34375:20;34393:1;34375:20;:::i;:::-;34370:25;;34409:20;34427:1;34409:20;:::i;:::-;34404:25;;34448:1;34438:35;;34453:18;;:::i;:::-;34438:35;34494:1;34491;34487:9;34482:14;;34326:176;;;;:::o;34508:180::-;34556:77;34553:1;34546:88;34653:4;34650:1;34643:15;34677:4;34674:1;34667:15;34694:180;34742:77;34739:1;34732:88;34839:4;34836:1;34829:15;34863:4;34860:1;34853:15;34880:180;34928:77;34925:1;34918:88;35025:4;35022:1;35015:15;35049:4;35046:1;35039:15;35066:180;35114:77;35111:1;35104:88;35211:4;35208:1;35201:15;35235:4;35232:1;35225:15;35252:180;35300:77;35297:1;35290:88;35397:4;35394:1;35387:15;35421:4;35418:1;35411:15;35438:117;35547:1;35544;35537:12;35561:117;35670:1;35667;35660:12;35684:117;35793:1;35790;35783:12;35807:117;35916:1;35913;35906:12;35930:102;35971:6;36022:2;36018:7;36013:2;36006:5;36002:14;35998:28;35988:38;;35930:102;;;:::o;36038:221::-;36178:34;36174:1;36166:6;36162:14;36155:58;36247:4;36242:2;36234:6;36230:15;36223:29;36038:221;:::o;36265:166::-;36405:18;36401:1;36393:6;36389:14;36382:42;36265:166;:::o;36437:225::-;36577:34;36573:1;36565:6;36561:14;36554:58;36646:8;36641:2;36633:6;36629:15;36622:33;36437:225;:::o;36668:229::-;36808:34;36804:1;36796:6;36792:14;36785:58;36877:12;36872:2;36864:6;36860:15;36853:37;36668:229;:::o;36903:222::-;37043:34;37039:1;37031:6;37027:14;37020:58;37112:5;37107:2;37099:6;37095:15;37088:30;36903:222;:::o;37131:224::-;37271:34;37267:1;37259:6;37255:14;37248:58;37340:7;37335:2;37327:6;37323:15;37316:32;37131:224;:::o;37361:167::-;37501:19;37497:1;37489:6;37485:14;37478:43;37361:167;:::o;37534:157::-;37674:9;37670:1;37662:6;37658:14;37651:33;37534:157;:::o;37697:244::-;37837:34;37833:1;37825:6;37821:14;37814:58;37906:27;37901:2;37893:6;37889:15;37882:52;37697:244;:::o;37947:230::-;38087:34;38083:1;38075:6;38071:14;38064:58;38156:13;38151:2;38143:6;38139:15;38132:38;37947:230;:::o;38183:225::-;38323:34;38319:1;38311:6;38307:14;38300:58;38392:8;38387:2;38379:6;38375:15;38368:33;38183:225;:::o;38414:182::-;38554:34;38550:1;38542:6;38538:14;38531:58;38414:182;:::o;38602:234::-;38742:34;38738:1;38730:6;38726:14;38719:58;38811:17;38806:2;38798:6;38794:15;38787:42;38602:234;:::o;38842:176::-;38982:28;38978:1;38970:6;38966:14;38959:52;38842:176;:::o;39024:237::-;39164:34;39160:1;39152:6;39148:14;39141:58;39233:20;39228:2;39220:6;39216:15;39209:45;39024:237;:::o;39267:221::-;39407:34;39403:1;39395:6;39391:14;39384:58;39476:4;39471:2;39463:6;39459:15;39452:29;39267:221;:::o;39494:238::-;39634:34;39630:1;39622:6;39618:14;39611:58;39703:21;39698:2;39690:6;39686:15;39679:46;39494:238;:::o;39738:179::-;39878:31;39874:1;39866:6;39862:14;39855:55;39738:179;:::o;39923:220::-;40063:34;40059:1;40051:6;40047:14;40040:58;40132:3;40127:2;40119:6;40115:15;40108:28;39923:220;:::o;40149:233::-;40289:34;40285:1;40277:6;40273:14;40266:58;40358:16;40353:2;40345:6;40341:15;40334:41;40149:233;:::o;40388:234::-;40528:34;40524:1;40516:6;40512:14;40505:58;40597:17;40592:2;40584:6;40580:15;40573:42;40388:234;:::o;40628:232::-;40768:34;40764:1;40756:6;40752:14;40745:58;40837:15;40832:2;40824:6;40820:15;40813:40;40628:232;:::o;40866:221::-;41006:34;41002:1;40994:6;40990:14;40983:58;41075:4;41070:2;41062:6;41058:15;41051:29;40866:221;:::o;41093:122::-;41166:24;41184:5;41166:24;:::i;:::-;41159:5;41156:35;41146:63;;41205:1;41202;41195:12;41146:63;41093:122;:::o;41221:116::-;41291:21;41306:5;41291:21;:::i;:::-;41284:5;41281:32;41271:60;;41327:1;41324;41317:12;41271:60;41221:116;:::o;41343:120::-;41415:23;41432:5;41415:23;:::i;:::-;41408:5;41405:34;41395:62;;41453:1;41450;41443:12;41395:62;41343:120;:::o;41469:122::-;41542:24;41560:5;41542:24;:::i;:::-;41535:5;41532:35;41522:63;;41581:1;41578;41571:12;41522:63;41469:122;:::o

Swarm Source

ipfs://32ceaed408590ca065c5277d121a051eaf59e56ac94bccad37836a508fb71408
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.