ETH Price: $2,967.89 (-1.34%)
Gas: 3 Gwei

Token

Boombirds (Boombirds)
 

Overview

Max Total Supply

2,437 Boombirds

Holders

470

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
2ez4me.eth
Balance
1 Boombirds
0x3a4894f709544e5a3289d55c3b7f988839362712
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:
Boombirds

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

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

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

contract Boombirds is ERC721A, Ownable, ReentrancyGuard {

    mapping (address => uint256) public freeAddress;
    string public baseURI;  
    uint public price = 7000000000000000; //0.007 ETH
    uint public minWallet = 100000000000000000; //0.1 ETH
    uint public maxPerTx = 30; 
    uint public maxPerWallet = 90;
    uint public totalFree = 2000;
    uint public maxSupply = 10000;
    uint public freeMint = 1;
    bool public mintEnabled;
    constructor() ERC721A("Boombirds", "Boombirds",90,10000){}

    function mint(uint256 amount) external payable
    {
        require(mintEnabled, "Minting Pause");
        uint cost = price;
        if(msg.value == 0 && totalSupply() + amount <= totalFree) {
           require(address(msg.sender).balance >= minWallet,"Insufficient Funds");
           require(freeAddress[msg.sender] + amount <= freeMint,"Limit");
           cost = 0;
           freeAddress[msg.sender] += amount;
        }
        require(msg.value == amount * cost,"Insufficient Funds");
        require(totalSupply() + amount <= maxSupply,"Soldout");
        require(numberMinted(msg.sender) + amount <= maxPerWallet,"Max Per Wallet");
        require(amount <= maxPerTx, "Limit Per Transaction");
        _safeMint(msg.sender, amount);
    }

    function airdrop(address to ,uint256 amount) external onlyOwner
    {
        _safeMint(to, amount);
    }
    function ownerBatchMint(uint256 amount) external onlyOwner
    {
        require(totalSupply() + amount <= maxSupply,"too many!");

        _safeMint(msg.sender, amount);
    }

    function toggleMinting() external onlyOwner {
        mintEnabled = !mintEnabled;
    }

    function setMinWallet(uint256 minWallet_)  external onlyOwner {
        minWallet = minWallet_;
    }
    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

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

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

    function setTotalFree(uint256 totalFree_) external onlyOwner {
        totalFree = totalFree_;
    }
    function setFreeMint(uint256 freeMint_) external onlyOwner {
        freeMint = freeMint_;
    }

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

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

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

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

    function withdraw() external onlyOwner nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }
    function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory)
    {
        return ownershipOf(tokenId);
    }

    function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant {
        _setOwnersExplicit(quantity);
    }
}

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

pragma solidity ^0.8.0;

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

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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 4 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 5 of 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":"amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minWallet","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":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ownerBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMint_","type":"uint256"}],"name":"setFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTx_","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerWallet_","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"minWallet_","type":"uint256"}],"name":"setMinWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"totalFree_","type":"uint256"}],"name":"setTotalFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]

60c06040526000805560006007556618de76816d8000600c5567016345785d8a0000600d55601e600e55605a600f556107d060105561271060115560016012553480156200004c57600080fd5b506040518060400160405280600981526020017f426f6f6d626972647300000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f426f6f6d62697264730000000000000000000000000000000000000000000000815250605a6127106000811162000104576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000fb90620003ac565b60405180910390fd5b600082116200014a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000141906200038a565b60405180910390fd5b8360019080519060200190620001629291906200028c565b5082600290805190602001906200017b9291906200028c565b508160a08181525050806080818152505050505050620001b0620001a4620001be60201b60201c565b620001c660201b60201c565b6001600981905550620004e2565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200029a90620003df565b90600052602060002090601f016020900481019282620002be57600085556200030a565b82601f10620002d957805160ff19168380011785556200030a565b828001600101855582156200030a579182015b8281111562000309578251825591602001919060010190620002ec565b5b5090506200031991906200031d565b5090565b5b80821115620003385760008160009055506001016200031e565b5090565b60006200034b602783620003ce565b9150620003588262000444565b604082019050919050565b600062000372602e83620003ce565b91506200037f8262000493565b604082019050919050565b60006020820190508181036000830152620003a5816200033c565b9050919050565b60006020820190508181036000830152620003c78162000363565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620003f857607f821691505b602082108114156200040f576200040e62000415565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a0516156b76200051d60003960008181612d8c01528181612db5015261355f015260008181612b140152612b4801526156b76000f3fe60806040526004361061027d5760003560e01c80637d55094d1161014f578063b88d4fde116100c1578063d7224ba01161007a578063d7224ba014610973578063dc33e6811461099e578063e268e4d3146109db578063e985e9c514610a04578063f2fde38b14610a41578063f968adbe14610a6a5761027d565b8063b88d4fde14610865578063c6f6f2161461088e578063c87b56dd146108b7578063d1239730146108f4578063d29c51031461091f578063d5abeb01146109485761027d565b806391b7f5ed1161011357806391b7f5ed146107645780639231ab2a1461078d57806395d89b41146107ca578063a035b1fe146107f5578063a0712d6814610820578063a22cb4651461083c5761027d565b80637d55094d146106a55780638ba4cc3c146106bc5780638cdcaab8146106e55780638da5cb5b146107105780638db89f071461073b5761027d565b80633ccfd60b116101f35780635b70ea9f116101ac5780635b70ea9f146105955780636352211e146105c05780636c0360eb146105fd57806370a082311461062857806370e0936914610665578063715018a61461068e5761027d565b80633ccfd60b1461049b57806342842e0e146104b2578063453c2310146104db5780634f6ccce71461050657806355f804b314610543578063563aaf111461056c5761027d565b8063228025e811610245578063228025e81461037b57806323b872dd146103a45780632463488e146103cd5780632d20fb601461040a5780632f745c5914610433578063333e44e6146104705761027d565b806301ffc9a71461028257806306fdde03146102bf578063081812fc146102ea578063095ea7b31461032757806318160ddd14610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613d6f565b610a95565b6040516102b69190614483565b60405180910390f35b3480156102cb57600080fd5b506102d4610bdf565b6040516102e1919061449e565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190613e16565b610c71565b60405161031e919061441c565b60405180910390f35b34801561033357600080fd5b5061034e60048036038101906103499190613d2f565b610cf6565b005b34801561035c57600080fd5b50610365610e0f565b60405161037291906148db565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d9190613e16565b610e18565b005b3480156103b057600080fd5b506103cb60048036038101906103c69190613c19565b610e9e565b005b3480156103d957600080fd5b506103f460048036038101906103ef9190613bac565b610eae565b60405161040191906148db565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c9190613e16565b610ec6565b005b34801561043f57600080fd5b5061045a60048036038101906104559190613d2f565b610fa4565b60405161046791906148db565b60405180910390f35b34801561047c57600080fd5b506104856111a2565b60405161049291906148db565b60405180910390f35b3480156104a757600080fd5b506104b06111a8565b005b3480156104be57600080fd5b506104d960048036038101906104d49190613c19565b611329565b005b3480156104e757600080fd5b506104f0611349565b6040516104fd91906148db565b60405180910390f35b34801561051257600080fd5b5061052d60048036038101906105289190613e16565b61134f565b60405161053a91906148db565b60405180910390f35b34801561054f57600080fd5b5061056a60048036038101906105659190613dc9565b6113a2565b005b34801561057857600080fd5b50610593600480360381019061058e9190613e16565b611434565b005b3480156105a157600080fd5b506105aa6114ba565b6040516105b791906148db565b60405180910390f35b3480156105cc57600080fd5b506105e760048036038101906105e29190613e16565b6114c0565b6040516105f4919061441c565b60405180910390f35b34801561060957600080fd5b506106126114d6565b60405161061f919061449e565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a9190613bac565b611564565b60405161065c91906148db565b60405180910390f35b34801561067157600080fd5b5061068c60048036038101906106879190613e16565b61164d565b005b34801561069a57600080fd5b506106a36116d3565b005b3480156106b157600080fd5b506106ba61175b565b005b3480156106c857600080fd5b506106e360048036038101906106de9190613d2f565b611803565b005b3480156106f157600080fd5b506106fa61188d565b60405161070791906148db565b60405180910390f35b34801561071c57600080fd5b50610725611893565b604051610732919061441c565b60405180910390f35b34801561074757600080fd5b50610762600480360381019061075d9190613e16565b6118bd565b005b34801561077057600080fd5b5061078b60048036038101906107869190613e16565b61199d565b005b34801561079957600080fd5b506107b460048036038101906107af9190613e16565b611a23565b6040516107c191906148c0565b60405180910390f35b3480156107d657600080fd5b506107df611a3b565b6040516107ec919061449e565b60405180910390f35b34801561080157600080fd5b5061080a611acd565b60405161081791906148db565b60405180910390f35b61083a60048036038101906108359190613e16565b611ad3565b005b34801561084857600080fd5b50610863600480360381019061085e9190613cef565b611de7565b005b34801561087157600080fd5b5061088c60048036038101906108879190613c6c565b611f68565b005b34801561089a57600080fd5b506108b560048036038101906108b09190613e16565b611fc4565b005b3480156108c357600080fd5b506108de60048036038101906108d99190613e16565b61204a565b6040516108eb919061449e565b60405180910390f35b34801561090057600080fd5b506109096120f1565b6040516109169190614483565b60405180910390f35b34801561092b57600080fd5b5061094660048036038101906109419190613e16565b612104565b005b34801561095457600080fd5b5061095d61218a565b60405161096a91906148db565b60405180910390f35b34801561097f57600080fd5b50610988612190565b60405161099591906148db565b60405180910390f35b3480156109aa57600080fd5b506109c560048036038101906109c09190613bac565b612196565b6040516109d291906148db565b60405180910390f35b3480156109e757600080fd5b50610a0260048036038101906109fd9190613e16565b6121a8565b005b348015610a1057600080fd5b50610a2b6004803603810190610a269190613bd9565b61222e565b604051610a389190614483565b60405180910390f35b348015610a4d57600080fd5b50610a686004803603810190610a639190613bac565b6122c2565b005b348015610a7657600080fd5b50610a7f6123ba565b604051610a8c91906148db565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b6057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bc857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bd85750610bd7826123c0565b5b9050919050565b606060018054610bee90614c39565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1a90614c39565b8015610c675780601f10610c3c57610100808354040283529160200191610c67565b820191906000526020600020905b815481529060010190602001808311610c4a57829003601f168201915b5050505050905090565b6000610c7c8261242a565b610cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb290614880565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d01826114c0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6990614740565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d91612437565b73ffffffffffffffffffffffffffffffffffffffff161480610dc05750610dbf81610dba612437565b61222e565b5b610dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df690614640565b60405180910390fd5b610e0a83838361243f565b505050565b60008054905090565b610e20612437565b73ffffffffffffffffffffffffffffffffffffffff16610e3e611893565b73ffffffffffffffffffffffffffffffffffffffff1614610e94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8b906146c0565b60405180910390fd5b8060118190555050565b610ea98383836124f1565b505050565b600a6020528060005260406000206000915090505481565b610ece612437565b73ffffffffffffffffffffffffffffffffffffffff16610eec611893565b73ffffffffffffffffffffffffffffffffffffffff1614610f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f39906146c0565b60405180910390fd5b60026009541415610f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7f90614840565b60405180910390fd5b6002600981905550610f9981612aaa565b600160098190555050565b6000610faf83611564565b8210610ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe7906144c0565b60405180910390fd5b6000610ffa610e0f565b905060008060005b83811015611160576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110f457806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561114c578684141561113d57819550505050505061119c565b838061114890614c9c565b9450505b50808061115890614c9c565b915050611002565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119390614800565b60405180910390fd5b92915050565b60105481565b6111b0612437565b73ffffffffffffffffffffffffffffffffffffffff166111ce611893565b73ffffffffffffffffffffffffffffffffffffffff1614611224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121b906146c0565b60405180910390fd5b6002600954141561126a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126190614840565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161129890614407565b60006040518083038185875af1925050503d80600081146112d5576040519150601f19603f3d011682016040523d82523d6000602084013e6112da565b606091505b505090508061131e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131590614760565b60405180910390fd5b506001600981905550565b61134483838360405180602001604052806000815250611f68565b505050565b600f5481565b6000611359610e0f565b821061139a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139190614580565b60405180910390fd5b819050919050565b6113aa612437565b73ffffffffffffffffffffffffffffffffffffffff166113c8611893565b73ffffffffffffffffffffffffffffffffffffffff161461141e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611415906146c0565b60405180910390fd5b8181600b919061142f9291906139a0565b505050565b61143c612437565b73ffffffffffffffffffffffffffffffffffffffff1661145a611893565b73ffffffffffffffffffffffffffffffffffffffff16146114b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a7906146c0565b60405180910390fd5b8060108190555050565b60125481565b60006114cb82612d38565b600001519050919050565b600b80546114e390614c39565b80601f016020809104026020016040519081016040528092919081815260200182805461150f90614c39565b801561155c5780601f106115315761010080835404028352916020019161155c565b820191906000526020600020905b81548152906001019060200180831161153f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cc90614680565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611655612437565b73ffffffffffffffffffffffffffffffffffffffff16611673611893565b73ffffffffffffffffffffffffffffffffffffffff16146116c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c0906146c0565b60405180910390fd5b8060128190555050565b6116db612437565b73ffffffffffffffffffffffffffffffffffffffff166116f9611893565b73ffffffffffffffffffffffffffffffffffffffff161461174f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611746906146c0565b60405180910390fd5b6117596000612f3b565b565b611763612437565b73ffffffffffffffffffffffffffffffffffffffff16611781611893565b73ffffffffffffffffffffffffffffffffffffffff16146117d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ce906146c0565b60405180910390fd5b601360009054906101000a900460ff1615601360006101000a81548160ff021916908315150217905550565b61180b612437565b73ffffffffffffffffffffffffffffffffffffffff16611829611893565b73ffffffffffffffffffffffffffffffffffffffff161461187f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611876906146c0565b60405180910390fd5b6118898282613001565b5050565b600d5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118c5612437565b73ffffffffffffffffffffffffffffffffffffffff166118e3611893565b73ffffffffffffffffffffffffffffffffffffffff1614611939576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611930906146c0565b60405180910390fd5b60115481611945610e0f565b61194f91906149e0565b1115611990576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198790614600565b60405180910390fd5b61199a3382613001565b50565b6119a5612437565b73ffffffffffffffffffffffffffffffffffffffff166119c3611893565b73ffffffffffffffffffffffffffffffffffffffff1614611a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a10906146c0565b60405180910390fd5b80600c8190555050565b611a2b613a26565b611a3482612d38565b9050919050565b606060028054611a4a90614c39565b80601f0160208091040260200160405190810160405280929190818152602001828054611a7690614c39565b8015611ac35780601f10611a9857610100808354040283529160200191611ac3565b820191906000526020600020905b815481529060010190602001808311611aa657829003601f168201915b5050505050905090565b600c5481565b601360009054906101000a900460ff16611b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1990614540565b60405180910390fd5b6000600c549050600034148015611b4d575060105482611b40610e0f565b611b4a91906149e0565b11155b15611c9857600d543373ffffffffffffffffffffffffffffffffffffffff16311015611bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba590614560565b60405180910390fd5b60125482600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611bfc91906149e0565b1115611c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c34906147e0565b60405180910390fd5b6000905081600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c9091906149e0565b925050819055505b8082611ca49190614a67565b3414611ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdc90614560565b60405180910390fd5b60115482611cf1610e0f565b611cfb91906149e0565b1115611d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3390614620565b60405180910390fd5b600f5482611d4933612196565b611d5391906149e0565b1115611d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8b906145e0565b60405180910390fd5b600e54821115611dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd0906144e0565b60405180910390fd5b611de33383613001565b5050565b611def612437565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5490614700565b60405180910390fd5b8060066000611e6a612437565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f17612437565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f5c9190614483565b60405180910390a35050565b611f738484846124f1565b611f7f8484848461301f565b611fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb590614780565b60405180910390fd5b50505050565b611fcc612437565b73ffffffffffffffffffffffffffffffffffffffff16611fea611893565b73ffffffffffffffffffffffffffffffffffffffff1614612040576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612037906146c0565b60405180910390fd5b80600e8190555050565b60606120558261242a565b612094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208b906146e0565b60405180910390fd5b600061209e6131b6565b905060008151116120be57604051806020016040528060008152506120e9565b806120c884613248565b6040516020016120d99291906143e3565b6040516020818303038152906040525b915050919050565b601360009054906101000a900460ff1681565b61210c612437565b73ffffffffffffffffffffffffffffffffffffffff1661212a611893565b73ffffffffffffffffffffffffffffffffffffffff1614612180576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612177906146c0565b60405180910390fd5b80600d8190555050565b60115481565b60075481565b60006121a1826133a9565b9050919050565b6121b0612437565b73ffffffffffffffffffffffffffffffffffffffff166121ce611893565b73ffffffffffffffffffffffffffffffffffffffff1614612224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221b906146c0565b60405180910390fd5b80600f8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122ca612437565b73ffffffffffffffffffffffffffffffffffffffff166122e8611893565b73ffffffffffffffffffffffffffffffffffffffff161461233e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612335906146c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a590614500565b60405180910390fd5b6123b781612f3b565b50565b600e5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006124fc82612d38565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612523612437565b73ffffffffffffffffffffffffffffffffffffffff16148061257f5750612548612437565b73ffffffffffffffffffffffffffffffffffffffff1661256784610c71565b73ffffffffffffffffffffffffffffffffffffffff16145b8061259b575061259a8260000151612595612437565b61222e565b5b9050806125dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d490614720565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461264f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612646906146a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156126bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b6906145a0565b60405180910390fd5b6126cc8585856001613492565b6126dc600084846000015161243f565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661274a9190614ac1565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166127ee919061499a565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846128f491906149e0565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612a3a5761296a8161242a565b15612a39576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612aa28686866001613498565b505050505050565b6000600754905060008211612af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aeb90614660565b60405180910390fd5b600060018383612b0491906149e0565b612b0e9190614af5565b905060017f0000000000000000000000000000000000000000000000000000000000000000612b3d9190614af5565b811115612b745760017f0000000000000000000000000000000000000000000000000000000000000000612b719190614af5565b90505b612b7d8161242a565b612bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb390614820565b60405180910390fd5b60008290505b818111612d1f57600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612d0c576000612c3f82612d38565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b8080612d1790614c9c565b915050612bc2565b50600181612d2d91906149e0565b600781905550505050565b612d40613a26565b612d498261242a565b612d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7f90614520565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310612dec5760017f000000000000000000000000000000000000000000000000000000000000000084612ddf9190614af5565b612de991906149e0565b90505b60008390505b818110612efa576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ee657809350505050612f36565b508080612ef290614c0f565b915050612df2565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2d90614860565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61301b82826040518060200160405280600081525061349e565b5050565b60006130408473ffffffffffffffffffffffffffffffffffffffff1661397d565b156131a9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613069612437565b8786866040518563ffffffff1660e01b815260040161308b9493929190614437565b602060405180830381600087803b1580156130a557600080fd5b505af19250505080156130d657506040513d601f19601f820116820180604052508101906130d39190613d9c565b60015b613159573d8060008114613106576040519150601f19603f3d011682016040523d82523d6000602084013e61310b565b606091505b50600081511415613151576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314890614780565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506131ae565b600190505b949350505050565b6060600b80546131c590614c39565b80601f01602080910402602001604051908101604052809291908181526020018280546131f190614c39565b801561323e5780601f106132135761010080835404028352916020019161323e565b820191906000526020600020905b81548152906001019060200180831161322157829003601f168201915b5050505050905090565b60606000821415613290576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506133a4565b600082905060005b600082146132c25780806132ab90614c9c565b915050600a826132bb9190614a36565b9150613298565b60008167ffffffffffffffff8111156132de576132dd614dd2565b5b6040519080825280601f01601f1916602001820160405280156133105781602001600182028036833780820191505090505b5090505b6000851461339d576001826133299190614af5565b9150600a856133389190614ce5565b603061334491906149e0565b60f81b81838151811061335a57613359614da3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133969190614a36565b9450613314565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561341a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613411906145c0565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161350b906147c0565b60405180910390fd5b61351d8161242a565b1561355d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613554906147a0565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008311156135c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135b7906148a0565b60405180910390fd5b6135cd6000858386613492565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516136ca919061499a565b6fffffffffffffffffffffffffffffffff1681526020018583602001516136f1919061499a565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561396057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613900600088848861301f565b61393f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161393690614780565b60405180910390fd5b818061394a90614c9c565b925050808061395890614c9c565b91505061388f565b50806000819055506139756000878588613498565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546139ac90614c39565b90600052602060002090601f0160209004810192826139ce5760008555613a15565b82601f106139e757803560ff1916838001178555613a15565b82800160010185558215613a15579182015b82811115613a145782358255916020019190600101906139f9565b5b509050613a229190613a60565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613a79576000816000905550600101613a61565b5090565b6000613a90613a8b8461491b565b6148f6565b905082815260208101848484011115613aac57613aab614e10565b5b613ab7848285614bcd565b509392505050565b600081359050613ace81615625565b92915050565b600081359050613ae38161563c565b92915050565b600081359050613af881615653565b92915050565b600081519050613b0d81615653565b92915050565b600082601f830112613b2857613b27614e06565b5b8135613b38848260208601613a7d565b91505092915050565b60008083601f840112613b5757613b56614e06565b5b8235905067ffffffffffffffff811115613b7457613b73614e01565b5b602083019150836001820283011115613b9057613b8f614e0b565b5b9250929050565b600081359050613ba68161566a565b92915050565b600060208284031215613bc257613bc1614e1a565b5b6000613bd084828501613abf565b91505092915050565b60008060408385031215613bf057613bef614e1a565b5b6000613bfe85828601613abf565b9250506020613c0f85828601613abf565b9150509250929050565b600080600060608486031215613c3257613c31614e1a565b5b6000613c4086828701613abf565b9350506020613c5186828701613abf565b9250506040613c6286828701613b97565b9150509250925092565b60008060008060808587031215613c8657613c85614e1a565b5b6000613c9487828801613abf565b9450506020613ca587828801613abf565b9350506040613cb687828801613b97565b925050606085013567ffffffffffffffff811115613cd757613cd6614e15565b5b613ce387828801613b13565b91505092959194509250565b60008060408385031215613d0657613d05614e1a565b5b6000613d1485828601613abf565b9250506020613d2585828601613ad4565b9150509250929050565b60008060408385031215613d4657613d45614e1a565b5b6000613d5485828601613abf565b9250506020613d6585828601613b97565b9150509250929050565b600060208284031215613d8557613d84614e1a565b5b6000613d9384828501613ae9565b91505092915050565b600060208284031215613db257613db1614e1a565b5b6000613dc084828501613afe565b91505092915050565b60008060208385031215613de057613ddf614e1a565b5b600083013567ffffffffffffffff811115613dfe57613dfd614e15565b5b613e0a85828601613b41565b92509250509250929050565b600060208284031215613e2c57613e2b614e1a565b5b6000613e3a84828501613b97565b91505092915050565b613e4c81614b29565b82525050565b613e5b81614b29565b82525050565b613e6a81614b3b565b82525050565b6000613e7b8261494c565b613e858185614962565b9350613e95818560208601614bdc565b613e9e81614e1f565b840191505092915050565b6000613eb482614957565b613ebe818561497e565b9350613ece818560208601614bdc565b613ed781614e1f565b840191505092915050565b6000613eed82614957565b613ef7818561498f565b9350613f07818560208601614bdc565b80840191505092915050565b6000613f2060228361497e565b9150613f2b82614e30565b604082019050919050565b6000613f4360158361497e565b9150613f4e82614e7f565b602082019050919050565b6000613f6660268361497e565b9150613f7182614ea8565b604082019050919050565b6000613f89602a8361497e565b9150613f9482614ef7565b604082019050919050565b6000613fac600d8361497e565b9150613fb782614f46565b602082019050919050565b6000613fcf60128361497e565b9150613fda82614f6f565b602082019050919050565b6000613ff260238361497e565b9150613ffd82614f98565b604082019050919050565b600061401560258361497e565b915061402082614fe7565b604082019050919050565b600061403860318361497e565b915061404382615036565b604082019050919050565b600061405b600e8361497e565b915061406682615085565b602082019050919050565b600061407e60098361497e565b9150614089826150ae565b602082019050919050565b60006140a160078361497e565b91506140ac826150d7565b602082019050919050565b60006140c460398361497e565b91506140cf82615100565b604082019050919050565b60006140e760188361497e565b91506140f28261514f565b602082019050919050565b600061410a602b8361497e565b915061411582615178565b604082019050919050565b600061412d60268361497e565b9150614138826151c7565b604082019050919050565b600061415060208361497e565b915061415b82615216565b602082019050919050565b6000614173602f8361497e565b915061417e8261523f565b604082019050919050565b6000614196601a8361497e565b91506141a18261528e565b602082019050919050565b60006141b960328361497e565b91506141c4826152b7565b604082019050919050565b60006141dc60228361497e565b91506141e782615306565b604082019050919050565b60006141ff600083614973565b915061420a82615355565b600082019050919050565b600061422260108361497e565b915061422d82615358565b602082019050919050565b600061424560338361497e565b915061425082615381565b604082019050919050565b6000614268601d8361497e565b9150614273826153d0565b602082019050919050565b600061428b60218361497e565b9150614296826153f9565b604082019050919050565b60006142ae60058361497e565b91506142b982615448565b602082019050919050565b60006142d1602e8361497e565b91506142dc82615471565b604082019050919050565b60006142f460268361497e565b91506142ff826154c0565b604082019050919050565b6000614317601f8361497e565b91506143228261550f565b602082019050919050565b600061433a602f8361497e565b915061434582615538565b604082019050919050565b600061435d602d8361497e565b915061436882615587565b604082019050919050565b600061438060228361497e565b915061438b826155d6565b604082019050919050565b6040820160008201516143ac6000850182613e43565b5060208201516143bf60208501826143d4565b50505050565b6143ce81614baf565b82525050565b6143dd81614bb9565b82525050565b60006143ef8285613ee2565b91506143fb8284613ee2565b91508190509392505050565b6000614412826141f2565b9150819050919050565b60006020820190506144316000830184613e52565b92915050565b600060808201905061444c6000830187613e52565b6144596020830186613e52565b61446660408301856143c5565b81810360608301526144788184613e70565b905095945050505050565b60006020820190506144986000830184613e61565b92915050565b600060208201905081810360008301526144b88184613ea9565b905092915050565b600060208201905081810360008301526144d981613f13565b9050919050565b600060208201905081810360008301526144f981613f36565b9050919050565b6000602082019050818103600083015261451981613f59565b9050919050565b6000602082019050818103600083015261453981613f7c565b9050919050565b6000602082019050818103600083015261455981613f9f565b9050919050565b6000602082019050818103600083015261457981613fc2565b9050919050565b6000602082019050818103600083015261459981613fe5565b9050919050565b600060208201905081810360008301526145b981614008565b9050919050565b600060208201905081810360008301526145d98161402b565b9050919050565b600060208201905081810360008301526145f98161404e565b9050919050565b6000602082019050818103600083015261461981614071565b9050919050565b6000602082019050818103600083015261463981614094565b9050919050565b60006020820190508181036000830152614659816140b7565b9050919050565b60006020820190508181036000830152614679816140da565b9050919050565b60006020820190508181036000830152614699816140fd565b9050919050565b600060208201905081810360008301526146b981614120565b9050919050565b600060208201905081810360008301526146d981614143565b9050919050565b600060208201905081810360008301526146f981614166565b9050919050565b6000602082019050818103600083015261471981614189565b9050919050565b60006020820190508181036000830152614739816141ac565b9050919050565b60006020820190508181036000830152614759816141cf565b9050919050565b6000602082019050818103600083015261477981614215565b9050919050565b6000602082019050818103600083015261479981614238565b9050919050565b600060208201905081810360008301526147b98161425b565b9050919050565b600060208201905081810360008301526147d98161427e565b9050919050565b600060208201905081810360008301526147f9816142a1565b9050919050565b60006020820190508181036000830152614819816142c4565b9050919050565b60006020820190508181036000830152614839816142e7565b9050919050565b600060208201905081810360008301526148598161430a565b9050919050565b600060208201905081810360008301526148798161432d565b9050919050565b6000602082019050818103600083015261489981614350565b9050919050565b600060208201905081810360008301526148b981614373565b9050919050565b60006040820190506148d56000830184614396565b92915050565b60006020820190506148f060008301846143c5565b92915050565b6000614900614911565b905061490c8282614c6b565b919050565b6000604051905090565b600067ffffffffffffffff82111561493657614935614dd2565b5b61493f82614e1f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006149a582614b73565b91506149b083614b73565b9250826fffffffffffffffffffffffffffffffff038211156149d5576149d4614d16565b5b828201905092915050565b60006149eb82614baf565b91506149f683614baf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a2b57614a2a614d16565b5b828201905092915050565b6000614a4182614baf565b9150614a4c83614baf565b925082614a5c57614a5b614d45565b5b828204905092915050565b6000614a7282614baf565b9150614a7d83614baf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ab657614ab5614d16565b5b828202905092915050565b6000614acc82614b73565b9150614ad783614b73565b925082821015614aea57614ae9614d16565b5b828203905092915050565b6000614b0082614baf565b9150614b0b83614baf565b925082821015614b1e57614b1d614d16565b5b828203905092915050565b6000614b3482614b8f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614bfa578082015181840152602081019050614bdf565b83811115614c09576000848401525b50505050565b6000614c1a82614baf565b91506000821415614c2e57614c2d614d16565b5b600182039050919050565b60006002820490506001821680614c5157607f821691505b60208210811415614c6557614c64614d74565b5b50919050565b614c7482614e1f565b810181811067ffffffffffffffff82111715614c9357614c92614dd2565b5b80604052505050565b6000614ca782614baf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614cda57614cd9614d16565b5b600182019050919050565b6000614cf082614baf565b9150614cfb83614baf565b925082614d0b57614d0a614d45565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4c696d697420506572205472616e73616374696f6e0000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4d696e74696e6720506175736500000000000000000000000000000000000000600082015250565b7f496e73756666696369656e742046756e64730000000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f4d6178205065722057616c6c6574000000000000000000000000000000000000600082015250565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b7f536f6c646f757400000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4c696d6974000000000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008201527f6c65616e75700000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61562e81614b29565b811461563957600080fd5b50565b61564581614b3b565b811461565057600080fd5b50565b61565c81614b47565b811461566757600080fd5b50565b61567381614baf565b811461567e57600080fd5b5056fea264697066735822122012ec3f606c52ba306330e8f02547828102c2642ce87fece74631d2c97e24bff464736f6c63430008070033

Deployed Bytecode

0x60806040526004361061027d5760003560e01c80637d55094d1161014f578063b88d4fde116100c1578063d7224ba01161007a578063d7224ba014610973578063dc33e6811461099e578063e268e4d3146109db578063e985e9c514610a04578063f2fde38b14610a41578063f968adbe14610a6a5761027d565b8063b88d4fde14610865578063c6f6f2161461088e578063c87b56dd146108b7578063d1239730146108f4578063d29c51031461091f578063d5abeb01146109485761027d565b806391b7f5ed1161011357806391b7f5ed146107645780639231ab2a1461078d57806395d89b41146107ca578063a035b1fe146107f5578063a0712d6814610820578063a22cb4651461083c5761027d565b80637d55094d146106a55780638ba4cc3c146106bc5780638cdcaab8146106e55780638da5cb5b146107105780638db89f071461073b5761027d565b80633ccfd60b116101f35780635b70ea9f116101ac5780635b70ea9f146105955780636352211e146105c05780636c0360eb146105fd57806370a082311461062857806370e0936914610665578063715018a61461068e5761027d565b80633ccfd60b1461049b57806342842e0e146104b2578063453c2310146104db5780634f6ccce71461050657806355f804b314610543578063563aaf111461056c5761027d565b8063228025e811610245578063228025e81461037b57806323b872dd146103a45780632463488e146103cd5780632d20fb601461040a5780632f745c5914610433578063333e44e6146104705761027d565b806301ffc9a71461028257806306fdde03146102bf578063081812fc146102ea578063095ea7b31461032757806318160ddd14610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613d6f565b610a95565b6040516102b69190614483565b60405180910390f35b3480156102cb57600080fd5b506102d4610bdf565b6040516102e1919061449e565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190613e16565b610c71565b60405161031e919061441c565b60405180910390f35b34801561033357600080fd5b5061034e60048036038101906103499190613d2f565b610cf6565b005b34801561035c57600080fd5b50610365610e0f565b60405161037291906148db565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d9190613e16565b610e18565b005b3480156103b057600080fd5b506103cb60048036038101906103c69190613c19565b610e9e565b005b3480156103d957600080fd5b506103f460048036038101906103ef9190613bac565b610eae565b60405161040191906148db565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c9190613e16565b610ec6565b005b34801561043f57600080fd5b5061045a60048036038101906104559190613d2f565b610fa4565b60405161046791906148db565b60405180910390f35b34801561047c57600080fd5b506104856111a2565b60405161049291906148db565b60405180910390f35b3480156104a757600080fd5b506104b06111a8565b005b3480156104be57600080fd5b506104d960048036038101906104d49190613c19565b611329565b005b3480156104e757600080fd5b506104f0611349565b6040516104fd91906148db565b60405180910390f35b34801561051257600080fd5b5061052d60048036038101906105289190613e16565b61134f565b60405161053a91906148db565b60405180910390f35b34801561054f57600080fd5b5061056a60048036038101906105659190613dc9565b6113a2565b005b34801561057857600080fd5b50610593600480360381019061058e9190613e16565b611434565b005b3480156105a157600080fd5b506105aa6114ba565b6040516105b791906148db565b60405180910390f35b3480156105cc57600080fd5b506105e760048036038101906105e29190613e16565b6114c0565b6040516105f4919061441c565b60405180910390f35b34801561060957600080fd5b506106126114d6565b60405161061f919061449e565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a9190613bac565b611564565b60405161065c91906148db565b60405180910390f35b34801561067157600080fd5b5061068c60048036038101906106879190613e16565b61164d565b005b34801561069a57600080fd5b506106a36116d3565b005b3480156106b157600080fd5b506106ba61175b565b005b3480156106c857600080fd5b506106e360048036038101906106de9190613d2f565b611803565b005b3480156106f157600080fd5b506106fa61188d565b60405161070791906148db565b60405180910390f35b34801561071c57600080fd5b50610725611893565b604051610732919061441c565b60405180910390f35b34801561074757600080fd5b50610762600480360381019061075d9190613e16565b6118bd565b005b34801561077057600080fd5b5061078b60048036038101906107869190613e16565b61199d565b005b34801561079957600080fd5b506107b460048036038101906107af9190613e16565b611a23565b6040516107c191906148c0565b60405180910390f35b3480156107d657600080fd5b506107df611a3b565b6040516107ec919061449e565b60405180910390f35b34801561080157600080fd5b5061080a611acd565b60405161081791906148db565b60405180910390f35b61083a60048036038101906108359190613e16565b611ad3565b005b34801561084857600080fd5b50610863600480360381019061085e9190613cef565b611de7565b005b34801561087157600080fd5b5061088c60048036038101906108879190613c6c565b611f68565b005b34801561089a57600080fd5b506108b560048036038101906108b09190613e16565b611fc4565b005b3480156108c357600080fd5b506108de60048036038101906108d99190613e16565b61204a565b6040516108eb919061449e565b60405180910390f35b34801561090057600080fd5b506109096120f1565b6040516109169190614483565b60405180910390f35b34801561092b57600080fd5b5061094660048036038101906109419190613e16565b612104565b005b34801561095457600080fd5b5061095d61218a565b60405161096a91906148db565b60405180910390f35b34801561097f57600080fd5b50610988612190565b60405161099591906148db565b60405180910390f35b3480156109aa57600080fd5b506109c560048036038101906109c09190613bac565b612196565b6040516109d291906148db565b60405180910390f35b3480156109e757600080fd5b50610a0260048036038101906109fd9190613e16565b6121a8565b005b348015610a1057600080fd5b50610a2b6004803603810190610a269190613bd9565b61222e565b604051610a389190614483565b60405180910390f35b348015610a4d57600080fd5b50610a686004803603810190610a639190613bac565b6122c2565b005b348015610a7657600080fd5b50610a7f6123ba565b604051610a8c91906148db565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b6057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bc857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bd85750610bd7826123c0565b5b9050919050565b606060018054610bee90614c39565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1a90614c39565b8015610c675780601f10610c3c57610100808354040283529160200191610c67565b820191906000526020600020905b815481529060010190602001808311610c4a57829003601f168201915b5050505050905090565b6000610c7c8261242a565b610cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb290614880565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d01826114c0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6990614740565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d91612437565b73ffffffffffffffffffffffffffffffffffffffff161480610dc05750610dbf81610dba612437565b61222e565b5b610dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df690614640565b60405180910390fd5b610e0a83838361243f565b505050565b60008054905090565b610e20612437565b73ffffffffffffffffffffffffffffffffffffffff16610e3e611893565b73ffffffffffffffffffffffffffffffffffffffff1614610e94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8b906146c0565b60405180910390fd5b8060118190555050565b610ea98383836124f1565b505050565b600a6020528060005260406000206000915090505481565b610ece612437565b73ffffffffffffffffffffffffffffffffffffffff16610eec611893565b73ffffffffffffffffffffffffffffffffffffffff1614610f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f39906146c0565b60405180910390fd5b60026009541415610f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7f90614840565b60405180910390fd5b6002600981905550610f9981612aaa565b600160098190555050565b6000610faf83611564565b8210610ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe7906144c0565b60405180910390fd5b6000610ffa610e0f565b905060008060005b83811015611160576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110f457806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561114c578684141561113d57819550505050505061119c565b838061114890614c9c565b9450505b50808061115890614c9c565b915050611002565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119390614800565b60405180910390fd5b92915050565b60105481565b6111b0612437565b73ffffffffffffffffffffffffffffffffffffffff166111ce611893565b73ffffffffffffffffffffffffffffffffffffffff1614611224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121b906146c0565b60405180910390fd5b6002600954141561126a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126190614840565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161129890614407565b60006040518083038185875af1925050503d80600081146112d5576040519150601f19603f3d011682016040523d82523d6000602084013e6112da565b606091505b505090508061131e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131590614760565b60405180910390fd5b506001600981905550565b61134483838360405180602001604052806000815250611f68565b505050565b600f5481565b6000611359610e0f565b821061139a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139190614580565b60405180910390fd5b819050919050565b6113aa612437565b73ffffffffffffffffffffffffffffffffffffffff166113c8611893565b73ffffffffffffffffffffffffffffffffffffffff161461141e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611415906146c0565b60405180910390fd5b8181600b919061142f9291906139a0565b505050565b61143c612437565b73ffffffffffffffffffffffffffffffffffffffff1661145a611893565b73ffffffffffffffffffffffffffffffffffffffff16146114b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a7906146c0565b60405180910390fd5b8060108190555050565b60125481565b60006114cb82612d38565b600001519050919050565b600b80546114e390614c39565b80601f016020809104026020016040519081016040528092919081815260200182805461150f90614c39565b801561155c5780601f106115315761010080835404028352916020019161155c565b820191906000526020600020905b81548152906001019060200180831161153f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cc90614680565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611655612437565b73ffffffffffffffffffffffffffffffffffffffff16611673611893565b73ffffffffffffffffffffffffffffffffffffffff16146116c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c0906146c0565b60405180910390fd5b8060128190555050565b6116db612437565b73ffffffffffffffffffffffffffffffffffffffff166116f9611893565b73ffffffffffffffffffffffffffffffffffffffff161461174f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611746906146c0565b60405180910390fd5b6117596000612f3b565b565b611763612437565b73ffffffffffffffffffffffffffffffffffffffff16611781611893565b73ffffffffffffffffffffffffffffffffffffffff16146117d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ce906146c0565b60405180910390fd5b601360009054906101000a900460ff1615601360006101000a81548160ff021916908315150217905550565b61180b612437565b73ffffffffffffffffffffffffffffffffffffffff16611829611893565b73ffffffffffffffffffffffffffffffffffffffff161461187f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611876906146c0565b60405180910390fd5b6118898282613001565b5050565b600d5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118c5612437565b73ffffffffffffffffffffffffffffffffffffffff166118e3611893565b73ffffffffffffffffffffffffffffffffffffffff1614611939576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611930906146c0565b60405180910390fd5b60115481611945610e0f565b61194f91906149e0565b1115611990576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198790614600565b60405180910390fd5b61199a3382613001565b50565b6119a5612437565b73ffffffffffffffffffffffffffffffffffffffff166119c3611893565b73ffffffffffffffffffffffffffffffffffffffff1614611a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a10906146c0565b60405180910390fd5b80600c8190555050565b611a2b613a26565b611a3482612d38565b9050919050565b606060028054611a4a90614c39565b80601f0160208091040260200160405190810160405280929190818152602001828054611a7690614c39565b8015611ac35780601f10611a9857610100808354040283529160200191611ac3565b820191906000526020600020905b815481529060010190602001808311611aa657829003601f168201915b5050505050905090565b600c5481565b601360009054906101000a900460ff16611b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1990614540565b60405180910390fd5b6000600c549050600034148015611b4d575060105482611b40610e0f565b611b4a91906149e0565b11155b15611c9857600d543373ffffffffffffffffffffffffffffffffffffffff16311015611bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba590614560565b60405180910390fd5b60125482600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611bfc91906149e0565b1115611c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c34906147e0565b60405180910390fd5b6000905081600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c9091906149e0565b925050819055505b8082611ca49190614a67565b3414611ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdc90614560565b60405180910390fd5b60115482611cf1610e0f565b611cfb91906149e0565b1115611d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3390614620565b60405180910390fd5b600f5482611d4933612196565b611d5391906149e0565b1115611d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8b906145e0565b60405180910390fd5b600e54821115611dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd0906144e0565b60405180910390fd5b611de33383613001565b5050565b611def612437565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5490614700565b60405180910390fd5b8060066000611e6a612437565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f17612437565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f5c9190614483565b60405180910390a35050565b611f738484846124f1565b611f7f8484848461301f565b611fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb590614780565b60405180910390fd5b50505050565b611fcc612437565b73ffffffffffffffffffffffffffffffffffffffff16611fea611893565b73ffffffffffffffffffffffffffffffffffffffff1614612040576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612037906146c0565b60405180910390fd5b80600e8190555050565b60606120558261242a565b612094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208b906146e0565b60405180910390fd5b600061209e6131b6565b905060008151116120be57604051806020016040528060008152506120e9565b806120c884613248565b6040516020016120d99291906143e3565b6040516020818303038152906040525b915050919050565b601360009054906101000a900460ff1681565b61210c612437565b73ffffffffffffffffffffffffffffffffffffffff1661212a611893565b73ffffffffffffffffffffffffffffffffffffffff1614612180576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612177906146c0565b60405180910390fd5b80600d8190555050565b60115481565b60075481565b60006121a1826133a9565b9050919050565b6121b0612437565b73ffffffffffffffffffffffffffffffffffffffff166121ce611893565b73ffffffffffffffffffffffffffffffffffffffff1614612224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221b906146c0565b60405180910390fd5b80600f8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122ca612437565b73ffffffffffffffffffffffffffffffffffffffff166122e8611893565b73ffffffffffffffffffffffffffffffffffffffff161461233e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612335906146c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a590614500565b60405180910390fd5b6123b781612f3b565b50565b600e5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006124fc82612d38565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612523612437565b73ffffffffffffffffffffffffffffffffffffffff16148061257f5750612548612437565b73ffffffffffffffffffffffffffffffffffffffff1661256784610c71565b73ffffffffffffffffffffffffffffffffffffffff16145b8061259b575061259a8260000151612595612437565b61222e565b5b9050806125dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d490614720565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461264f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612646906146a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156126bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b6906145a0565b60405180910390fd5b6126cc8585856001613492565b6126dc600084846000015161243f565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661274a9190614ac1565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166127ee919061499a565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846128f491906149e0565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612a3a5761296a8161242a565b15612a39576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612aa28686866001613498565b505050505050565b6000600754905060008211612af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aeb90614660565b60405180910390fd5b600060018383612b0491906149e0565b612b0e9190614af5565b905060017f0000000000000000000000000000000000000000000000000000000000002710612b3d9190614af5565b811115612b745760017f0000000000000000000000000000000000000000000000000000000000002710612b719190614af5565b90505b612b7d8161242a565b612bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb390614820565b60405180910390fd5b60008290505b818111612d1f57600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612d0c576000612c3f82612d38565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b8080612d1790614c9c565b915050612bc2565b50600181612d2d91906149e0565b600781905550505050565b612d40613a26565b612d498261242a565b612d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7f90614520565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000005a8310612dec5760017f000000000000000000000000000000000000000000000000000000000000005a84612ddf9190614af5565b612de991906149e0565b90505b60008390505b818110612efa576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ee657809350505050612f36565b508080612ef290614c0f565b915050612df2565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2d90614860565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61301b82826040518060200160405280600081525061349e565b5050565b60006130408473ffffffffffffffffffffffffffffffffffffffff1661397d565b156131a9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613069612437565b8786866040518563ffffffff1660e01b815260040161308b9493929190614437565b602060405180830381600087803b1580156130a557600080fd5b505af19250505080156130d657506040513d601f19601f820116820180604052508101906130d39190613d9c565b60015b613159573d8060008114613106576040519150601f19603f3d011682016040523d82523d6000602084013e61310b565b606091505b50600081511415613151576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314890614780565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506131ae565b600190505b949350505050565b6060600b80546131c590614c39565b80601f01602080910402602001604051908101604052809291908181526020018280546131f190614c39565b801561323e5780601f106132135761010080835404028352916020019161323e565b820191906000526020600020905b81548152906001019060200180831161322157829003601f168201915b5050505050905090565b60606000821415613290576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506133a4565b600082905060005b600082146132c25780806132ab90614c9c565b915050600a826132bb9190614a36565b9150613298565b60008167ffffffffffffffff8111156132de576132dd614dd2565b5b6040519080825280601f01601f1916602001820160405280156133105781602001600182028036833780820191505090505b5090505b6000851461339d576001826133299190614af5565b9150600a856133389190614ce5565b603061334491906149e0565b60f81b81838151811061335a57613359614da3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133969190614a36565b9450613314565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561341a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613411906145c0565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161350b906147c0565b60405180910390fd5b61351d8161242a565b1561355d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613554906147a0565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000005a8311156135c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135b7906148a0565b60405180910390fd5b6135cd6000858386613492565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516136ca919061499a565b6fffffffffffffffffffffffffffffffff1681526020018583602001516136f1919061499a565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561396057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613900600088848861301f565b61393f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161393690614780565b60405180910390fd5b818061394a90614c9c565b925050808061395890614c9c565b91505061388f565b50806000819055506139756000878588613498565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546139ac90614c39565b90600052602060002090601f0160209004810192826139ce5760008555613a15565b82601f106139e757803560ff1916838001178555613a15565b82800160010185558215613a15579182015b82811115613a145782358255916020019190600101906139f9565b5b509050613a229190613a60565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613a79576000816000905550600101613a61565b5090565b6000613a90613a8b8461491b565b6148f6565b905082815260208101848484011115613aac57613aab614e10565b5b613ab7848285614bcd565b509392505050565b600081359050613ace81615625565b92915050565b600081359050613ae38161563c565b92915050565b600081359050613af881615653565b92915050565b600081519050613b0d81615653565b92915050565b600082601f830112613b2857613b27614e06565b5b8135613b38848260208601613a7d565b91505092915050565b60008083601f840112613b5757613b56614e06565b5b8235905067ffffffffffffffff811115613b7457613b73614e01565b5b602083019150836001820283011115613b9057613b8f614e0b565b5b9250929050565b600081359050613ba68161566a565b92915050565b600060208284031215613bc257613bc1614e1a565b5b6000613bd084828501613abf565b91505092915050565b60008060408385031215613bf057613bef614e1a565b5b6000613bfe85828601613abf565b9250506020613c0f85828601613abf565b9150509250929050565b600080600060608486031215613c3257613c31614e1a565b5b6000613c4086828701613abf565b9350506020613c5186828701613abf565b9250506040613c6286828701613b97565b9150509250925092565b60008060008060808587031215613c8657613c85614e1a565b5b6000613c9487828801613abf565b9450506020613ca587828801613abf565b9350506040613cb687828801613b97565b925050606085013567ffffffffffffffff811115613cd757613cd6614e15565b5b613ce387828801613b13565b91505092959194509250565b60008060408385031215613d0657613d05614e1a565b5b6000613d1485828601613abf565b9250506020613d2585828601613ad4565b9150509250929050565b60008060408385031215613d4657613d45614e1a565b5b6000613d5485828601613abf565b9250506020613d6585828601613b97565b9150509250929050565b600060208284031215613d8557613d84614e1a565b5b6000613d9384828501613ae9565b91505092915050565b600060208284031215613db257613db1614e1a565b5b6000613dc084828501613afe565b91505092915050565b60008060208385031215613de057613ddf614e1a565b5b600083013567ffffffffffffffff811115613dfe57613dfd614e15565b5b613e0a85828601613b41565b92509250509250929050565b600060208284031215613e2c57613e2b614e1a565b5b6000613e3a84828501613b97565b91505092915050565b613e4c81614b29565b82525050565b613e5b81614b29565b82525050565b613e6a81614b3b565b82525050565b6000613e7b8261494c565b613e858185614962565b9350613e95818560208601614bdc565b613e9e81614e1f565b840191505092915050565b6000613eb482614957565b613ebe818561497e565b9350613ece818560208601614bdc565b613ed781614e1f565b840191505092915050565b6000613eed82614957565b613ef7818561498f565b9350613f07818560208601614bdc565b80840191505092915050565b6000613f2060228361497e565b9150613f2b82614e30565b604082019050919050565b6000613f4360158361497e565b9150613f4e82614e7f565b602082019050919050565b6000613f6660268361497e565b9150613f7182614ea8565b604082019050919050565b6000613f89602a8361497e565b9150613f9482614ef7565b604082019050919050565b6000613fac600d8361497e565b9150613fb782614f46565b602082019050919050565b6000613fcf60128361497e565b9150613fda82614f6f565b602082019050919050565b6000613ff260238361497e565b9150613ffd82614f98565b604082019050919050565b600061401560258361497e565b915061402082614fe7565b604082019050919050565b600061403860318361497e565b915061404382615036565b604082019050919050565b600061405b600e8361497e565b915061406682615085565b602082019050919050565b600061407e60098361497e565b9150614089826150ae565b602082019050919050565b60006140a160078361497e565b91506140ac826150d7565b602082019050919050565b60006140c460398361497e565b91506140cf82615100565b604082019050919050565b60006140e760188361497e565b91506140f28261514f565b602082019050919050565b600061410a602b8361497e565b915061411582615178565b604082019050919050565b600061412d60268361497e565b9150614138826151c7565b604082019050919050565b600061415060208361497e565b915061415b82615216565b602082019050919050565b6000614173602f8361497e565b915061417e8261523f565b604082019050919050565b6000614196601a8361497e565b91506141a18261528e565b602082019050919050565b60006141b960328361497e565b91506141c4826152b7565b604082019050919050565b60006141dc60228361497e565b91506141e782615306565b604082019050919050565b60006141ff600083614973565b915061420a82615355565b600082019050919050565b600061422260108361497e565b915061422d82615358565b602082019050919050565b600061424560338361497e565b915061425082615381565b604082019050919050565b6000614268601d8361497e565b9150614273826153d0565b602082019050919050565b600061428b60218361497e565b9150614296826153f9565b604082019050919050565b60006142ae60058361497e565b91506142b982615448565b602082019050919050565b60006142d1602e8361497e565b91506142dc82615471565b604082019050919050565b60006142f460268361497e565b91506142ff826154c0565b604082019050919050565b6000614317601f8361497e565b91506143228261550f565b602082019050919050565b600061433a602f8361497e565b915061434582615538565b604082019050919050565b600061435d602d8361497e565b915061436882615587565b604082019050919050565b600061438060228361497e565b915061438b826155d6565b604082019050919050565b6040820160008201516143ac6000850182613e43565b5060208201516143bf60208501826143d4565b50505050565b6143ce81614baf565b82525050565b6143dd81614bb9565b82525050565b60006143ef8285613ee2565b91506143fb8284613ee2565b91508190509392505050565b6000614412826141f2565b9150819050919050565b60006020820190506144316000830184613e52565b92915050565b600060808201905061444c6000830187613e52565b6144596020830186613e52565b61446660408301856143c5565b81810360608301526144788184613e70565b905095945050505050565b60006020820190506144986000830184613e61565b92915050565b600060208201905081810360008301526144b88184613ea9565b905092915050565b600060208201905081810360008301526144d981613f13565b9050919050565b600060208201905081810360008301526144f981613f36565b9050919050565b6000602082019050818103600083015261451981613f59565b9050919050565b6000602082019050818103600083015261453981613f7c565b9050919050565b6000602082019050818103600083015261455981613f9f565b9050919050565b6000602082019050818103600083015261457981613fc2565b9050919050565b6000602082019050818103600083015261459981613fe5565b9050919050565b600060208201905081810360008301526145b981614008565b9050919050565b600060208201905081810360008301526145d98161402b565b9050919050565b600060208201905081810360008301526145f98161404e565b9050919050565b6000602082019050818103600083015261461981614071565b9050919050565b6000602082019050818103600083015261463981614094565b9050919050565b60006020820190508181036000830152614659816140b7565b9050919050565b60006020820190508181036000830152614679816140da565b9050919050565b60006020820190508181036000830152614699816140fd565b9050919050565b600060208201905081810360008301526146b981614120565b9050919050565b600060208201905081810360008301526146d981614143565b9050919050565b600060208201905081810360008301526146f981614166565b9050919050565b6000602082019050818103600083015261471981614189565b9050919050565b60006020820190508181036000830152614739816141ac565b9050919050565b60006020820190508181036000830152614759816141cf565b9050919050565b6000602082019050818103600083015261477981614215565b9050919050565b6000602082019050818103600083015261479981614238565b9050919050565b600060208201905081810360008301526147b98161425b565b9050919050565b600060208201905081810360008301526147d98161427e565b9050919050565b600060208201905081810360008301526147f9816142a1565b9050919050565b60006020820190508181036000830152614819816142c4565b9050919050565b60006020820190508181036000830152614839816142e7565b9050919050565b600060208201905081810360008301526148598161430a565b9050919050565b600060208201905081810360008301526148798161432d565b9050919050565b6000602082019050818103600083015261489981614350565b9050919050565b600060208201905081810360008301526148b981614373565b9050919050565b60006040820190506148d56000830184614396565b92915050565b60006020820190506148f060008301846143c5565b92915050565b6000614900614911565b905061490c8282614c6b565b919050565b6000604051905090565b600067ffffffffffffffff82111561493657614935614dd2565b5b61493f82614e1f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006149a582614b73565b91506149b083614b73565b9250826fffffffffffffffffffffffffffffffff038211156149d5576149d4614d16565b5b828201905092915050565b60006149eb82614baf565b91506149f683614baf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a2b57614a2a614d16565b5b828201905092915050565b6000614a4182614baf565b9150614a4c83614baf565b925082614a5c57614a5b614d45565b5b828204905092915050565b6000614a7282614baf565b9150614a7d83614baf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ab657614ab5614d16565b5b828202905092915050565b6000614acc82614b73565b9150614ad783614b73565b925082821015614aea57614ae9614d16565b5b828203905092915050565b6000614b0082614baf565b9150614b0b83614baf565b925082821015614b1e57614b1d614d16565b5b828203905092915050565b6000614b3482614b8f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614bfa578082015181840152602081019050614bdf565b83811115614c09576000848401525b50505050565b6000614c1a82614baf565b91506000821415614c2e57614c2d614d16565b5b600182039050919050565b60006002820490506001821680614c5157607f821691505b60208210811415614c6557614c64614d74565b5b50919050565b614c7482614e1f565b810181811067ffffffffffffffff82111715614c9357614c92614dd2565b5b80604052505050565b6000614ca782614baf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614cda57614cd9614d16565b5b600182019050919050565b6000614cf082614baf565b9150614cfb83614baf565b925082614d0b57614d0a614d45565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4c696d697420506572205472616e73616374696f6e0000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4d696e74696e6720506175736500000000000000000000000000000000000000600082015250565b7f496e73756666696369656e742046756e64730000000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f4d6178205065722057616c6c6574000000000000000000000000000000000000600082015250565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b7f536f6c646f757400000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4c696d6974000000000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008201527f6c65616e75700000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61562e81614b29565b811461563957600080fd5b50565b61564581614b3b565b811461565057600080fd5b50565b61565c81614b47565b811461566757600080fd5b50565b61567381614baf565b811461567e57600080fd5b5056fea264697066735822122012ec3f606c52ba306330e8f02547828102c2642ce87fece74631d2c97e24bff464736f6c63430008070033

Deployed Bytecode Sourcemap

205:3273:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4251:370:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5977:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7502:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7065:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2812:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2785:102:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8352:142:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;270:47:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3351:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3443:744:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;537:28:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3011:186;;;;;;;;;;;;;:::i;:::-;;8557:157:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;501:29:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2975:177:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2139:102:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2343;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;608:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5800:118:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;324:21:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4677:211:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2451:98:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1668:101:0;;;;;;;;;;;;;:::i;:::-;;1812:89:11;;;;;;;;;;;;;:::i;:::-;;1508:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;409:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1036:85:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1623:181:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2249:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3203:140;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6132:98:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;354:36:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;735:765;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7770:274:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8777:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2557:98:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6293:394:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;639:23:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1909:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;572:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13192:43:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2018:113:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2663:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8107:186:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1918:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;468:25:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4251:370:12;4378:4;4423:25;4408:40;;;:11;:40;;;;:99;;;;4474:33;4459:48;;;:11;:48;;;;4408:99;:160;;;;4533:35;4518:50;;;:11;:50;;;;4408:160;:207;;;;4579:36;4603:11;4579:23;:36::i;:::-;4408:207;4394:221;;4251:370;;;:::o;5977:94::-;6031:13;6060:5;6053:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5977:94;:::o;7502:204::-;7570:7;7594:16;7602:7;7594;:16::i;:::-;7586:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;7676:15;:24;7692:7;7676:24;;;;;;;;;;;;;;;;;;;;;7669:31;;7502:204;;;:::o;7065:379::-;7134:13;7150:24;7166:7;7150:15;:24::i;:::-;7134:40;;7195:5;7189:11;;:2;:11;;;;7181:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;7280:5;7264:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;7289:37;7306:5;7313:12;:10;:12::i;:::-;7289:16;:37::i;:::-;7264:62;7248:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;7410:28;7419:2;7423:7;7432:5;7410:8;:28::i;:::-;7127:317;7065:379;;:::o;2812:94::-;2865:7;2888:12;;2881:19;;2812:94;:::o;2785:102:11:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2869:10:11::1;2857:9;:22;;;;2785:102:::0;:::o;8352:142:12:-;8460:28;8470:4;8476:2;8480:7;8460:9;:28::i;:::-;8352:142;;;:::o;270:47:11:-;;;;;;;;;;;;;;;;;:::o;3351:124::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1744:1:1::1;2325:7;;:19;;2317:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1744:1;2455:7;:18;;;;3439:28:11::2;3458:8;3439:18;:28::i;:::-;1701:1:1::1;2628:7;:22;;;;3351:124:11::0;:::o;3443:744:12:-;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;537:28:11:-;;;;:::o;3011:186::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1744:1:1::1;2325:7;;:19;;2317:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1744:1;2455:7;:18;;;;3075:12:11::2;3093:10;:15;;3116:21;3093:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3074:68;;;3161:7;3153:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;3063:134;1701:1:1::1;2628:7;:22;;;;3011:186:11:o:0;8557:157:12:-;8669:39;8686:4;8692:2;8696:7;8669:39;;;;;;;;;;;;:16;:39::i;:::-;8557:157;;;:::o;501:29:11:-;;;;:::o;2975:177:12:-;3042:7;3074:13;:11;:13::i;:::-;3066:5;:21;3058:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;3141:5;3134:12;;2975:177;;;:::o;2139:102:11:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2225:8:11::1;;2215:7;:18;;;;;;;:::i;:::-;;2139:102:::0;;:::o;2343:::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2427:10:11::1;2415:9;:22;;;;2343:102:::0;:::o;608:24::-;;;;:::o;5800:118:12:-;5864:7;5887:20;5899:7;5887:11;:20::i;:::-;:25;;;5880:32;;5800:118;;;:::o;324:21:11:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4677:211:12:-;4741:7;4782:1;4765:19;;:5;:19;;;;4757:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;4854:12;:19;4867:5;4854:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;4846:36;;4839:43;;4677:211;;;:::o;2451:98:11:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2532:9:11::1;2521:8;:20;;;;2451:98:::0;:::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;1812:89:11:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1882:11:11::1;;;;;;;;;;;1881:12;1867:11;;:26;;;;;;;;;;;;;;;;;;1812:89::o:0;1508:109::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1588:21:11::1;1598:2;1602:6;1588:9;:21::i;:::-;1508:109:::0;;:::o;409:42::-;;;;:::o;1036:85:0:-;1082:7;1108:6;;;;;;;;;;;1101:13;;1036:85;:::o;1623:181:11:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1732:9:11::1;;1722:6;1706:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;1698:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;1767:29;1777:10;1789:6;1767:9;:29::i;:::-;1623:181:::0;:::o;2249:86::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2321:6:11::1;2313:5;:14;;;;2249:86:::0;:::o;3203:140::-;3269:21;;:::i;:::-;3315:20;3327:7;3315:11;:20::i;:::-;3308:27;;3203:140;;;:::o;6132:98:12:-;6188:13;6217:7;6210:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6132:98;:::o;354:36:11:-;;;;:::o;735:765::-;806:11;;;;;;;;;;;798:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;846:9;858:5;;846:17;;890:1;877:9;:14;:53;;;;;921:9;;911:6;895:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;877:53;874:298;;;985:9;;962:10;954:27;;;:40;;946:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;1074:8;;1064:6;1038:11;:23;1050:10;1038:23;;;;;;;;;;;;;;;;:32;;;;:::i;:::-;:44;;1030:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;1112:1;1105:8;;1154:6;1127:11;:23;1139:10;1127:23;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;874:298;1212:4;1203:6;:13;;;;:::i;:::-;1190:9;:26;1182:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;1283:9;;1273:6;1257:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;1249:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:12;;1349:6;1322:24;1335:10;1322:12;:24::i;:::-;:33;;;;:::i;:::-;:49;;1314:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;1418:8;;1408:6;:18;;1400:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;1463:29;1473:10;1485:6;1463:9;:29::i;:::-;787:713;735:765;:::o;7770:274:12:-;7873:12;:10;:12::i;:::-;7861:24;;:8;:24;;;;7853:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;7970:8;7925:18;:32;7944:12;:10;:12::i;:::-;7925:32;;;;;;;;;;;;;;;:42;7958:8;7925:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;8019:8;7990:48;;8005:12;:10;:12::i;:::-;7990:48;;;8029:8;7990:48;;;;;;:::i;:::-;;;;;;;;7770:274;;:::o;8777:311::-;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;2557:98:11:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2638:9:11::1;2627:8;:20;;;;2557:98:::0;:::o;6293:394:12:-;6391:13;6432:16;6440:7;6432;:16::i;:::-;6416:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;6522:21;6546:10;:8;:10::i;:::-;6522:34;;6601:1;6583:7;6577:21;:25;:104;;;;;;;;;;;;;;;;;6638:7;6647:18;:7;:16;:18::i;:::-;6621:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6577:104;6563:118;;;6293:394;;;:::o;639:23:11:-;;;;;;;;;;;;;:::o;1909:103::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1994:10:11::1;1982:9;:22;;;;1909:103:::0;:::o;572:29::-;;;;:::o;13192:43:12:-;;;;:::o;2018:113:11:-;2076:7;2103:20;2117:5;2103:13;:20::i;:::-;2096:27;;2018:113;;;:::o;2663:114::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2756:13:11::1;2741:12;:28;;;;2663:114:::0;:::o;8107:186:12:-;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;468:25:11:-;;;;:::o;829:155:9:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;9327:105:12:-;9384:4;9414:12;;9404:7;:22;9397:29;;9327:105;;;:::o;640:96:7:-;693:7;719:10;712:17;;640:96;:::o;13014:172:12:-;13138:2;13111:15;:24;13127:7;13111:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;13172:7;13168:2;13152:28;;13161:5;13152:28;;;;;;;;;;;;13014:172;;;:::o;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;13340:846::-;13402:25;13430:24;;13402:52;;13480:1;13469:8;:12;13461:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;13517:16;13567:1;13556:8;13536:17;:28;;;;:::i;:::-;:32;;;;:::i;:::-;13517:51;;13607:1;13590:14;:18;;;;:::i;:::-;13579:8;:29;13575:81;;;13647:1;13630:14;:18;;;;:::i;:::-;13619:29;;13575:81;13771:17;13779:8;13771:7;:17::i;:::-;13763:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13843:9;13855:17;13843:29;;13838:297;13879:8;13874:1;:13;13838:297;;13938:1;13907:33;;:11;:14;13919:1;13907:14;;;;;;;;;;;:19;;;;;;;;;;;;:33;;;13903:225;;;13953:31;13987:14;13999:1;13987:11;:14::i;:::-;13953:48;;14029:89;;;;;;;;14056:9;:14;;;14029:89;;;;;;14083:9;:24;;;14029:89;;;;;14012:11;:14;14024:1;14012:14;;;;;;;;;;;:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13942:186;13903:225;13889:3;;;;;:::i;:::-;;;;13838:297;;;;14179:1;14168:8;:12;;;;:::i;:::-;14141:24;:39;;;;13395:791;;13340:846;:::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:12:-;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;2895:108:11:-;2955:13;2988:7;2981:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2895: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;4894:240:12:-;4955:7;5004:1;4987:19;;:5;:19;;;;4971:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;5095:12;:19;5108:5;5095:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;5087:41;;5080:48;;4894:240;;;:::o;15881:141::-;;;;;:::o;16408:140::-;;;;;:::o;9875:1272::-;9980:20;10003:12;;9980:35;;10044:1;10030:16;;:2;:16;;;;10022:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;10221:21;10229:12;10221:7;:21::i;:::-;10220:22;10212:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;10303:12;10291:8;:24;;10283:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;10363:61;10393:1;10397:2;10401:12;10415:8;10363:21;:61::i;:::-;10433:30;10466:12;:16;10479:2;10466:16;;;;;;;;;;;;;;;10433:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10508:119;;;;;;;;10558:8;10528:11;:19;;;:39;;;;:::i;:::-;10508:119;;;;;;10611:8;10576:11;:24;;;:44;;;;:::i;:::-;10508:119;;;;;10489:12;:16;10502:2;10489:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10662:43;;;;;;;;10677:2;10662:43;;;;;;10688:15;10662:43;;;;;10634:11;:25;10646:12;10634:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10714:20;10737:12;10714:35;;10763:9;10758:281;10782:8;10778:1;:12;10758:281;;;10836:12;10832:2;10811:38;;10828:1;10811:38;;;;;;;;;;;;10876:59;10907:1;10911:2;10915:12;10929:5;10876:22;:59::i;:::-;10858:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;11017:14;;;;;:::i;:::-;;;;10792:3;;;;;:::i;:::-;;;;10758:281;;;;11062:12;11047;:27;;;;11081:60;11110:1;11114:2;11118:12;11132:8;11081:20;:60::i;:::-;9973:1174;;;9875:1272;;;:::o;1175:320:6:-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:13:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:108::-;7050:24;7068:5;7050:24;:::i;:::-;7045:3;7038:37;6973:108;;:::o;7087:118::-;7174:24;7192:5;7174:24;:::i;:::-;7169:3;7162:37;7087:118;;:::o;7211:109::-;7292:21;7307:5;7292:21;:::i;:::-;7287:3;7280:34;7211:109;;:::o;7326:360::-;7412:3;7440:38;7472:5;7440:38;:::i;:::-;7494:70;7557:6;7552:3;7494:70;:::i;:::-;7487:77;;7573:52;7618:6;7613:3;7606:4;7599:5;7595:16;7573:52;:::i;:::-;7650:29;7672:6;7650:29;:::i;:::-;7645:3;7641:39;7634:46;;7416:270;7326:360;;;;:::o;7692:364::-;7780:3;7808:39;7841:5;7808:39;:::i;:::-;7863:71;7927:6;7922:3;7863:71;:::i;:::-;7856:78;;7943:52;7988:6;7983:3;7976:4;7969:5;7965:16;7943:52;:::i;:::-;8020:29;8042:6;8020:29;:::i;:::-;8015:3;8011:39;8004:46;;7784:272;7692:364;;;;:::o;8062:377::-;8168:3;8196:39;8229:5;8196:39;:::i;:::-;8251:89;8333:6;8328:3;8251:89;:::i;:::-;8244:96;;8349:52;8394:6;8389:3;8382:4;8375:5;8371:16;8349:52;:::i;:::-;8426:6;8421:3;8417:16;8410:23;;8172:267;8062:377;;;;:::o;8445:366::-;8587:3;8608:67;8672:2;8667:3;8608:67;:::i;:::-;8601:74;;8684:93;8773:3;8684:93;:::i;:::-;8802:2;8797:3;8793:12;8786:19;;8445:366;;;:::o;8817:::-;8959:3;8980:67;9044:2;9039:3;8980:67;:::i;:::-;8973:74;;9056:93;9145:3;9056:93;:::i;:::-;9174:2;9169:3;9165:12;9158:19;;8817:366;;;:::o;9189:::-;9331:3;9352:67;9416:2;9411:3;9352:67;:::i;:::-;9345:74;;9428:93;9517:3;9428:93;:::i;:::-;9546:2;9541:3;9537:12;9530:19;;9189:366;;;:::o;9561:::-;9703:3;9724:67;9788:2;9783:3;9724:67;:::i;:::-;9717:74;;9800:93;9889:3;9800:93;:::i;:::-;9918:2;9913:3;9909:12;9902:19;;9561:366;;;:::o;9933:::-;10075:3;10096:67;10160:2;10155:3;10096:67;:::i;:::-;10089:74;;10172:93;10261:3;10172:93;:::i;:::-;10290:2;10285:3;10281:12;10274:19;;9933:366;;;:::o;10305:::-;10447:3;10468:67;10532:2;10527:3;10468:67;:::i;:::-;10461:74;;10544:93;10633:3;10544:93;:::i;:::-;10662:2;10657:3;10653:12;10646:19;;10305:366;;;:::o;10677:::-;10819:3;10840:67;10904:2;10899:3;10840:67;:::i;:::-;10833:74;;10916:93;11005:3;10916:93;:::i;:::-;11034:2;11029:3;11025:12;11018:19;;10677:366;;;:::o;11049:::-;11191:3;11212:67;11276:2;11271:3;11212:67;:::i;:::-;11205:74;;11288:93;11377:3;11288:93;:::i;:::-;11406:2;11401:3;11397:12;11390:19;;11049:366;;;:::o;11421:::-;11563:3;11584:67;11648:2;11643:3;11584:67;:::i;:::-;11577:74;;11660:93;11749:3;11660:93;:::i;:::-;11778:2;11773:3;11769:12;11762:19;;11421:366;;;:::o;11793:::-;11935:3;11956:67;12020:2;12015:3;11956:67;:::i;:::-;11949:74;;12032:93;12121:3;12032:93;:::i;:::-;12150:2;12145:3;12141:12;12134:19;;11793:366;;;:::o;12165:365::-;12307:3;12328:66;12392:1;12387:3;12328:66;:::i;:::-;12321:73;;12403:93;12492:3;12403:93;:::i;:::-;12521:2;12516:3;12512:12;12505:19;;12165:365;;;:::o;12536:::-;12678:3;12699:66;12763:1;12758:3;12699:66;:::i;:::-;12692:73;;12774:93;12863:3;12774:93;:::i;:::-;12892:2;12887:3;12883:12;12876:19;;12536:365;;;:::o;12907:366::-;13049:3;13070:67;13134:2;13129:3;13070:67;:::i;:::-;13063:74;;13146:93;13235:3;13146:93;:::i;:::-;13264:2;13259:3;13255:12;13248:19;;12907:366;;;:::o;13279:::-;13421:3;13442:67;13506:2;13501:3;13442:67;:::i;:::-;13435:74;;13518:93;13607:3;13518:93;:::i;:::-;13636:2;13631:3;13627:12;13620:19;;13279:366;;;:::o;13651:::-;13793:3;13814:67;13878:2;13873:3;13814:67;:::i;:::-;13807:74;;13890:93;13979:3;13890:93;:::i;:::-;14008:2;14003:3;13999:12;13992:19;;13651:366;;;:::o;14023:::-;14165:3;14186:67;14250:2;14245:3;14186:67;:::i;:::-;14179:74;;14262:93;14351:3;14262:93;:::i;:::-;14380:2;14375:3;14371:12;14364:19;;14023:366;;;:::o;14395:::-;14537:3;14558:67;14622:2;14617:3;14558:67;:::i;:::-;14551:74;;14634:93;14723:3;14634:93;:::i;:::-;14752:2;14747:3;14743:12;14736:19;;14395:366;;;:::o;14767:::-;14909:3;14930:67;14994:2;14989:3;14930:67;:::i;:::-;14923:74;;15006:93;15095:3;15006:93;:::i;:::-;15124:2;15119:3;15115:12;15108:19;;14767:366;;;:::o;15139:::-;15281:3;15302:67;15366:2;15361:3;15302:67;:::i;:::-;15295:74;;15378:93;15467:3;15378:93;:::i;:::-;15496:2;15491:3;15487:12;15480:19;;15139:366;;;:::o;15511:::-;15653:3;15674:67;15738:2;15733:3;15674:67;:::i;:::-;15667:74;;15750:93;15839:3;15750:93;:::i;:::-;15868:2;15863:3;15859:12;15852:19;;15511:366;;;:::o;15883:::-;16025:3;16046:67;16110:2;16105:3;16046:67;:::i;:::-;16039:74;;16122:93;16211:3;16122:93;:::i;:::-;16240:2;16235:3;16231:12;16224:19;;15883:366;;;:::o;16255:398::-;16414:3;16435:83;16516:1;16511:3;16435:83;:::i;:::-;16428:90;;16527:93;16616:3;16527:93;:::i;:::-;16645:1;16640:3;16636:11;16629:18;;16255:398;;;:::o;16659:366::-;16801:3;16822:67;16886:2;16881:3;16822:67;:::i;:::-;16815:74;;16898:93;16987:3;16898:93;:::i;:::-;17016:2;17011:3;17007:12;17000:19;;16659:366;;;:::o;17031:::-;17173:3;17194:67;17258:2;17253:3;17194:67;:::i;:::-;17187:74;;17270:93;17359:3;17270:93;:::i;:::-;17388:2;17383:3;17379:12;17372:19;;17031:366;;;:::o;17403:::-;17545:3;17566:67;17630:2;17625:3;17566:67;:::i;:::-;17559:74;;17642:93;17731:3;17642:93;:::i;:::-;17760:2;17755:3;17751:12;17744:19;;17403:366;;;:::o;17775:::-;17917:3;17938:67;18002:2;17997:3;17938:67;:::i;:::-;17931:74;;18014:93;18103:3;18014:93;:::i;:::-;18132:2;18127:3;18123:12;18116:19;;17775:366;;;:::o;18147:365::-;18289:3;18310:66;18374:1;18369:3;18310:66;:::i;:::-;18303:73;;18385:93;18474:3;18385:93;:::i;:::-;18503:2;18498:3;18494:12;18487:19;;18147:365;;;:::o;18518:366::-;18660:3;18681:67;18745:2;18740:3;18681:67;:::i;:::-;18674:74;;18757:93;18846:3;18757:93;:::i;:::-;18875:2;18870:3;18866:12;18859:19;;18518:366;;;:::o;18890:::-;19032:3;19053:67;19117:2;19112:3;19053:67;:::i;:::-;19046:74;;19129:93;19218:3;19129:93;:::i;:::-;19247:2;19242:3;19238:12;19231:19;;18890:366;;;:::o;19262:::-;19404:3;19425:67;19489:2;19484:3;19425:67;:::i;:::-;19418:74;;19501:93;19590:3;19501:93;:::i;:::-;19619:2;19614:3;19610:12;19603:19;;19262:366;;;:::o;19634:::-;19776:3;19797:67;19861:2;19856:3;19797:67;:::i;:::-;19790:74;;19873:93;19962:3;19873:93;:::i;:::-;19991:2;19986:3;19982:12;19975:19;;19634:366;;;:::o;20006:::-;20148:3;20169:67;20233:2;20228:3;20169:67;:::i;:::-;20162:74;;20245:93;20334:3;20245:93;:::i;:::-;20363:2;20358:3;20354:12;20347:19;;20006:366;;;:::o;20378:::-;20520:3;20541:67;20605:2;20600:3;20541:67;:::i;:::-;20534:74;;20617:93;20706:3;20617:93;:::i;:::-;20735:2;20730:3;20726:12;20719:19;;20378:366;;;:::o;20820:529::-;20981:4;20976:3;20972:14;21068:4;21061:5;21057:16;21051:23;21087:63;21144:4;21139:3;21135:14;21121:12;21087:63;:::i;:::-;20996:164;21252:4;21245:5;21241:16;21235:23;21271:61;21326:4;21321:3;21317:14;21303:12;21271:61;:::i;:::-;21170:172;20950:399;20820:529;;:::o;21355:118::-;21442:24;21460:5;21442:24;:::i;:::-;21437:3;21430:37;21355:118;;:::o;21479:105::-;21554:23;21571:5;21554:23;:::i;:::-;21549:3;21542:36;21479:105;;:::o;21590:435::-;21770:3;21792:95;21883:3;21874:6;21792:95;:::i;:::-;21785:102;;21904:95;21995:3;21986:6;21904:95;:::i;:::-;21897:102;;22016:3;22009:10;;21590:435;;;;;:::o;22031:379::-;22215:3;22237:147;22380:3;22237:147;:::i;:::-;22230:154;;22401:3;22394:10;;22031:379;;;:::o;22416:222::-;22509:4;22547:2;22536:9;22532:18;22524:26;;22560:71;22628:1;22617:9;22613:17;22604:6;22560:71;:::i;:::-;22416:222;;;;:::o;22644:640::-;22839:4;22877:3;22866:9;22862:19;22854:27;;22891:71;22959:1;22948:9;22944:17;22935:6;22891:71;:::i;:::-;22972:72;23040:2;23029:9;23025:18;23016:6;22972:72;:::i;:::-;23054;23122:2;23111:9;23107:18;23098:6;23054:72;:::i;:::-;23173:9;23167:4;23163:20;23158:2;23147:9;23143:18;23136:48;23201:76;23272:4;23263:6;23201:76;:::i;:::-;23193:84;;22644:640;;;;;;;:::o;23290:210::-;23377:4;23415:2;23404:9;23400:18;23392:26;;23428:65;23490:1;23479:9;23475:17;23466:6;23428:65;:::i;:::-;23290:210;;;;:::o;23506:313::-;23619:4;23657:2;23646:9;23642:18;23634:26;;23706:9;23700:4;23696:20;23692:1;23681:9;23677:17;23670:47;23734:78;23807:4;23798:6;23734:78;:::i;:::-;23726:86;;23506:313;;;;:::o;23825:419::-;23991:4;24029:2;24018:9;24014:18;24006:26;;24078:9;24072:4;24068:20;24064:1;24053:9;24049:17;24042:47;24106:131;24232:4;24106:131;:::i;:::-;24098:139;;23825:419;;;:::o;24250:::-;24416:4;24454:2;24443:9;24439:18;24431:26;;24503:9;24497:4;24493:20;24489:1;24478:9;24474:17;24467:47;24531:131;24657:4;24531:131;:::i;:::-;24523:139;;24250:419;;;:::o;24675:::-;24841:4;24879:2;24868:9;24864:18;24856:26;;24928:9;24922:4;24918:20;24914:1;24903:9;24899:17;24892:47;24956:131;25082:4;24956:131;:::i;:::-;24948:139;;24675:419;;;:::o;25100:::-;25266:4;25304:2;25293:9;25289:18;25281:26;;25353:9;25347:4;25343:20;25339:1;25328:9;25324:17;25317:47;25381:131;25507:4;25381:131;:::i;:::-;25373:139;;25100:419;;;:::o;25525:::-;25691:4;25729:2;25718:9;25714:18;25706:26;;25778:9;25772:4;25768:20;25764:1;25753:9;25749:17;25742:47;25806:131;25932:4;25806:131;:::i;:::-;25798:139;;25525:419;;;:::o;25950:::-;26116:4;26154:2;26143:9;26139:18;26131:26;;26203:9;26197:4;26193:20;26189:1;26178:9;26174:17;26167:47;26231:131;26357:4;26231:131;:::i;:::-;26223:139;;25950:419;;;:::o;26375:::-;26541:4;26579:2;26568:9;26564:18;26556:26;;26628:9;26622:4;26618:20;26614:1;26603:9;26599:17;26592:47;26656:131;26782:4;26656:131;:::i;:::-;26648:139;;26375:419;;;:::o;26800:::-;26966:4;27004:2;26993:9;26989:18;26981:26;;27053:9;27047:4;27043:20;27039:1;27028:9;27024:17;27017:47;27081:131;27207:4;27081:131;:::i;:::-;27073:139;;26800:419;;;:::o;27225:::-;27391:4;27429:2;27418:9;27414:18;27406:26;;27478:9;27472:4;27468:20;27464:1;27453:9;27449:17;27442:47;27506:131;27632:4;27506:131;:::i;:::-;27498:139;;27225:419;;;:::o;27650:::-;27816:4;27854:2;27843:9;27839:18;27831:26;;27903:9;27897:4;27893:20;27889:1;27878:9;27874:17;27867:47;27931:131;28057:4;27931:131;:::i;:::-;27923:139;;27650:419;;;:::o;28075:::-;28241:4;28279:2;28268:9;28264:18;28256:26;;28328:9;28322:4;28318:20;28314:1;28303:9;28299:17;28292:47;28356:131;28482:4;28356:131;:::i;:::-;28348:139;;28075:419;;;:::o;28500:::-;28666:4;28704:2;28693:9;28689:18;28681:26;;28753:9;28747:4;28743:20;28739:1;28728:9;28724:17;28717:47;28781:131;28907:4;28781:131;:::i;:::-;28773:139;;28500:419;;;:::o;28925:::-;29091:4;29129:2;29118:9;29114:18;29106:26;;29178:9;29172:4;29168:20;29164:1;29153:9;29149:17;29142:47;29206:131;29332:4;29206:131;:::i;:::-;29198:139;;28925:419;;;:::o;29350:::-;29516:4;29554:2;29543:9;29539:18;29531:26;;29603:9;29597:4;29593:20;29589:1;29578:9;29574:17;29567:47;29631:131;29757:4;29631:131;:::i;:::-;29623:139;;29350:419;;;:::o;29775:::-;29941:4;29979:2;29968:9;29964:18;29956:26;;30028:9;30022:4;30018:20;30014:1;30003:9;29999:17;29992:47;30056:131;30182:4;30056:131;:::i;:::-;30048:139;;29775:419;;;:::o;30200:::-;30366:4;30404:2;30393:9;30389:18;30381:26;;30453:9;30447:4;30443:20;30439:1;30428:9;30424:17;30417:47;30481:131;30607:4;30481:131;:::i;:::-;30473:139;;30200:419;;;:::o;30625:::-;30791:4;30829:2;30818:9;30814:18;30806:26;;30878:9;30872:4;30868:20;30864:1;30853:9;30849:17;30842:47;30906:131;31032:4;30906:131;:::i;:::-;30898:139;;30625:419;;;:::o;31050:::-;31216:4;31254:2;31243:9;31239:18;31231:26;;31303:9;31297:4;31293:20;31289:1;31278:9;31274:17;31267:47;31331:131;31457:4;31331:131;:::i;:::-;31323:139;;31050:419;;;:::o;31475:::-;31641:4;31679:2;31668:9;31664:18;31656:26;;31728:9;31722:4;31718:20;31714:1;31703:9;31699:17;31692:47;31756:131;31882:4;31756:131;:::i;:::-;31748:139;;31475:419;;;:::o;31900:::-;32066:4;32104:2;32093:9;32089:18;32081:26;;32153:9;32147:4;32143:20;32139:1;32128:9;32124:17;32117:47;32181:131;32307:4;32181:131;:::i;:::-;32173:139;;31900:419;;;:::o;32325:::-;32491:4;32529:2;32518:9;32514:18;32506:26;;32578:9;32572:4;32568:20;32564:1;32553:9;32549:17;32542:47;32606:131;32732:4;32606:131;:::i;:::-;32598:139;;32325:419;;;:::o;32750:::-;32916:4;32954:2;32943:9;32939:18;32931:26;;33003:9;32997:4;32993:20;32989:1;32978:9;32974:17;32967:47;33031:131;33157:4;33031:131;:::i;:::-;33023:139;;32750:419;;;:::o;33175:::-;33341:4;33379:2;33368:9;33364:18;33356:26;;33428:9;33422:4;33418:20;33414:1;33403:9;33399:17;33392:47;33456:131;33582:4;33456:131;:::i;:::-;33448:139;;33175:419;;;:::o;33600:::-;33766:4;33804:2;33793:9;33789:18;33781:26;;33853:9;33847:4;33843:20;33839:1;33828:9;33824:17;33817:47;33881:131;34007:4;33881:131;:::i;:::-;33873:139;;33600:419;;;:::o;34025:::-;34191:4;34229:2;34218:9;34214:18;34206:26;;34278:9;34272:4;34268:20;34264:1;34253:9;34249:17;34242:47;34306:131;34432:4;34306:131;:::i;:::-;34298:139;;34025:419;;;:::o;34450:::-;34616:4;34654:2;34643:9;34639:18;34631:26;;34703:9;34697:4;34693:20;34689:1;34678:9;34674:17;34667:47;34731:131;34857:4;34731:131;:::i;:::-;34723:139;;34450:419;;;:::o;34875:::-;35041:4;35079:2;35068:9;35064:18;35056:26;;35128:9;35122:4;35118:20;35114:1;35103:9;35099:17;35092:47;35156:131;35282:4;35156:131;:::i;:::-;35148:139;;34875:419;;;:::o;35300:::-;35466:4;35504:2;35493:9;35489:18;35481:26;;35553:9;35547:4;35543:20;35539:1;35528:9;35524:17;35517:47;35581:131;35707:4;35581:131;:::i;:::-;35573:139;;35300:419;;;:::o;35725:::-;35891:4;35929:2;35918:9;35914:18;35906:26;;35978:9;35972:4;35968:20;35964:1;35953:9;35949:17;35942:47;36006:131;36132:4;36006:131;:::i;:::-;35998:139;;35725:419;;;:::o;36150:::-;36316:4;36354:2;36343:9;36339:18;36331:26;;36403:9;36397:4;36393:20;36389:1;36378:9;36374:17;36367:47;36431:131;36557:4;36431:131;:::i;:::-;36423:139;;36150:419;;;:::o;36575:::-;36741:4;36779:2;36768:9;36764:18;36756:26;;36828:9;36822:4;36818:20;36814:1;36803:9;36799:17;36792:47;36856:131;36982:4;36856:131;:::i;:::-;36848:139;;36575:419;;;:::o;37000:::-;37166:4;37204:2;37193:9;37189:18;37181:26;;37253:9;37247:4;37243:20;37239:1;37228:9;37224:17;37217:47;37281:131;37407:4;37281:131;:::i;:::-;37273:139;;37000:419;;;:::o;37425:350::-;37582:4;37620:2;37609:9;37605:18;37597:26;;37633:135;37765:1;37754:9;37750:17;37741:6;37633:135;:::i;:::-;37425:350;;;;:::o;37781:222::-;37874:4;37912:2;37901:9;37897:18;37889:26;;37925:71;37993:1;37982:9;37978:17;37969:6;37925:71;:::i;:::-;37781:222;;;;:::o;38009:129::-;38043:6;38070:20;;:::i;:::-;38060:30;;38099:33;38127:4;38119:6;38099:33;:::i;:::-;38009:129;;;:::o;38144:75::-;38177:6;38210:2;38204:9;38194:19;;38144:75;:::o;38225:307::-;38286:4;38376:18;38368:6;38365:30;38362:56;;;38398:18;;:::i;:::-;38362:56;38436:29;38458:6;38436:29;:::i;:::-;38428:37;;38520:4;38514;38510:15;38502:23;;38225:307;;;:::o;38538:98::-;38589:6;38623:5;38617:12;38607:22;;38538:98;;;:::o;38642:99::-;38694:6;38728:5;38722:12;38712:22;;38642:99;;;:::o;38747:168::-;38830:11;38864:6;38859:3;38852:19;38904:4;38899:3;38895:14;38880:29;;38747:168;;;;:::o;38921:147::-;39022:11;39059:3;39044:18;;38921:147;;;;:::o;39074:169::-;39158:11;39192:6;39187:3;39180:19;39232:4;39227:3;39223:14;39208:29;;39074:169;;;;:::o;39249:148::-;39351:11;39388:3;39373:18;;39249:148;;;;:::o;39403:273::-;39443:3;39462:20;39480:1;39462:20;:::i;:::-;39457:25;;39496:20;39514:1;39496:20;:::i;:::-;39491:25;;39618:1;39582:34;39578:42;39575:1;39572:49;39569:75;;;39624:18;;:::i;:::-;39569:75;39668:1;39665;39661:9;39654:16;;39403:273;;;;:::o;39682:305::-;39722:3;39741:20;39759:1;39741:20;:::i;:::-;39736:25;;39775:20;39793:1;39775:20;:::i;:::-;39770:25;;39929:1;39861:66;39857:74;39854:1;39851:81;39848:107;;;39935:18;;:::i;:::-;39848:107;39979:1;39976;39972:9;39965:16;;39682:305;;;;:::o;39993:185::-;40033:1;40050:20;40068:1;40050:20;:::i;:::-;40045:25;;40084:20;40102:1;40084:20;:::i;:::-;40079:25;;40123:1;40113:35;;40128:18;;:::i;:::-;40113:35;40170:1;40167;40163:9;40158:14;;39993:185;;;;:::o;40184:348::-;40224:7;40247:20;40265:1;40247:20;:::i;:::-;40242:25;;40281:20;40299:1;40281:20;:::i;:::-;40276:25;;40469:1;40401:66;40397:74;40394:1;40391:81;40386:1;40379:9;40372:17;40368:105;40365:131;;;40476:18;;:::i;:::-;40365:131;40524:1;40521;40517:9;40506:20;;40184:348;;;;:::o;40538:191::-;40578:4;40598:20;40616:1;40598:20;:::i;:::-;40593:25;;40632:20;40650:1;40632:20;:::i;:::-;40627:25;;40671:1;40668;40665:8;40662:34;;;40676:18;;:::i;:::-;40662:34;40721:1;40718;40714:9;40706:17;;40538:191;;;;:::o;40735:::-;40775:4;40795:20;40813:1;40795:20;:::i;:::-;40790:25;;40829:20;40847:1;40829:20;:::i;:::-;40824:25;;40868:1;40865;40862:8;40859:34;;;40873:18;;:::i;:::-;40859:34;40918:1;40915;40911:9;40903:17;;40735:191;;;;:::o;40932:96::-;40969:7;40998:24;41016:5;40998:24;:::i;:::-;40987:35;;40932:96;;;:::o;41034:90::-;41068:7;41111:5;41104:13;41097:21;41086:32;;41034:90;;;:::o;41130:149::-;41166:7;41206:66;41199:5;41195:78;41184:89;;41130:149;;;:::o;41285:118::-;41322:7;41362:34;41355:5;41351:46;41340:57;;41285:118;;;:::o;41409:126::-;41446:7;41486:42;41479:5;41475:54;41464:65;;41409:126;;;:::o;41541:77::-;41578:7;41607:5;41596:16;;41541:77;;;:::o;41624:101::-;41660:7;41700:18;41693:5;41689:30;41678:41;;41624:101;;;:::o;41731:154::-;41815:6;41810:3;41805;41792:30;41877:1;41868:6;41863:3;41859:16;41852:27;41731:154;;;:::o;41891:307::-;41959:1;41969:113;41983:6;41980:1;41977:13;41969:113;;;42068:1;42063:3;42059:11;42053:18;42049:1;42044:3;42040:11;42033:39;42005:2;42002:1;41998:10;41993:15;;41969:113;;;42100:6;42097:1;42094:13;42091:101;;;42180:1;42171:6;42166:3;42162:16;42155:27;42091:101;41940:258;41891:307;;;:::o;42204:171::-;42243:3;42266:24;42284:5;42266:24;:::i;:::-;42257:33;;42312:4;42305:5;42302:15;42299:41;;;42320:18;;:::i;:::-;42299:41;42367:1;42360:5;42356:13;42349:20;;42204:171;;;:::o;42381:320::-;42425:6;42462:1;42456:4;42452:12;42442:22;;42509:1;42503:4;42499:12;42530:18;42520:81;;42586:4;42578:6;42574:17;42564:27;;42520:81;42648:2;42640:6;42637:14;42617:18;42614:38;42611:84;;;42667:18;;:::i;:::-;42611:84;42432:269;42381:320;;;:::o;42707:281::-;42790:27;42812:4;42790:27;:::i;:::-;42782:6;42778:40;42920:6;42908:10;42905:22;42884:18;42872:10;42869:34;42866:62;42863:88;;;42931:18;;:::i;:::-;42863:88;42971:10;42967:2;42960:22;42750:238;42707:281;;:::o;42994:233::-;43033:3;43056:24;43074:5;43056:24;:::i;:::-;43047:33;;43102:66;43095:5;43092:77;43089:103;;;43172:18;;:::i;:::-;43089:103;43219:1;43212:5;43208:13;43201:20;;42994:233;;;:::o;43233:176::-;43265:1;43282:20;43300:1;43282:20;:::i;:::-;43277:25;;43316:20;43334:1;43316:20;:::i;:::-;43311:25;;43355:1;43345:35;;43360:18;;:::i;:::-;43345:35;43401:1;43398;43394:9;43389:14;;43233:176;;;;:::o;43415:180::-;43463:77;43460:1;43453:88;43560:4;43557:1;43550:15;43584:4;43581:1;43574:15;43601:180;43649:77;43646:1;43639:88;43746:4;43743:1;43736:15;43770:4;43767:1;43760:15;43787:180;43835:77;43832:1;43825:88;43932:4;43929:1;43922:15;43956:4;43953:1;43946:15;43973:180;44021:77;44018:1;44011:88;44118:4;44115:1;44108:15;44142:4;44139:1;44132:15;44159:180;44207:77;44204:1;44197:88;44304:4;44301:1;44294:15;44328:4;44325:1;44318:15;44345:117;44454:1;44451;44444:12;44468:117;44577:1;44574;44567:12;44591:117;44700:1;44697;44690:12;44714:117;44823:1;44820;44813:12;44837:117;44946:1;44943;44936:12;44960:117;45069:1;45066;45059:12;45083:102;45124:6;45175:2;45171:7;45166:2;45159:5;45155:14;45151:28;45141:38;;45083:102;;;:::o;45191:221::-;45331:34;45327:1;45319:6;45315:14;45308:58;45400:4;45395:2;45387:6;45383:15;45376:29;45191:221;:::o;45418:171::-;45558:23;45554:1;45546:6;45542:14;45535:47;45418:171;:::o;45595:225::-;45735:34;45731:1;45723:6;45719:14;45712:58;45804:8;45799:2;45791:6;45787:15;45780:33;45595:225;:::o;45826:229::-;45966:34;45962:1;45954:6;45950:14;45943:58;46035:12;46030:2;46022:6;46018:15;46011:37;45826:229;:::o;46061:163::-;46201:15;46197:1;46189:6;46185:14;46178:39;46061:163;:::o;46230:168::-;46370:20;46366:1;46358:6;46354:14;46347:44;46230:168;:::o;46404:222::-;46544:34;46540:1;46532:6;46528:14;46521:58;46613:5;46608:2;46600:6;46596:15;46589:30;46404:222;:::o;46632:224::-;46772:34;46768:1;46760:6;46756:14;46749:58;46841:7;46836:2;46828:6;46824:15;46817:32;46632:224;:::o;46862:236::-;47002:34;46998:1;46990:6;46986:14;46979:58;47071:19;47066:2;47058:6;47054:15;47047:44;46862:236;:::o;47104:164::-;47244:16;47240:1;47232:6;47228:14;47221:40;47104:164;:::o;47274:159::-;47414:11;47410:1;47402:6;47398:14;47391:35;47274:159;:::o;47439:157::-;47579:9;47575:1;47567:6;47563:14;47556:33;47439:157;:::o;47602:244::-;47742:34;47738:1;47730:6;47726:14;47719:58;47811:27;47806:2;47798:6;47794:15;47787:52;47602:244;:::o;47852:174::-;47992:26;47988:1;47980:6;47976:14;47969:50;47852:174;:::o;48032:230::-;48172:34;48168:1;48160:6;48156:14;48149:58;48241:13;48236:2;48228:6;48224:15;48217:38;48032:230;:::o;48268:225::-;48408:34;48404:1;48396:6;48392:14;48385:58;48477:8;48472:2;48464:6;48460:15;48453:33;48268:225;:::o;48499:182::-;48639:34;48635:1;48627:6;48623:14;48616:58;48499:182;:::o;48687:234::-;48827:34;48823:1;48815:6;48811:14;48804:58;48896:17;48891:2;48883:6;48879:15;48872:42;48687:234;:::o;48927:176::-;49067:28;49063:1;49055:6;49051:14;49044:52;48927:176;:::o;49109:237::-;49249:34;49245:1;49237:6;49233:14;49226:58;49318:20;49313:2;49305:6;49301:15;49294:45;49109:237;:::o;49352:221::-;49492:34;49488:1;49480:6;49476:14;49469:58;49561:4;49556:2;49548:6;49544:15;49537:29;49352:221;:::o;49579:114::-;;:::o;49699:166::-;49839:18;49835:1;49827:6;49823:14;49816:42;49699:166;:::o;49871:238::-;50011:34;50007:1;49999:6;49995:14;49988:58;50080:21;50075:2;50067:6;50063:15;50056:46;49871:238;:::o;50115:179::-;50255:31;50251:1;50243:6;50239:14;50232:55;50115:179;:::o;50300:220::-;50440:34;50436:1;50428:6;50424:14;50417:58;50509:3;50504:2;50496:6;50492:15;50485:28;50300:220;:::o;50526:155::-;50666:7;50662:1;50654:6;50650:14;50643:31;50526:155;:::o;50687:233::-;50827:34;50823:1;50815:6;50811:14;50804:58;50896:16;50891:2;50883:6;50879:15;50872:41;50687:233;:::o;50926:225::-;51066:34;51062:1;51054:6;51050:14;51043:58;51135:8;51130:2;51122:6;51118:15;51111:33;50926:225;:::o;51157:181::-;51297:33;51293:1;51285:6;51281:14;51274:57;51157:181;:::o;51344:234::-;51484:34;51480:1;51472:6;51468:14;51461:58;51553:17;51548:2;51540:6;51536:15;51529:42;51344:234;:::o;51584:232::-;51724:34;51720:1;51712:6;51708:14;51701:58;51793:15;51788:2;51780:6;51776:15;51769:40;51584:232;:::o;51822:221::-;51962:34;51958:1;51950:6;51946:14;51939:58;52031:4;52026:2;52018:6;52014:15;52007:29;51822:221;:::o;52049:122::-;52122:24;52140:5;52122:24;:::i;:::-;52115:5;52112:35;52102:63;;52161:1;52158;52151:12;52102:63;52049:122;:::o;52177:116::-;52247:21;52262:5;52247:21;:::i;:::-;52240:5;52237:32;52227:60;;52283:1;52280;52273:12;52227:60;52177:116;:::o;52299:120::-;52371:23;52388:5;52371:23;:::i;:::-;52364:5;52361:34;52351:62;;52409:1;52406;52399:12;52351:62;52299:120;:::o;52425:122::-;52498:24;52516:5;52498:24;:::i;:::-;52491:5;52488:35;52478:63;;52537:1;52534;52527:12;52478:63;52425:122;:::o

Swarm Source

ipfs://12ec3f606c52ba306330e8f02547828102c2642ce87fece74631d2c97e24bff4
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.