ETH Price: $3,407.44 (-1.89%)
Gas: 6 Gwei

Token

IRLDAO (ILD)
 

Overview

Max Total Supply

2,802 ILD

Holders

370

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
pepecope.eth
Balance
1 ILD
0xd5e81c75b48172a38afeca96e8f07f5107abec13
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:
IRLDAO

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
File 1 of 13 : nft.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract IRLDAO is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  uint256 public cost = .05 ether;
  uint256 public maxSupply = 8221;
  uint256 public maxMintAmount = 30;
  bool public paused = false;
  mapping(address => bool) public whitelisted;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
    mint(msg.sender, 10);
  }

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

  // public
  function mint(address _to, uint256 _mintAmount) public payable {
    uint256 supply = totalSupply();
    require(!paused);
    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount);
    require(supply + _mintAmount <= maxSupply);

    if (msg.sender != owner()) {
        if(whitelisted[msg.sender] != true) {
          require(msg.value >= cost * _mintAmount);
        }
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(_to, supply + i);
    }
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

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

  //only owner
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
 
 function whitelistUser(address _user) public onlyOwner {
    whitelisted[_user] = true;
  }
 
  function removeWhitelistUser(address _user) public onlyOwner {
    whitelisted[_user] = false;
  }

  function withdraw() public payable onlyOwner {
    uint256 total = address(this).balance;
    uint256 one = (total / 100) * 97;
    uint256 two = (total / 100) * 1;
    uint256 three = (total / 100) * 1;
    uint256 four = (total / 100) * 1;

    require(payable(0x80D86d6F6EdB60956d7F1B5BF0c234CB16A9711f).send(one));
    require(payable(0x487017C7440e6239b064eb8a704A78Af09f9e62D).send(two));
    require(payable(0x535904357a47905D475a01E6906F7374f5a234A8).send(three));
    require(payable(0xCdeB01b1D56A84ff6661D739987F9C16C31456dD).send(four));
  }
}

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

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

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

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // 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 Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 ||
            super.supportsInterface(interfaceId);
    }

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 4 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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`, 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 Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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

File 5 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);
}

File 6 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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 : 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 10 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 11 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 12 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 tokenId);

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeWhitelistUser","outputs":[],"stateMutability":"nonpayable","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"whitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200005192919062000e40565b5066b1a2bc2ec50000600d5561201d600e55601e600f556000601060006101000a81548160ff0219169083151502179055503480156200009057600080fd5b5060405162005d1038038062005d108339818101604052810190620000b6919062000fb7565b82828160009080519060200190620000d092919062000e40565b508060019080519060200190620000e992919062000e40565b5050506200010c620001006200013960201b60201c565b6200014160201b60201c565b6200011d816200020760201b60201c565b6200013033600a620002b260201b60201c565b505050620017b6565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002176200013960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200023d6200042160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000296576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028d9062001272565b60405180910390fd5b80600b9080519060200190620002ae92919062000e40565b5050565b6000620002c46200044b60201b60201c565b9050601060009054906101000a900460ff1615620002e157600080fd5b60008211620002ef57600080fd5b600f54821115620002ff57600080fd5b600e54828262000310919062001320565b11156200031c57600080fd5b6200032c6200042160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614620003d75760011515601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514620003d65781600d54620003c891906200137d565b341015620003d557600080fd5b5b5b6000600190505b8281116200041b5762000405848284620003f9919062001320565b6200045860201b60201c565b8080620004129062001525565b915050620003de565b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600880549050905090565b6200047a8282604051806020016040528060008152506200047e60201b60201c565b5050565b620004908383620004ec60201b60201c565b620004a56000848484620006d260201b60201c565b620004e7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004de90620011ea565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200055f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005569062001250565b60405180910390fd5b62000570816200088c60201b60201c565b15620005b3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005aa906200120c565b60405180910390fd5b620005c760008383620008f860201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000619919062001320565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620007008473ffffffffffffffffffffffffffffffffffffffff1662000a3f60201b62001c361760201c565b156200087f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620007326200013960201b60201c565b8786866040518563ffffffff1660e01b815260040162000756949392919062001196565b602060405180830381600087803b1580156200077157600080fd5b505af1925050508015620007a557506040513d601f19601f82011682018060405250810190620007a2919062000f85565b60015b6200082e573d8060008114620007d8576040519150601f19603f3d011682016040523d82523d6000602084013e620007dd565b606091505b5060008151141562000826576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200081d90620011ea565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000884565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6200091083838362000a5260201b62001c491760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156200095d57620009578162000a5760201b60201c565b620009a5565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614620009a457620009a3838262000aa060201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009f257620009ec8162000c1d60201b60201c565b62000a3a565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000a395762000a38828262000cf960201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000aba8462000d8560201b620015bc1760201c565b62000ac69190620013de565b905060006007600084815260200190815260200160002054905081811462000bac576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000c339190620013de565b905060006009600084815260200190815260200160002054905060006008838154811062000c665762000c6562001600565b5b90600052602060002001549050806008838154811062000c8b5762000c8a62001600565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000cdd5762000cdc620015d1565b5b6001900381819060005260206000200160009055905550505050565b600062000d118362000d8560201b620015bc1760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000df9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000df0906200122e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000e4e90620014b9565b90600052602060002090601f01602090048101928262000e72576000855562000ebe565b82601f1062000e8d57805160ff191683800117855562000ebe565b8280016001018555821562000ebe579182015b8281111562000ebd57825182559160200191906001019062000ea0565b5b50905062000ecd919062000ed1565b5090565b5b8082111562000eec57600081600090555060010162000ed2565b5090565b600062000f0762000f0184620012bd565b62001294565b90508281526020810184848401111562000f265762000f2562001663565b5b62000f3384828562001483565b509392505050565b60008151905062000f4c816200179c565b92915050565b600082601f83011262000f6a5762000f696200165e565b5b815162000f7c84826020860162000ef0565b91505092915050565b60006020828403121562000f9e5762000f9d6200166d565b5b600062000fae8482850162000f3b565b91505092915050565b60008060006060848603121562000fd35762000fd26200166d565b5b600084015167ffffffffffffffff81111562000ff45762000ff362001668565b5b620010028682870162000f52565b935050602084015167ffffffffffffffff81111562001026576200102562001668565b5b620010348682870162000f52565b925050604084015167ffffffffffffffff81111562001058576200105762001668565b5b620010668682870162000f52565b9150509250925092565b6200107b8162001419565b82525050565b60006200108e82620012f3565b6200109a8185620012fe565b9350620010ac81856020860162001483565b620010b78162001672565b840191505092915050565b6000620010d16032836200130f565b9150620010de8262001683565b604082019050919050565b6000620010f8601c836200130f565b91506200110582620016d2565b602082019050919050565b60006200111f602a836200130f565b91506200112c82620016fb565b604082019050919050565b6000620011466020836200130f565b915062001153826200174a565b602082019050919050565b60006200116d6020836200130f565b91506200117a8262001773565b602082019050919050565b620011908162001479565b82525050565b6000608082019050620011ad600083018762001070565b620011bc602083018662001070565b620011cb604083018562001185565b8181036060830152620011df818462001081565b905095945050505050565b600060208201905081810360008301526200120581620010c2565b9050919050565b600060208201905081810360008301526200122781620010e9565b9050919050565b60006020820190508181036000830152620012498162001110565b9050919050565b600060208201905081810360008301526200126b8162001137565b9050919050565b600060208201905081810360008301526200128d816200115e565b9050919050565b6000620012a0620012b3565b9050620012ae8282620014ef565b919050565b6000604051905090565b600067ffffffffffffffff821115620012db57620012da6200162f565b5b620012e68262001672565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006200132d8262001479565b91506200133a8362001479565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562001372576200137162001573565b5b828201905092915050565b60006200138a8262001479565b9150620013978362001479565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620013d357620013d262001573565b5b828202905092915050565b6000620013eb8262001479565b9150620013f88362001479565b9250828210156200140e576200140d62001573565b5b828203905092915050565b6000620014268262001459565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620014a357808201518184015260208101905062001486565b83811115620014b3576000848401525b50505050565b60006002820490506001821680620014d257607f821691505b60208210811415620014e957620014e8620015a2565b5b50919050565b620014fa8262001672565b810181811067ffffffffffffffff821117156200151c576200151b6200162f565b5b80604052505050565b6000620015328262001479565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562001568576200156762001573565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b620017a7816200142d565b8114620017b357600080fd5b50565b61454a80620017c66000396000f3fe60806040526004361061020f5760003560e01c806355f804b311610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb011461077f578063d936547e146107aa578063da3ef23f146107e7578063e985e9c514610810578063f2fde38b1461084d5761020f565b8063a22cb465146106c5578063b88d4fde146106ee578063c668286214610717578063c87b56dd146107425761020f565b806370a08231116100e757806370a08231146105f2578063715018a61461062f5780637f00c7a6146106465780638da5cb5b1461066f57806395d89b411461069a5761020f565b806355f804b3146105365780635c975abb1461055f5780636352211e1461058a5780636c0360eb146105c75761020f565b80632f745c591161019b57806342842e0e1161016a57806342842e0e14610441578063438b63001461046a57806344a0d68a146104a75780634a4c560d146104d05780634f6ccce7146104f95761020f565b80632f745c59146103b557806330cc7ae0146103f25780633ccfd60b1461041b57806340c10f19146104255761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806313faede61461030b57806318160ddd14610336578063239c70ae1461036157806323b872dd1461038c5761020f565b806301ffc9a71461021457806302329a291461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613257565b610876565b604051610248919061382b565b60405180910390f35b34801561025d57600080fd5b506102786004803603810190610273919061322a565b6108f0565b005b34801561028657600080fd5b5061028f610989565b60405161029c9190613846565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c791906132fa565b610a1b565b6040516102d991906137a2565b60405180910390f35b3480156102ee57600080fd5b50610309600480360381019061030491906131ea565b610aa0565b005b34801561031757600080fd5b50610320610bb8565b60405161032d9190613aa8565b60405180910390f35b34801561034257600080fd5b5061034b610bbe565b6040516103589190613aa8565b60405180910390f35b34801561036d57600080fd5b50610376610bcb565b6040516103839190613aa8565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae91906130d4565b610bd1565b005b3480156103c157600080fd5b506103dc60048036038101906103d791906131ea565b610c31565b6040516103e99190613aa8565b60405180910390f35b3480156103fe57600080fd5b5061041960048036038101906104149190613067565b610cd6565b005b610423610dad565b005b61043f600480360381019061043a91906131ea565b610ff1565b005b34801561044d57600080fd5b50610468600480360381019061046391906130d4565b611137565b005b34801561047657600080fd5b50610491600480360381019061048c9190613067565b611157565b60405161049e9190613809565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c991906132fa565b611205565b005b3480156104dc57600080fd5b506104f760048036038101906104f29190613067565b61128b565b005b34801561050557600080fd5b50610520600480360381019061051b91906132fa565b611362565b60405161052d9190613aa8565b60405180910390f35b34801561054257600080fd5b5061055d600480360381019061055891906132b1565b6113d3565b005b34801561056b57600080fd5b50610574611469565b604051610581919061382b565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac91906132fa565b61147c565b6040516105be91906137a2565b60405180910390f35b3480156105d357600080fd5b506105dc61152e565b6040516105e99190613846565b60405180910390f35b3480156105fe57600080fd5b5061061960048036038101906106149190613067565b6115bc565b6040516106269190613aa8565b60405180910390f35b34801561063b57600080fd5b50610644611674565b005b34801561065257600080fd5b5061066d600480360381019061066891906132fa565b6116fc565b005b34801561067b57600080fd5b50610684611782565b60405161069191906137a2565b60405180910390f35b3480156106a657600080fd5b506106af6117ac565b6040516106bc9190613846565b60405180910390f35b3480156106d157600080fd5b506106ec60048036038101906106e791906131aa565b61183e565b005b3480156106fa57600080fd5b5061071560048036038101906107109190613127565b611854565b005b34801561072357600080fd5b5061072c6118b6565b6040516107399190613846565b60405180910390f35b34801561074e57600080fd5b50610769600480360381019061076491906132fa565b611944565b6040516107769190613846565b60405180910390f35b34801561078b57600080fd5b506107946119ee565b6040516107a19190613aa8565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc9190613067565b6119f4565b6040516107de919061382b565b60405180910390f35b3480156107f357600080fd5b5061080e600480360381019061080991906132b1565b611a14565b005b34801561081c57600080fd5b5061083760048036038101906108329190613094565b611aaa565b604051610844919061382b565b60405180910390f35b34801561085957600080fd5b50610874600480360381019061086f9190613067565b611b3e565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e957506108e882611c4e565b5b9050919050565b6108f8611d30565b73ffffffffffffffffffffffffffffffffffffffff16610916611782565b73ffffffffffffffffffffffffffffffffffffffff161461096c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610963906139e8565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b60606000805461099890613da6565b80601f01602080910402602001604051908101604052809291908181526020018280546109c490613da6565b8015610a115780601f106109e657610100808354040283529160200191610a11565b820191906000526020600020905b8154815290600101906020018083116109f457829003601f168201915b5050505050905090565b6000610a2682611d38565b610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c906139c8565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aab8261147c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1390613a48565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b3b611d30565b73ffffffffffffffffffffffffffffffffffffffff161480610b6a5750610b6981610b64611d30565b611aaa565b5b610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba090613948565b60405180910390fd5b610bb38383611da4565b505050565b600d5481565b6000600880549050905090565b600f5481565b610be2610bdc611d30565b82611e5d565b610c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1890613a68565b60405180910390fd5b610c2c838383611f3b565b505050565b6000610c3c836115bc565b8210610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7490613868565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610cde611d30565b73ffffffffffffffffffffffffffffffffffffffff16610cfc611782565b73ffffffffffffffffffffffffffffffffffffffff1614610d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d49906139e8565b60405180910390fd5b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610db5611d30565b73ffffffffffffffffffffffffffffffffffffffff16610dd3611782565b73ffffffffffffffffffffffffffffffffffffffff1614610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e20906139e8565b60405180910390fd5b600047905060006061606483610e3f9190613c31565b610e499190613c62565b905060006001606484610e5c9190613c31565b610e669190613c62565b905060006001606485610e799190613c31565b610e839190613c62565b905060006001606486610e969190613c31565b610ea09190613c62565b90507380d86d6f6edb60956d7f1b5bf0c234cb16a9711f73ffffffffffffffffffffffffffffffffffffffff166108fc859081150290604051600060405180830381858888f19350505050610ef457600080fd5b73487017c7440e6239b064eb8a704a78af09f9e62d73ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f19350505050610f4657600080fd5b73535904357a47905d475a01e6906f7374f5a234a873ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050610f9857600080fd5b73cdeb01b1d56a84ff6661d739987f9c16c31456dd73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610fea57600080fd5b5050505050565b6000610ffb610bbe565b9050601060009054906101000a900460ff161561101757600080fd5b6000821161102457600080fd5b600f5482111561103357600080fd5b600e5482826110429190613bdb565b111561104d57600080fd5b611055611782565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110fb5760011515601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146110fa5781600d546110ed9190613c62565b3410156110f957600080fd5b5b5b6000600190505b8281116111315761111e8482846111199190613bdb565b612197565b808061112990613e09565b915050611102565b50505050565b61115283838360405180602001604052806000815250611854565b505050565b60606000611164836115bc565b905060008167ffffffffffffffff81111561118257611181613f6e565b5b6040519080825280602002602001820160405280156111b05781602001602082028036833780820191505090505b50905060005b828110156111fa576111c88582610c31565b8282815181106111db576111da613f3f565b5b60200260200101818152505080806111f290613e09565b9150506111b6565b508092505050919050565b61120d611d30565b73ffffffffffffffffffffffffffffffffffffffff1661122b611782565b73ffffffffffffffffffffffffffffffffffffffff1614611281576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611278906139e8565b60405180910390fd5b80600d8190555050565b611293611d30565b73ffffffffffffffffffffffffffffffffffffffff166112b1611782565b73ffffffffffffffffffffffffffffffffffffffff1614611307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fe906139e8565b60405180910390fd5b6001601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600061136c610bbe565b82106113ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a490613a88565b60405180910390fd5b600882815481106113c1576113c0613f3f565b5b90600052602060002001549050919050565b6113db611d30565b73ffffffffffffffffffffffffffffffffffffffff166113f9611782565b73ffffffffffffffffffffffffffffffffffffffff161461144f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611446906139e8565b60405180910390fd5b80600b9080519060200190611465929190612e7b565b5050565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151c90613988565b60405180910390fd5b80915050919050565b600b805461153b90613da6565b80601f016020809104026020016040519081016040528092919081815260200182805461156790613da6565b80156115b45780601f10611589576101008083540402835291602001916115b4565b820191906000526020600020905b81548152906001019060200180831161159757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561162d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162490613968565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61167c611d30565b73ffffffffffffffffffffffffffffffffffffffff1661169a611782565b73ffffffffffffffffffffffffffffffffffffffff16146116f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e7906139e8565b60405180910390fd5b6116fa60006121b5565b565b611704611d30565b73ffffffffffffffffffffffffffffffffffffffff16611722611782565b73ffffffffffffffffffffffffffffffffffffffff1614611778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176f906139e8565b60405180910390fd5b80600f8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546117bb90613da6565b80601f01602080910402602001604051908101604052809291908181526020018280546117e790613da6565b80156118345780601f1061180957610100808354040283529160200191611834565b820191906000526020600020905b81548152906001019060200180831161181757829003601f168201915b5050505050905090565b611850611849611d30565b838361227b565b5050565b61186561185f611d30565b83611e5d565b6118a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189b90613a68565b60405180910390fd5b6118b0848484846123e8565b50505050565b600c80546118c390613da6565b80601f01602080910402602001604051908101604052809291908181526020018280546118ef90613da6565b801561193c5780601f106119115761010080835404028352916020019161193c565b820191906000526020600020905b81548152906001019060200180831161191f57829003601f168201915b505050505081565b606061194f82611d38565b61198e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198590613a28565b60405180910390fd5b6000611998612444565b905060008151116119b857604051806020016040528060008152506119e6565b806119c2846124d6565b600c6040516020016119d693929190613771565b6040516020818303038152906040525b915050919050565b600e5481565b60116020528060005260406000206000915054906101000a900460ff1681565b611a1c611d30565b73ffffffffffffffffffffffffffffffffffffffff16611a3a611782565b73ffffffffffffffffffffffffffffffffffffffff1614611a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a87906139e8565b60405180910390fd5b80600c9080519060200190611aa6929190612e7b565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b46611d30565b73ffffffffffffffffffffffffffffffffffffffff16611b64611782565b73ffffffffffffffffffffffffffffffffffffffff1614611bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb1906139e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c21906138a8565b60405180910390fd5b611c33816121b5565b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d1957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611d295750611d2882612637565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e178361147c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611e6882611d38565b611ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9e90613928565b60405180910390fd5b6000611eb28361147c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f2157508373ffffffffffffffffffffffffffffffffffffffff16611f0984610a1b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f325750611f318185611aaa565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f5b8261147c565b73ffffffffffffffffffffffffffffffffffffffff1614611fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa890613a08565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612021576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612018906138e8565b60405180910390fd5b61202c8383836126a1565b612037600082611da4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120879190613cbc565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120de9190613bdb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6121b18282604051806020016040528060008152506127b5565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e190613908565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123db919061382b565b60405180910390a3505050565b6123f3848484611f3b565b6123ff84848484612810565b61243e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243590613888565b60405180910390fd5b50505050565b6060600b805461245390613da6565b80601f016020809104026020016040519081016040528092919081815260200182805461247f90613da6565b80156124cc5780601f106124a1576101008083540402835291602001916124cc565b820191906000526020600020905b8154815290600101906020018083116124af57829003601f168201915b5050505050905090565b6060600082141561251e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612632565b600082905060005b6000821461255057808061253990613e09565b915050600a826125499190613c31565b9150612526565b60008167ffffffffffffffff81111561256c5761256b613f6e565b5b6040519080825280601f01601f19166020018201604052801561259e5781602001600182028036833780820191505090505b5090505b6000851461262b576001826125b79190613cbc565b9150600a856125c69190613e52565b60306125d29190613bdb565b60f81b8183815181106125e8576125e7613f3f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126249190613c31565b94506125a2565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6126ac838383611c49565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126ef576126ea816129a7565b61272e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461272d5761272c83826129f0565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127715761276c81612b5d565b6127b0565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146127af576127ae8282612c2e565b5b5b505050565b6127bf8383612cad565b6127cc6000848484612810565b61280b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280290613888565b60405180910390fd5b505050565b60006128318473ffffffffffffffffffffffffffffffffffffffff16611c36565b1561299a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261285a611d30565b8786866040518563ffffffff1660e01b815260040161287c94939291906137bd565b602060405180830381600087803b15801561289657600080fd5b505af19250505080156128c757506040513d601f19601f820116820180604052508101906128c49190613284565b60015b61294a573d80600081146128f7576040519150601f19603f3d011682016040523d82523d6000602084013e6128fc565b606091505b50600081511415612942576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293990613888565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061299f565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016129fd846115bc565b612a079190613cbc565b9050600060076000848152602001908152602001600020549050818114612aec576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612b719190613cbc565b9050600060096000848152602001908152602001600020549050600060088381548110612ba157612ba0613f3f565b5b906000526020600020015490508060088381548110612bc357612bc2613f3f565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612c1257612c11613f10565b5b6001900381819060005260206000200160009055905550505050565b6000612c39836115bc565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d14906139a8565b60405180910390fd5b612d2681611d38565b15612d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5d906138c8565b60405180910390fd5b612d72600083836126a1565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612dc29190613bdb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612e8790613da6565b90600052602060002090601f016020900481019282612ea95760008555612ef0565b82601f10612ec257805160ff1916838001178555612ef0565b82800160010185558215612ef0579182015b82811115612eef578251825591602001919060010190612ed4565b5b509050612efd9190612f01565b5090565b5b80821115612f1a576000816000905550600101612f02565b5090565b6000612f31612f2c84613ae8565b613ac3565b905082815260208101848484011115612f4d57612f4c613fa2565b5b612f58848285613d64565b509392505050565b6000612f73612f6e84613b19565b613ac3565b905082815260208101848484011115612f8f57612f8e613fa2565b5b612f9a848285613d64565b509392505050565b600081359050612fb1816144b8565b92915050565b600081359050612fc6816144cf565b92915050565b600081359050612fdb816144e6565b92915050565b600081519050612ff0816144e6565b92915050565b600082601f83011261300b5761300a613f9d565b5b813561301b848260208601612f1e565b91505092915050565b600082601f83011261303957613038613f9d565b5b8135613049848260208601612f60565b91505092915050565b600081359050613061816144fd565b92915050565b60006020828403121561307d5761307c613fac565b5b600061308b84828501612fa2565b91505092915050565b600080604083850312156130ab576130aa613fac565b5b60006130b985828601612fa2565b92505060206130ca85828601612fa2565b9150509250929050565b6000806000606084860312156130ed576130ec613fac565b5b60006130fb86828701612fa2565b935050602061310c86828701612fa2565b925050604061311d86828701613052565b9150509250925092565b6000806000806080858703121561314157613140613fac565b5b600061314f87828801612fa2565b945050602061316087828801612fa2565b935050604061317187828801613052565b925050606085013567ffffffffffffffff81111561319257613191613fa7565b5b61319e87828801612ff6565b91505092959194509250565b600080604083850312156131c1576131c0613fac565b5b60006131cf85828601612fa2565b92505060206131e085828601612fb7565b9150509250929050565b6000806040838503121561320157613200613fac565b5b600061320f85828601612fa2565b925050602061322085828601613052565b9150509250929050565b6000602082840312156132405761323f613fac565b5b600061324e84828501612fb7565b91505092915050565b60006020828403121561326d5761326c613fac565b5b600061327b84828501612fcc565b91505092915050565b60006020828403121561329a57613299613fac565b5b60006132a884828501612fe1565b91505092915050565b6000602082840312156132c7576132c6613fac565b5b600082013567ffffffffffffffff8111156132e5576132e4613fa7565b5b6132f184828501613024565b91505092915050565b6000602082840312156133105761330f613fac565b5b600061331e84828501613052565b91505092915050565b60006133338383613753565b60208301905092915050565b61334881613cf0565b82525050565b600061335982613b6f565b6133638185613b9d565b935061336e83613b4a565b8060005b8381101561339f5781516133868882613327565b975061339183613b90565b925050600181019050613372565b5085935050505092915050565b6133b581613d02565b82525050565b60006133c682613b7a565b6133d08185613bae565b93506133e0818560208601613d73565b6133e981613fb1565b840191505092915050565b60006133ff82613b85565b6134098185613bbf565b9350613419818560208601613d73565b61342281613fb1565b840191505092915050565b600061343882613b85565b6134428185613bd0565b9350613452818560208601613d73565b80840191505092915050565b6000815461346b81613da6565b6134758186613bd0565b9450600182166000811461349057600181146134a1576134d4565b60ff198316865281860193506134d4565b6134aa85613b5a565b60005b838110156134cc578154818901526001820191506020810190506134ad565b838801955050505b50505092915050565b60006134ea602b83613bbf565b91506134f582613fc2565b604082019050919050565b600061350d603283613bbf565b915061351882614011565b604082019050919050565b6000613530602683613bbf565b915061353b82614060565b604082019050919050565b6000613553601c83613bbf565b915061355e826140af565b602082019050919050565b6000613576602483613bbf565b9150613581826140d8565b604082019050919050565b6000613599601983613bbf565b91506135a482614127565b602082019050919050565b60006135bc602c83613bbf565b91506135c782614150565b604082019050919050565b60006135df603883613bbf565b91506135ea8261419f565b604082019050919050565b6000613602602a83613bbf565b915061360d826141ee565b604082019050919050565b6000613625602983613bbf565b91506136308261423d565b604082019050919050565b6000613648602083613bbf565b91506136538261428c565b602082019050919050565b600061366b602c83613bbf565b9150613676826142b5565b604082019050919050565b600061368e602083613bbf565b915061369982614304565b602082019050919050565b60006136b1602983613bbf565b91506136bc8261432d565b604082019050919050565b60006136d4602f83613bbf565b91506136df8261437c565b604082019050919050565b60006136f7602183613bbf565b9150613702826143cb565b604082019050919050565b600061371a603183613bbf565b91506137258261441a565b604082019050919050565b600061373d602c83613bbf565b915061374882614469565b604082019050919050565b61375c81613d5a565b82525050565b61376b81613d5a565b82525050565b600061377d828661342d565b9150613789828561342d565b9150613795828461345e565b9150819050949350505050565b60006020820190506137b7600083018461333f565b92915050565b60006080820190506137d2600083018761333f565b6137df602083018661333f565b6137ec6040830185613762565b81810360608301526137fe81846133bb565b905095945050505050565b60006020820190508181036000830152613823818461334e565b905092915050565b600060208201905061384060008301846133ac565b92915050565b6000602082019050818103600083015261386081846133f4565b905092915050565b60006020820190508181036000830152613881816134dd565b9050919050565b600060208201905081810360008301526138a181613500565b9050919050565b600060208201905081810360008301526138c181613523565b9050919050565b600060208201905081810360008301526138e181613546565b9050919050565b6000602082019050818103600083015261390181613569565b9050919050565b600060208201905081810360008301526139218161358c565b9050919050565b60006020820190508181036000830152613941816135af565b9050919050565b60006020820190508181036000830152613961816135d2565b9050919050565b60006020820190508181036000830152613981816135f5565b9050919050565b600060208201905081810360008301526139a181613618565b9050919050565b600060208201905081810360008301526139c18161363b565b9050919050565b600060208201905081810360008301526139e18161365e565b9050919050565b60006020820190508181036000830152613a0181613681565b9050919050565b60006020820190508181036000830152613a21816136a4565b9050919050565b60006020820190508181036000830152613a41816136c7565b9050919050565b60006020820190508181036000830152613a61816136ea565b9050919050565b60006020820190508181036000830152613a818161370d565b9050919050565b60006020820190508181036000830152613aa181613730565b9050919050565b6000602082019050613abd6000830184613762565b92915050565b6000613acd613ade565b9050613ad98282613dd8565b919050565b6000604051905090565b600067ffffffffffffffff821115613b0357613b02613f6e565b5b613b0c82613fb1565b9050602081019050919050565b600067ffffffffffffffff821115613b3457613b33613f6e565b5b613b3d82613fb1565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613be682613d5a565b9150613bf183613d5a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c2657613c25613e83565b5b828201905092915050565b6000613c3c82613d5a565b9150613c4783613d5a565b925082613c5757613c56613eb2565b5b828204905092915050565b6000613c6d82613d5a565b9150613c7883613d5a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cb157613cb0613e83565b5b828202905092915050565b6000613cc782613d5a565b9150613cd283613d5a565b925082821015613ce557613ce4613e83565b5b828203905092915050565b6000613cfb82613d3a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d91578082015181840152602081019050613d76565b83811115613da0576000848401525b50505050565b60006002820490506001821680613dbe57607f821691505b60208210811415613dd257613dd1613ee1565b5b50919050565b613de182613fb1565b810181811067ffffffffffffffff82111715613e0057613dff613f6e565b5b80604052505050565b6000613e1482613d5a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e4757613e46613e83565b5b600182019050919050565b6000613e5d82613d5a565b9150613e6883613d5a565b925082613e7857613e77613eb2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6144c181613cf0565b81146144cc57600080fd5b50565b6144d881613d02565b81146144e357600080fd5b50565b6144ef81613d0e565b81146144fa57600080fd5b50565b61450681613d5a565b811461451157600080fd5b5056fea2646970667358221220deb877b33a087b17a06859435551696d7d05f5a458c70aef2e29cbc1aac4355c64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000649524c44414f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003494c440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001968747470733a2f2f69726c64616f2e696f2f7061737365732f00000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c806355f804b311610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb011461077f578063d936547e146107aa578063da3ef23f146107e7578063e985e9c514610810578063f2fde38b1461084d5761020f565b8063a22cb465146106c5578063b88d4fde146106ee578063c668286214610717578063c87b56dd146107425761020f565b806370a08231116100e757806370a08231146105f2578063715018a61461062f5780637f00c7a6146106465780638da5cb5b1461066f57806395d89b411461069a5761020f565b806355f804b3146105365780635c975abb1461055f5780636352211e1461058a5780636c0360eb146105c75761020f565b80632f745c591161019b57806342842e0e1161016a57806342842e0e14610441578063438b63001461046a57806344a0d68a146104a75780634a4c560d146104d05780634f6ccce7146104f95761020f565b80632f745c59146103b557806330cc7ae0146103f25780633ccfd60b1461041b57806340c10f19146104255761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806313faede61461030b57806318160ddd14610336578063239c70ae1461036157806323b872dd1461038c5761020f565b806301ffc9a71461021457806302329a291461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613257565b610876565b604051610248919061382b565b60405180910390f35b34801561025d57600080fd5b506102786004803603810190610273919061322a565b6108f0565b005b34801561028657600080fd5b5061028f610989565b60405161029c9190613846565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c791906132fa565b610a1b565b6040516102d991906137a2565b60405180910390f35b3480156102ee57600080fd5b50610309600480360381019061030491906131ea565b610aa0565b005b34801561031757600080fd5b50610320610bb8565b60405161032d9190613aa8565b60405180910390f35b34801561034257600080fd5b5061034b610bbe565b6040516103589190613aa8565b60405180910390f35b34801561036d57600080fd5b50610376610bcb565b6040516103839190613aa8565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae91906130d4565b610bd1565b005b3480156103c157600080fd5b506103dc60048036038101906103d791906131ea565b610c31565b6040516103e99190613aa8565b60405180910390f35b3480156103fe57600080fd5b5061041960048036038101906104149190613067565b610cd6565b005b610423610dad565b005b61043f600480360381019061043a91906131ea565b610ff1565b005b34801561044d57600080fd5b50610468600480360381019061046391906130d4565b611137565b005b34801561047657600080fd5b50610491600480360381019061048c9190613067565b611157565b60405161049e9190613809565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c991906132fa565b611205565b005b3480156104dc57600080fd5b506104f760048036038101906104f29190613067565b61128b565b005b34801561050557600080fd5b50610520600480360381019061051b91906132fa565b611362565b60405161052d9190613aa8565b60405180910390f35b34801561054257600080fd5b5061055d600480360381019061055891906132b1565b6113d3565b005b34801561056b57600080fd5b50610574611469565b604051610581919061382b565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac91906132fa565b61147c565b6040516105be91906137a2565b60405180910390f35b3480156105d357600080fd5b506105dc61152e565b6040516105e99190613846565b60405180910390f35b3480156105fe57600080fd5b5061061960048036038101906106149190613067565b6115bc565b6040516106269190613aa8565b60405180910390f35b34801561063b57600080fd5b50610644611674565b005b34801561065257600080fd5b5061066d600480360381019061066891906132fa565b6116fc565b005b34801561067b57600080fd5b50610684611782565b60405161069191906137a2565b60405180910390f35b3480156106a657600080fd5b506106af6117ac565b6040516106bc9190613846565b60405180910390f35b3480156106d157600080fd5b506106ec60048036038101906106e791906131aa565b61183e565b005b3480156106fa57600080fd5b5061071560048036038101906107109190613127565b611854565b005b34801561072357600080fd5b5061072c6118b6565b6040516107399190613846565b60405180910390f35b34801561074e57600080fd5b50610769600480360381019061076491906132fa565b611944565b6040516107769190613846565b60405180910390f35b34801561078b57600080fd5b506107946119ee565b6040516107a19190613aa8565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc9190613067565b6119f4565b6040516107de919061382b565b60405180910390f35b3480156107f357600080fd5b5061080e600480360381019061080991906132b1565b611a14565b005b34801561081c57600080fd5b5061083760048036038101906108329190613094565b611aaa565b604051610844919061382b565b60405180910390f35b34801561085957600080fd5b50610874600480360381019061086f9190613067565b611b3e565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e957506108e882611c4e565b5b9050919050565b6108f8611d30565b73ffffffffffffffffffffffffffffffffffffffff16610916611782565b73ffffffffffffffffffffffffffffffffffffffff161461096c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610963906139e8565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b60606000805461099890613da6565b80601f01602080910402602001604051908101604052809291908181526020018280546109c490613da6565b8015610a115780601f106109e657610100808354040283529160200191610a11565b820191906000526020600020905b8154815290600101906020018083116109f457829003601f168201915b5050505050905090565b6000610a2682611d38565b610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c906139c8565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aab8261147c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1390613a48565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b3b611d30565b73ffffffffffffffffffffffffffffffffffffffff161480610b6a5750610b6981610b64611d30565b611aaa565b5b610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba090613948565b60405180910390fd5b610bb38383611da4565b505050565b600d5481565b6000600880549050905090565b600f5481565b610be2610bdc611d30565b82611e5d565b610c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1890613a68565b60405180910390fd5b610c2c838383611f3b565b505050565b6000610c3c836115bc565b8210610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7490613868565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610cde611d30565b73ffffffffffffffffffffffffffffffffffffffff16610cfc611782565b73ffffffffffffffffffffffffffffffffffffffff1614610d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d49906139e8565b60405180910390fd5b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610db5611d30565b73ffffffffffffffffffffffffffffffffffffffff16610dd3611782565b73ffffffffffffffffffffffffffffffffffffffff1614610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e20906139e8565b60405180910390fd5b600047905060006061606483610e3f9190613c31565b610e499190613c62565b905060006001606484610e5c9190613c31565b610e669190613c62565b905060006001606485610e799190613c31565b610e839190613c62565b905060006001606486610e969190613c31565b610ea09190613c62565b90507380d86d6f6edb60956d7f1b5bf0c234cb16a9711f73ffffffffffffffffffffffffffffffffffffffff166108fc859081150290604051600060405180830381858888f19350505050610ef457600080fd5b73487017c7440e6239b064eb8a704a78af09f9e62d73ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f19350505050610f4657600080fd5b73535904357a47905d475a01e6906f7374f5a234a873ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050610f9857600080fd5b73cdeb01b1d56a84ff6661d739987f9c16c31456dd73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610fea57600080fd5b5050505050565b6000610ffb610bbe565b9050601060009054906101000a900460ff161561101757600080fd5b6000821161102457600080fd5b600f5482111561103357600080fd5b600e5482826110429190613bdb565b111561104d57600080fd5b611055611782565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110fb5760011515601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146110fa5781600d546110ed9190613c62565b3410156110f957600080fd5b5b5b6000600190505b8281116111315761111e8482846111199190613bdb565b612197565b808061112990613e09565b915050611102565b50505050565b61115283838360405180602001604052806000815250611854565b505050565b60606000611164836115bc565b905060008167ffffffffffffffff81111561118257611181613f6e565b5b6040519080825280602002602001820160405280156111b05781602001602082028036833780820191505090505b50905060005b828110156111fa576111c88582610c31565b8282815181106111db576111da613f3f565b5b60200260200101818152505080806111f290613e09565b9150506111b6565b508092505050919050565b61120d611d30565b73ffffffffffffffffffffffffffffffffffffffff1661122b611782565b73ffffffffffffffffffffffffffffffffffffffff1614611281576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611278906139e8565b60405180910390fd5b80600d8190555050565b611293611d30565b73ffffffffffffffffffffffffffffffffffffffff166112b1611782565b73ffffffffffffffffffffffffffffffffffffffff1614611307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fe906139e8565b60405180910390fd5b6001601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600061136c610bbe565b82106113ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a490613a88565b60405180910390fd5b600882815481106113c1576113c0613f3f565b5b90600052602060002001549050919050565b6113db611d30565b73ffffffffffffffffffffffffffffffffffffffff166113f9611782565b73ffffffffffffffffffffffffffffffffffffffff161461144f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611446906139e8565b60405180910390fd5b80600b9080519060200190611465929190612e7b565b5050565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151c90613988565b60405180910390fd5b80915050919050565b600b805461153b90613da6565b80601f016020809104026020016040519081016040528092919081815260200182805461156790613da6565b80156115b45780601f10611589576101008083540402835291602001916115b4565b820191906000526020600020905b81548152906001019060200180831161159757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561162d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162490613968565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61167c611d30565b73ffffffffffffffffffffffffffffffffffffffff1661169a611782565b73ffffffffffffffffffffffffffffffffffffffff16146116f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e7906139e8565b60405180910390fd5b6116fa60006121b5565b565b611704611d30565b73ffffffffffffffffffffffffffffffffffffffff16611722611782565b73ffffffffffffffffffffffffffffffffffffffff1614611778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176f906139e8565b60405180910390fd5b80600f8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546117bb90613da6565b80601f01602080910402602001604051908101604052809291908181526020018280546117e790613da6565b80156118345780601f1061180957610100808354040283529160200191611834565b820191906000526020600020905b81548152906001019060200180831161181757829003601f168201915b5050505050905090565b611850611849611d30565b838361227b565b5050565b61186561185f611d30565b83611e5d565b6118a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189b90613a68565b60405180910390fd5b6118b0848484846123e8565b50505050565b600c80546118c390613da6565b80601f01602080910402602001604051908101604052809291908181526020018280546118ef90613da6565b801561193c5780601f106119115761010080835404028352916020019161193c565b820191906000526020600020905b81548152906001019060200180831161191f57829003601f168201915b505050505081565b606061194f82611d38565b61198e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198590613a28565b60405180910390fd5b6000611998612444565b905060008151116119b857604051806020016040528060008152506119e6565b806119c2846124d6565b600c6040516020016119d693929190613771565b6040516020818303038152906040525b915050919050565b600e5481565b60116020528060005260406000206000915054906101000a900460ff1681565b611a1c611d30565b73ffffffffffffffffffffffffffffffffffffffff16611a3a611782565b73ffffffffffffffffffffffffffffffffffffffff1614611a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a87906139e8565b60405180910390fd5b80600c9080519060200190611aa6929190612e7b565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b46611d30565b73ffffffffffffffffffffffffffffffffffffffff16611b64611782565b73ffffffffffffffffffffffffffffffffffffffff1614611bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb1906139e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c21906138a8565b60405180910390fd5b611c33816121b5565b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d1957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611d295750611d2882612637565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e178361147c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611e6882611d38565b611ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9e90613928565b60405180910390fd5b6000611eb28361147c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f2157508373ffffffffffffffffffffffffffffffffffffffff16611f0984610a1b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f325750611f318185611aaa565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f5b8261147c565b73ffffffffffffffffffffffffffffffffffffffff1614611fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa890613a08565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612021576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612018906138e8565b60405180910390fd5b61202c8383836126a1565b612037600082611da4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120879190613cbc565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120de9190613bdb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6121b18282604051806020016040528060008152506127b5565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e190613908565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123db919061382b565b60405180910390a3505050565b6123f3848484611f3b565b6123ff84848484612810565b61243e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243590613888565b60405180910390fd5b50505050565b6060600b805461245390613da6565b80601f016020809104026020016040519081016040528092919081815260200182805461247f90613da6565b80156124cc5780601f106124a1576101008083540402835291602001916124cc565b820191906000526020600020905b8154815290600101906020018083116124af57829003601f168201915b5050505050905090565b6060600082141561251e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612632565b600082905060005b6000821461255057808061253990613e09565b915050600a826125499190613c31565b9150612526565b60008167ffffffffffffffff81111561256c5761256b613f6e565b5b6040519080825280601f01601f19166020018201604052801561259e5781602001600182028036833780820191505090505b5090505b6000851461262b576001826125b79190613cbc565b9150600a856125c69190613e52565b60306125d29190613bdb565b60f81b8183815181106125e8576125e7613f3f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126249190613c31565b94506125a2565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6126ac838383611c49565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126ef576126ea816129a7565b61272e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461272d5761272c83826129f0565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127715761276c81612b5d565b6127b0565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146127af576127ae8282612c2e565b5b5b505050565b6127bf8383612cad565b6127cc6000848484612810565b61280b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280290613888565b60405180910390fd5b505050565b60006128318473ffffffffffffffffffffffffffffffffffffffff16611c36565b1561299a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261285a611d30565b8786866040518563ffffffff1660e01b815260040161287c94939291906137bd565b602060405180830381600087803b15801561289657600080fd5b505af19250505080156128c757506040513d601f19601f820116820180604052508101906128c49190613284565b60015b61294a573d80600081146128f7576040519150601f19603f3d011682016040523d82523d6000602084013e6128fc565b606091505b50600081511415612942576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293990613888565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061299f565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016129fd846115bc565b612a079190613cbc565b9050600060076000848152602001908152602001600020549050818114612aec576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612b719190613cbc565b9050600060096000848152602001908152602001600020549050600060088381548110612ba157612ba0613f3f565b5b906000526020600020015490508060088381548110612bc357612bc2613f3f565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612c1257612c11613f10565b5b6001900381819060005260206000200160009055905550505050565b6000612c39836115bc565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d14906139a8565b60405180910390fd5b612d2681611d38565b15612d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5d906138c8565b60405180910390fd5b612d72600083836126a1565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612dc29190613bdb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612e8790613da6565b90600052602060002090601f016020900481019282612ea95760008555612ef0565b82601f10612ec257805160ff1916838001178555612ef0565b82800160010185558215612ef0579182015b82811115612eef578251825591602001919060010190612ed4565b5b509050612efd9190612f01565b5090565b5b80821115612f1a576000816000905550600101612f02565b5090565b6000612f31612f2c84613ae8565b613ac3565b905082815260208101848484011115612f4d57612f4c613fa2565b5b612f58848285613d64565b509392505050565b6000612f73612f6e84613b19565b613ac3565b905082815260208101848484011115612f8f57612f8e613fa2565b5b612f9a848285613d64565b509392505050565b600081359050612fb1816144b8565b92915050565b600081359050612fc6816144cf565b92915050565b600081359050612fdb816144e6565b92915050565b600081519050612ff0816144e6565b92915050565b600082601f83011261300b5761300a613f9d565b5b813561301b848260208601612f1e565b91505092915050565b600082601f83011261303957613038613f9d565b5b8135613049848260208601612f60565b91505092915050565b600081359050613061816144fd565b92915050565b60006020828403121561307d5761307c613fac565b5b600061308b84828501612fa2565b91505092915050565b600080604083850312156130ab576130aa613fac565b5b60006130b985828601612fa2565b92505060206130ca85828601612fa2565b9150509250929050565b6000806000606084860312156130ed576130ec613fac565b5b60006130fb86828701612fa2565b935050602061310c86828701612fa2565b925050604061311d86828701613052565b9150509250925092565b6000806000806080858703121561314157613140613fac565b5b600061314f87828801612fa2565b945050602061316087828801612fa2565b935050604061317187828801613052565b925050606085013567ffffffffffffffff81111561319257613191613fa7565b5b61319e87828801612ff6565b91505092959194509250565b600080604083850312156131c1576131c0613fac565b5b60006131cf85828601612fa2565b92505060206131e085828601612fb7565b9150509250929050565b6000806040838503121561320157613200613fac565b5b600061320f85828601612fa2565b925050602061322085828601613052565b9150509250929050565b6000602082840312156132405761323f613fac565b5b600061324e84828501612fb7565b91505092915050565b60006020828403121561326d5761326c613fac565b5b600061327b84828501612fcc565b91505092915050565b60006020828403121561329a57613299613fac565b5b60006132a884828501612fe1565b91505092915050565b6000602082840312156132c7576132c6613fac565b5b600082013567ffffffffffffffff8111156132e5576132e4613fa7565b5b6132f184828501613024565b91505092915050565b6000602082840312156133105761330f613fac565b5b600061331e84828501613052565b91505092915050565b60006133338383613753565b60208301905092915050565b61334881613cf0565b82525050565b600061335982613b6f565b6133638185613b9d565b935061336e83613b4a565b8060005b8381101561339f5781516133868882613327565b975061339183613b90565b925050600181019050613372565b5085935050505092915050565b6133b581613d02565b82525050565b60006133c682613b7a565b6133d08185613bae565b93506133e0818560208601613d73565b6133e981613fb1565b840191505092915050565b60006133ff82613b85565b6134098185613bbf565b9350613419818560208601613d73565b61342281613fb1565b840191505092915050565b600061343882613b85565b6134428185613bd0565b9350613452818560208601613d73565b80840191505092915050565b6000815461346b81613da6565b6134758186613bd0565b9450600182166000811461349057600181146134a1576134d4565b60ff198316865281860193506134d4565b6134aa85613b5a565b60005b838110156134cc578154818901526001820191506020810190506134ad565b838801955050505b50505092915050565b60006134ea602b83613bbf565b91506134f582613fc2565b604082019050919050565b600061350d603283613bbf565b915061351882614011565b604082019050919050565b6000613530602683613bbf565b915061353b82614060565b604082019050919050565b6000613553601c83613bbf565b915061355e826140af565b602082019050919050565b6000613576602483613bbf565b9150613581826140d8565b604082019050919050565b6000613599601983613bbf565b91506135a482614127565b602082019050919050565b60006135bc602c83613bbf565b91506135c782614150565b604082019050919050565b60006135df603883613bbf565b91506135ea8261419f565b604082019050919050565b6000613602602a83613bbf565b915061360d826141ee565b604082019050919050565b6000613625602983613bbf565b91506136308261423d565b604082019050919050565b6000613648602083613bbf565b91506136538261428c565b602082019050919050565b600061366b602c83613bbf565b9150613676826142b5565b604082019050919050565b600061368e602083613bbf565b915061369982614304565b602082019050919050565b60006136b1602983613bbf565b91506136bc8261432d565b604082019050919050565b60006136d4602f83613bbf565b91506136df8261437c565b604082019050919050565b60006136f7602183613bbf565b9150613702826143cb565b604082019050919050565b600061371a603183613bbf565b91506137258261441a565b604082019050919050565b600061373d602c83613bbf565b915061374882614469565b604082019050919050565b61375c81613d5a565b82525050565b61376b81613d5a565b82525050565b600061377d828661342d565b9150613789828561342d565b9150613795828461345e565b9150819050949350505050565b60006020820190506137b7600083018461333f565b92915050565b60006080820190506137d2600083018761333f565b6137df602083018661333f565b6137ec6040830185613762565b81810360608301526137fe81846133bb565b905095945050505050565b60006020820190508181036000830152613823818461334e565b905092915050565b600060208201905061384060008301846133ac565b92915050565b6000602082019050818103600083015261386081846133f4565b905092915050565b60006020820190508181036000830152613881816134dd565b9050919050565b600060208201905081810360008301526138a181613500565b9050919050565b600060208201905081810360008301526138c181613523565b9050919050565b600060208201905081810360008301526138e181613546565b9050919050565b6000602082019050818103600083015261390181613569565b9050919050565b600060208201905081810360008301526139218161358c565b9050919050565b60006020820190508181036000830152613941816135af565b9050919050565b60006020820190508181036000830152613961816135d2565b9050919050565b60006020820190508181036000830152613981816135f5565b9050919050565b600060208201905081810360008301526139a181613618565b9050919050565b600060208201905081810360008301526139c18161363b565b9050919050565b600060208201905081810360008301526139e18161365e565b9050919050565b60006020820190508181036000830152613a0181613681565b9050919050565b60006020820190508181036000830152613a21816136a4565b9050919050565b60006020820190508181036000830152613a41816136c7565b9050919050565b60006020820190508181036000830152613a61816136ea565b9050919050565b60006020820190508181036000830152613a818161370d565b9050919050565b60006020820190508181036000830152613aa181613730565b9050919050565b6000602082019050613abd6000830184613762565b92915050565b6000613acd613ade565b9050613ad98282613dd8565b919050565b6000604051905090565b600067ffffffffffffffff821115613b0357613b02613f6e565b5b613b0c82613fb1565b9050602081019050919050565b600067ffffffffffffffff821115613b3457613b33613f6e565b5b613b3d82613fb1565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613be682613d5a565b9150613bf183613d5a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c2657613c25613e83565b5b828201905092915050565b6000613c3c82613d5a565b9150613c4783613d5a565b925082613c5757613c56613eb2565b5b828204905092915050565b6000613c6d82613d5a565b9150613c7883613d5a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cb157613cb0613e83565b5b828202905092915050565b6000613cc782613d5a565b9150613cd283613d5a565b925082821015613ce557613ce4613e83565b5b828203905092915050565b6000613cfb82613d3a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d91578082015181840152602081019050613d76565b83811115613da0576000848401525b50505050565b60006002820490506001821680613dbe57607f821691505b60208210811415613dd257613dd1613ee1565b5b50919050565b613de182613fb1565b810181811067ffffffffffffffff82111715613e0057613dff613f6e565b5b80604052505050565b6000613e1482613d5a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e4757613e46613e83565b5b600182019050919050565b6000613e5d82613d5a565b9150613e6883613d5a565b925082613e7857613e77613eb2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6144c181613cf0565b81146144cc57600080fd5b50565b6144d881613d02565b81146144e357600080fd5b50565b6144ef81613d0e565b81146144fa57600080fd5b50565b61450681613d5a565b811461451157600080fd5b5056fea2646970667358221220deb877b33a087b17a06859435551696d7d05f5a458c70aef2e29cbc1aac4355c64736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000649524c44414f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003494c440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001968747470733a2f2f69726c64616f2e696f2f7061737365732f00000000000000

-----Decoded View---------------
Arg [0] : _name (string): IRLDAO
Arg [1] : _symbol (string): ILD
Arg [2] : _initBaseURI (string): https://irldao.io/passes/

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [4] : 49524c44414f0000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 494c440000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [8] : 68747470733a2f2f69726c64616f2e696f2f7061737365732f00000000000000


Deployed Bytecode Sourcemap

195:3156:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1019:224:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2523:71:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2551:100:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4110:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3633:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;340:31:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1659:113:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;410:33:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4860:339:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1327:256:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2694:98:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2796:553;;;:::i;:::-;;843:485;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5270:185:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1332:337:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2099:78;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2598:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1849:233:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2299:96:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;447:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2245:239:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;274:21:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1975:208:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1721:103:1;;;;;;;;;;;;;:::i;:::-;;2181:114:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1070:87:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2720:104:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4403:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5526:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;299:37:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1673:407;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;375:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;477:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2399:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4629:164:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1979:201:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1019:224:5;1121:4;1160:35;1145:50;;;:11;:50;;;;:90;;;;1199:36;1223:11;1199:23;:36::i;:::-;1145:90;1138:97;;1019:224;;;:::o;2523:71:0:-;1301:12:1;:10;:12::i;:::-;1290:23;;:7;:5;:7::i;:::-;:23;;;1282:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2583:6:0::1;2574;;:15;;;;;;;;;;;;;;;;;;2523:71:::0;:::o;2551:100:2:-;2605:13;2638:5;2631:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2551:100;:::o;4110:221::-;4186:7;4214:16;4222:7;4214;:16::i;:::-;4206:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4299:15;:24;4315:7;4299:24;;;;;;;;;;;;;;;;;;;;;4292:31;;4110:221;;;:::o;3633:411::-;3714:13;3730:23;3745:7;3730:14;:23::i;:::-;3714:39;;3778:5;3772:11;;:2;:11;;;;3764:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3872:5;3856:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3881:37;3898:5;3905:12;:10;:12::i;:::-;3881:16;:37::i;:::-;3856:62;3834:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;4015:21;4024:2;4028:7;4015:8;:21::i;:::-;3703:341;3633:411;;:::o;340:31:0:-;;;;:::o;1659:113:5:-;1720:7;1747:10;:17;;;;1740:24;;1659:113;:::o;410:33:0:-;;;;:::o;4860:339:2:-;5055:41;5074:12;:10;:12::i;:::-;5088:7;5055:18;:41::i;:::-;5047:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5163:28;5173:4;5179:2;5183:7;5163:9;:28::i;:::-;4860:339;;;:::o;1327:256:5:-;1424:7;1460:23;1477:5;1460:16;:23::i;:::-;1452:5;:31;1444:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1549:12;:19;1562:5;1549:19;;;;;;;;;;;;;;;:26;1569:5;1549:26;;;;;;;;;;;;1542:33;;1327:256;;;;:::o;2694:98:0:-;1301:12:1;:10;:12::i;:::-;1290:23;;:7;:5;:7::i;:::-;:23;;;1282:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2782:5:0::1;2761:11;:18;2773:5;2761:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;2694:98:::0;:::o;2796:553::-;1301:12:1;:10;:12::i;:::-;1290:23;;:7;:5;:7::i;:::-;:23;;;1282:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2847:13:0::1;2863:21;2847:37;;2890:11;2920:2;2913:3;2905:5;:11;;;;:::i;:::-;2904:18;;;;:::i;:::-;2890:32;;2928:11;2958:1;2951:3;2943:5;:11;;;;:::i;:::-;2942:17;;;;:::i;:::-;2928:31;;2965:13;2997:1;2990:3;2982:5;:11;;;;:::i;:::-;2981:17;;;;:::i;:::-;2965:33;;3004:12;3035:1;3028:3;3020:5;:11;;;;:::i;:::-;3019:17;;;;:::i;:::-;3004:32;;3059:42;3051:56;;:61;3108:3;3051:61;;;;;;;;;;;;;;;;;;;;;;;3043:70;;;::::0;::::1;;3135:42;3127:56;;:61;3184:3;3127:61;;;;;;;;;;;;;;;;;;;;;;;3119:70;;;::::0;::::1;;3211:42;3203:56;;:63;3260:5;3203:63;;;;;;;;;;;;;;;;;;;;;;;3195:72;;;::::0;::::1;;3289:42;3281:56;;:62;3338:4;3281:62;;;;;;;;;;;;;;;;;;;;;;;3273:71;;;::::0;::::1;;2841:508;;;;;2796:553::o:0;843:485::-;912:14;929:13;:11;:13::i;:::-;912:30;;957:6;;;;;;;;;;;956:7;948:16;;;;;;992:1;978:11;:15;970:24;;;;;;1023:13;;1008:11;:28;;1000:37;;;;;;1075:9;;1060:11;1051:6;:20;;;;:::i;:::-;:33;;1043:42;;;;;;1110:7;:5;:7::i;:::-;1096:21;;:10;:21;;;1092:142;;1159:4;1132:31;;:11;:23;1144:10;1132:23;;;;;;;;;;;;;;;;;;;;;;;;;:31;;;1129:99;;1205:11;1198:4;;:18;;;;:::i;:::-;1185:9;:31;;1177:40;;;;;;1129:99;1092:142;1245:9;1257:1;1245:13;;1240:84;1265:11;1260:1;:16;1240:84;;1291:26;1301:3;1315:1;1306:6;:10;;;;:::i;:::-;1291:9;:26::i;:::-;1278:3;;;;;:::i;:::-;;;;1240:84;;;;906:422;843:485;;:::o;5270:185:2:-;5408:39;5425:4;5431:2;5435:7;5408:39;;;;;;;;;;;;:16;:39::i;:::-;5270:185;;;:::o;1332:337:0:-;1404:16;1430:23;1456:17;1466:6;1456:9;:17::i;:::-;1430:43;;1479:25;1521:15;1507:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1479:58;;1548:9;1543:101;1563:15;1559:1;:19;1543:101;;;1607:30;1627:6;1635:1;1607:19;:30::i;:::-;1593:8;1602:1;1593:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;1580:3;;;;;:::i;:::-;;;;1543:101;;;;1656:8;1649:15;;;;1332:337;;;:::o;2099:78::-;1301:12:1;:10;:12::i;:::-;1290:23;;:7;:5;:7::i;:::-;:23;;;1282:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2164:8:0::1;2157:4;:15;;;;2099:78:::0;:::o;2598:91::-;1301:12:1;:10;:12::i;:::-;1290:23;;:7;:5;:7::i;:::-;:23;;;1282:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2680:4:0::1;2659:11;:18;2671:5;2659:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;2598:91:::0;:::o;1849:233:5:-;1924:7;1960:30;:28;:30::i;:::-;1952:5;:38;1944:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;2057:10;2068:5;2057:17;;;;;;;;:::i;:::-;;;;;;;;;;2050:24;;1849:233;;;:::o;2299:96:0:-;1301:12:1;:10;:12::i;:::-;1290:23;;:7;:5;:7::i;:::-;:23;;;1282:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2379:11:0::1;2369:7;:21;;;;;;;;;;;;:::i;:::-;;2299:96:::0;:::o;447:26::-;;;;;;;;;;;;;:::o;2245:239:2:-;2317:7;2337:13;2353:7;:16;2361:7;2353:16;;;;;;;;;;;;;;;;;;;;;2337:32;;2405:1;2388:19;;:5;:19;;;;2380:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2471:5;2464:12;;;2245:239;;;:::o;274:21:0:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1975:208:2:-;2047:7;2092:1;2075:19;;:5;:19;;;;2067:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;2159:9;:16;2169:5;2159:16;;;;;;;;;;;;;;;;2152:23;;1975:208;;;:::o;1721:103:1:-;1301:12;:10;:12::i;:::-;1290:23;;:7;:5;:7::i;:::-;:23;;;1282:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1786:30:::1;1813:1;1786:18;:30::i;:::-;1721:103::o:0;2181:114:0:-;1301:12:1;:10;:12::i;:::-;1290:23;;:7;:5;:7::i;:::-;:23;;;1282:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2273:17:0::1;2257:13;:33;;;;2181:114:::0;:::o;1070:87:1:-;1116:7;1143:6;;;;;;;;;;;1136:13;;1070:87;:::o;2720:104:2:-;2776:13;2809:7;2802:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2720:104;:::o;4403:155::-;4498:52;4517:12;:10;:12::i;:::-;4531:8;4541;4498:18;:52::i;:::-;4403:155;;:::o;5526:328::-;5701:41;5720:12;:10;:12::i;:::-;5734:7;5701:18;:41::i;:::-;5693:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5807:39;5821:4;5827:2;5831:7;5840:5;5807:13;:39::i;:::-;5526:328;;;;:::o;299:37:0:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1673:407::-;1766:13;1804:16;1812:7;1804;:16::i;:::-;1789:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;1890:28;1921:10;:8;:10::i;:::-;1890:41;;1975:1;1950:14;1944:28;:32;:131;;;;;;;;;;;;;;;;;2011:14;2027:18;:7;:16;:18::i;:::-;2047:13;1994:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1944:131;1937:138;;;1673:407;;;:::o;375:31::-;;;;:::o;477:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;2399:120::-;1301:12:1;:10;:12::i;:::-;1290:23;;:7;:5;:7::i;:::-;:23;;;1282:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2497:17:0::1;2481:13;:33;;;;;;;;;;;;:::i;:::-;;2399:120:::0;:::o;4629:164:2:-;4726:4;4750:18;:25;4769:5;4750:25;;;;;;;;;;;;;;;:35;4776:8;4750:35;;;;;;;;;;;;;;;;;;;;;;;;;4743:42;;4629:164;;;;:::o;1979:201:1:-;1301:12;:10;:12::i;:::-;1290:23;;:7;:5;:7::i;:::-;:23;;;1282:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2088:1:::1;2068:22;;:8;:22;;;;2060:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2144:28;2163:8;2144:18;:28::i;:::-;1979:201:::0;:::o;797:387:8:-;857:4;1065:12;1132:7;1120:20;1112:28;;1175:1;1168:4;:8;1161:15;;;797:387;;;:::o;13913:126:2:-;;;;:::o;1606:305::-;1708:4;1760:25;1745:40;;;:11;:40;;;;:105;;;;1817:33;1802:48;;;:11;:48;;;;1745:105;:158;;;;1867:36;1891:11;1867:23;:36::i;:::-;1745:158;1725:178;;1606:305;;;:::o;656:98:9:-;709:7;736:10;729:17;;656:98;:::o;7364:127:2:-;7429:4;7481:1;7453:30;;:7;:16;7461:7;7453:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7446:37;;7364:127;;;:::o;11346:174::-;11448:2;11421:15;:24;11437:7;11421:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11504:7;11500:2;11466:46;;11475:23;11490:7;11475:14;:23::i;:::-;11466:46;;;;;;;;;;;;11346:174;;:::o;7658:348::-;7751:4;7776:16;7784:7;7776;:16::i;:::-;7768:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7852:13;7868:23;7883:7;7868:14;:23::i;:::-;7852:39;;7921:5;7910:16;;:7;:16;;;:51;;;;7954:7;7930:31;;:20;7942:7;7930:11;:20::i;:::-;:31;;;7910:51;:87;;;;7965:32;7982:5;7989:7;7965:16;:32::i;:::-;7910:87;7902:96;;;7658:348;;;;:::o;10650:578::-;10809:4;10782:31;;:23;10797:7;10782:14;:23::i;:::-;:31;;;10774:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10892:1;10878:16;;:2;:16;;;;10870:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10948:39;10969:4;10975:2;10979:7;10948:20;:39::i;:::-;11052:29;11069:1;11073:7;11052:8;:29::i;:::-;11113:1;11094:9;:15;11104:4;11094:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;11142:1;11125:9;:13;11135:2;11125:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;11173:2;11154:7;:16;11162:7;11154:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;11212:7;11208:2;11193:27;;11202:4;11193:27;;;;;;;;;;;;10650:578;;;:::o;8348:110::-;8424:26;8434:2;8438:7;8424:26;;;;;;;;;;;;:9;:26::i;:::-;8348:110;;:::o;2340:191:1:-;2414:16;2433:6;;;;;;;;;;;2414:25;;2459:8;2450:6;;:17;;;;;;;;;;;;;;;;;;2514:8;2483:40;;2504:8;2483:40;;;;;;;;;;;;2403:128;2340:191;:::o;11662:315:2:-;11817:8;11808:17;;:5;:17;;;;11800:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;11904:8;11866:18;:25;11885:5;11866:25;;;;;;;;;;;;;;;:35;11892:8;11866:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;11950:8;11928:41;;11943:5;11928:41;;;11960:8;11928:41;;;;;;:::i;:::-;;;;;;;;11662:315;;;:::o;6736:::-;6893:28;6903:4;6909:2;6913:7;6893:9;:28::i;:::-;6940:48;6963:4;6969:2;6973:7;6982:5;6940:22;:48::i;:::-;6932:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6736:315;;;;:::o;727:100:0:-;787:13;815:7;808:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;727:100;:::o;342:723:10:-;398:13;628:1;619:5;:10;615:53;;;646:10;;;;;;;;;;;;;;;;;;;;;615:53;678:12;693:5;678:20;;709:14;734:78;749:1;741:4;:9;734:78;;767:8;;;;;:::i;:::-;;;;798:2;790:10;;;;;:::i;:::-;;;734:78;;;822:19;854:6;844:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;822:39;;872:154;888:1;879:5;:10;872:154;;916:1;906:11;;;;;:::i;:::-;;;983:2;975:5;:10;;;;:::i;:::-;962:2;:24;;;;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1012:2;1003:11;;;;;:::i;:::-;;;872:154;;;1050:6;1036:21;;;;;342:723;;;;:::o;854:157:11:-;939:4;978:25;963:40;;;:11;:40;;;;956:47;;854:157;;;:::o;2695:589:5:-;2839:45;2866:4;2872:2;2876:7;2839:26;:45::i;:::-;2917:1;2901:18;;:4;:18;;;2897:187;;;2936:40;2968:7;2936:31;:40::i;:::-;2897:187;;;3006:2;2998:10;;:4;:10;;;2994:90;;3025:47;3058:4;3064:7;3025:32;:47::i;:::-;2994:90;2897:187;3112:1;3098:16;;:2;:16;;;3094:183;;;3131:45;3168:7;3131:36;:45::i;:::-;3094:183;;;3204:4;3198:10;;:2;:10;;;3194:83;;3225:40;3253:2;3257:7;3225:27;:40::i;:::-;3194:83;3094:183;2695:589;;;:::o;8685:321:2:-;8815:18;8821:2;8825:7;8815:5;:18::i;:::-;8866:54;8897:1;8901:2;8905:7;8914:5;8866:22;:54::i;:::-;8844:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;8685:321;;;:::o;12542:799::-;12697:4;12718:15;:2;:13;;;:15::i;:::-;12714:620;;;12770:2;12754:36;;;12791:12;:10;:12::i;:::-;12805:4;12811:7;12820:5;12754:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;12750:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13013:1;12996:6;:13;:18;12992:272;;;13039:60;;;;;;;;;;:::i;:::-;;;;;;;;12992:272;13214:6;13208:13;13199:6;13195:2;13191:15;13184:38;12750:529;12887:41;;;12877:51;;;:6;:51;;;;12870:58;;;;;12714:620;13318:4;13311:11;;12542:799;;;;;;;:::o;4007:164:5:-;4111:10;:17;;;;4084:15;:24;4100:7;4084:24;;;;;;;;;;;:44;;;;4139:10;4155:7;4139:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4007:164;:::o;4798:988::-;5064:22;5114:1;5089:22;5106:4;5089:16;:22::i;:::-;:26;;;;:::i;:::-;5064:51;;5126:18;5147:17;:26;5165:7;5147:26;;;;;;;;;;;;5126:47;;5294:14;5280:10;:28;5276:328;;5325:19;5347:12;:18;5360:4;5347:18;;;;;;;;;;;;;;;:34;5366:14;5347:34;;;;;;;;;;;;5325:56;;5431:11;5398:12;:18;5411:4;5398:18;;;;;;;;;;;;;;;:30;5417:10;5398:30;;;;;;;;;;;:44;;;;5548:10;5515:17;:30;5533:11;5515:30;;;;;;;;;;;:43;;;;5310:294;5276:328;5700:17;:26;5718:7;5700:26;;;;;;;;;;;5693:33;;;5744:12;:18;5757:4;5744:18;;;;;;;;;;;;;;;:34;5763:14;5744:34;;;;;;;;;;;5737:41;;;4879:907;;4798:988;;:::o;6081:1079::-;6334:22;6379:1;6359:10;:17;;;;:21;;;;:::i;:::-;6334:46;;6391:18;6412:15;:24;6428:7;6412:24;;;;;;;;;;;;6391:45;;6763:19;6785:10;6796:14;6785:26;;;;;;;;:::i;:::-;;;;;;;;;;6763:48;;6849:11;6824:10;6835;6824:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;6960:10;6929:15;:28;6945:11;6929:28;;;;;;;;;;;:41;;;;7101:15;:24;7117:7;7101:24;;;;;;;;;;;7094:31;;;7136:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6152:1008;;;6081:1079;:::o;3585:221::-;3670:14;3687:20;3704:2;3687:16;:20::i;:::-;3670:37;;3745:7;3718:12;:16;3731:2;3718:16;;;;;;;;;;;;;;;:24;3735:6;3718:24;;;;;;;;;;;:34;;;;3792:6;3763:17;:26;3781:7;3763:26;;;;;;;;;;;:35;;;;3659:147;3585:221;;:::o;9342:382:2:-;9436:1;9422:16;;:2;:16;;;;9414:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9495:16;9503:7;9495;:16::i;:::-;9494:17;9486:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9557:45;9586:1;9590:2;9594:7;9557:20;:45::i;:::-;9632:1;9615:9;:13;9625:2;9615:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9663:2;9644:7;:16;9652:7;9644:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9708:7;9704:2;9683:33;;9700:1;9683:33;;;;;;;;;;;;9342:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:13:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:179::-;7556:10;7577:46;7619:3;7611:6;7577:46;:::i;:::-;7655:4;7650:3;7646:14;7632:28;;7487:179;;;;:::o;7672:118::-;7759:24;7777:5;7759:24;:::i;:::-;7754:3;7747:37;7672:118;;:::o;7826:732::-;7945:3;7974:54;8022:5;7974:54;:::i;:::-;8044:86;8123:6;8118:3;8044:86;:::i;:::-;8037:93;;8154:56;8204:5;8154:56;:::i;:::-;8233:7;8264:1;8249:284;8274:6;8271:1;8268:13;8249:284;;;8350:6;8344:13;8377:63;8436:3;8421:13;8377:63;:::i;:::-;8370:70;;8463:60;8516:6;8463:60;:::i;:::-;8453:70;;8309:224;8296:1;8293;8289:9;8284:14;;8249:284;;;8253:14;8549:3;8542:10;;7950:608;;;7826:732;;;;:::o;8564:109::-;8645:21;8660:5;8645:21;:::i;:::-;8640:3;8633:34;8564:109;;:::o;8679:360::-;8765:3;8793:38;8825:5;8793:38;:::i;:::-;8847:70;8910:6;8905:3;8847:70;:::i;:::-;8840:77;;8926:52;8971:6;8966:3;8959:4;8952:5;8948:16;8926:52;:::i;:::-;9003:29;9025:6;9003:29;:::i;:::-;8998:3;8994:39;8987:46;;8769:270;8679:360;;;;:::o;9045:364::-;9133:3;9161:39;9194:5;9161:39;:::i;:::-;9216:71;9280:6;9275:3;9216:71;:::i;:::-;9209:78;;9296:52;9341:6;9336:3;9329:4;9322:5;9318:16;9296:52;:::i;:::-;9373:29;9395:6;9373:29;:::i;:::-;9368:3;9364:39;9357:46;;9137:272;9045:364;;;;:::o;9415:377::-;9521:3;9549:39;9582:5;9549:39;:::i;:::-;9604:89;9686:6;9681:3;9604:89;:::i;:::-;9597:96;;9702:52;9747:6;9742:3;9735:4;9728:5;9724:16;9702:52;:::i;:::-;9779:6;9774:3;9770:16;9763:23;;9525:267;9415:377;;;;:::o;9822:845::-;9925:3;9962:5;9956:12;9991:36;10017:9;9991:36;:::i;:::-;10043:89;10125:6;10120:3;10043:89;:::i;:::-;10036:96;;10163:1;10152:9;10148:17;10179:1;10174:137;;;;10325:1;10320:341;;;;10141:520;;10174:137;10258:4;10254:9;10243;10239:25;10234:3;10227:38;10294:6;10289:3;10285:16;10278:23;;10174:137;;10320:341;10387:38;10419:5;10387:38;:::i;:::-;10447:1;10461:154;10475:6;10472:1;10469:13;10461:154;;;10549:7;10543:14;10539:1;10534:3;10530:11;10523:35;10599:1;10590:7;10586:15;10575:26;;10497:4;10494:1;10490:12;10485:17;;10461:154;;;10644:6;10639:3;10635:16;10628:23;;10327:334;;10141:520;;9929:738;;9822:845;;;;:::o;10673:366::-;10815:3;10836:67;10900:2;10895:3;10836:67;:::i;:::-;10829:74;;10912:93;11001:3;10912:93;:::i;:::-;11030:2;11025:3;11021:12;11014:19;;10673:366;;;:::o;11045:::-;11187:3;11208:67;11272:2;11267:3;11208:67;:::i;:::-;11201:74;;11284:93;11373:3;11284:93;:::i;:::-;11402:2;11397:3;11393:12;11386:19;;11045:366;;;:::o;11417:::-;11559:3;11580:67;11644:2;11639:3;11580:67;:::i;:::-;11573:74;;11656:93;11745:3;11656:93;:::i;:::-;11774:2;11769:3;11765:12;11758:19;;11417:366;;;:::o;11789:::-;11931:3;11952:67;12016:2;12011:3;11952:67;:::i;:::-;11945:74;;12028:93;12117:3;12028:93;:::i;:::-;12146:2;12141:3;12137:12;12130:19;;11789:366;;;:::o;12161:::-;12303:3;12324:67;12388:2;12383:3;12324:67;:::i;:::-;12317:74;;12400:93;12489:3;12400:93;:::i;:::-;12518:2;12513:3;12509:12;12502:19;;12161:366;;;:::o;12533:::-;12675:3;12696:67;12760:2;12755:3;12696:67;:::i;:::-;12689:74;;12772:93;12861:3;12772:93;:::i;:::-;12890:2;12885:3;12881:12;12874:19;;12533:366;;;:::o;12905:::-;13047:3;13068:67;13132:2;13127:3;13068:67;:::i;:::-;13061:74;;13144:93;13233:3;13144:93;:::i;:::-;13262:2;13257:3;13253:12;13246:19;;12905:366;;;:::o;13277:::-;13419:3;13440:67;13504:2;13499:3;13440:67;:::i;:::-;13433:74;;13516:93;13605:3;13516:93;:::i;:::-;13634:2;13629:3;13625:12;13618:19;;13277:366;;;:::o;13649:::-;13791:3;13812:67;13876:2;13871:3;13812:67;:::i;:::-;13805:74;;13888:93;13977:3;13888:93;:::i;:::-;14006:2;14001:3;13997:12;13990:19;;13649:366;;;:::o;14021:::-;14163:3;14184:67;14248:2;14243:3;14184:67;:::i;:::-;14177:74;;14260:93;14349:3;14260:93;:::i;:::-;14378:2;14373:3;14369:12;14362:19;;14021:366;;;:::o;14393:::-;14535:3;14556:67;14620:2;14615:3;14556:67;:::i;:::-;14549:74;;14632:93;14721:3;14632:93;:::i;:::-;14750:2;14745:3;14741:12;14734:19;;14393:366;;;:::o;14765:::-;14907:3;14928:67;14992:2;14987:3;14928:67;:::i;:::-;14921:74;;15004:93;15093:3;15004:93;:::i;:::-;15122:2;15117:3;15113:12;15106:19;;14765:366;;;:::o;15137:::-;15279:3;15300:67;15364:2;15359:3;15300:67;:::i;:::-;15293:74;;15376:93;15465:3;15376:93;:::i;:::-;15494:2;15489:3;15485:12;15478:19;;15137:366;;;:::o;15509:::-;15651:3;15672:67;15736:2;15731:3;15672:67;:::i;:::-;15665:74;;15748:93;15837:3;15748:93;:::i;:::-;15866:2;15861:3;15857:12;15850:19;;15509:366;;;:::o;15881:::-;16023:3;16044:67;16108:2;16103:3;16044:67;:::i;:::-;16037:74;;16120:93;16209:3;16120:93;:::i;:::-;16238:2;16233:3;16229:12;16222:19;;15881:366;;;:::o;16253:::-;16395:3;16416:67;16480:2;16475:3;16416:67;:::i;:::-;16409:74;;16492:93;16581:3;16492:93;:::i;:::-;16610:2;16605:3;16601:12;16594:19;;16253:366;;;:::o;16625:::-;16767:3;16788:67;16852:2;16847:3;16788:67;:::i;:::-;16781:74;;16864:93;16953:3;16864:93;:::i;:::-;16982:2;16977:3;16973:12;16966:19;;16625:366;;;:::o;16997:::-;17139:3;17160:67;17224:2;17219:3;17160:67;:::i;:::-;17153:74;;17236:93;17325:3;17236:93;:::i;:::-;17354:2;17349:3;17345:12;17338:19;;16997:366;;;:::o;17369:108::-;17446:24;17464:5;17446:24;:::i;:::-;17441:3;17434:37;17369:108;;:::o;17483:118::-;17570:24;17588:5;17570:24;:::i;:::-;17565:3;17558:37;17483:118;;:::o;17607:589::-;17832:3;17854:95;17945:3;17936:6;17854:95;:::i;:::-;17847:102;;17966:95;18057:3;18048:6;17966:95;:::i;:::-;17959:102;;18078:92;18166:3;18157:6;18078:92;:::i;:::-;18071:99;;18187:3;18180:10;;17607:589;;;;;;:::o;18202:222::-;18295:4;18333:2;18322:9;18318:18;18310:26;;18346:71;18414:1;18403:9;18399:17;18390:6;18346:71;:::i;:::-;18202:222;;;;:::o;18430:640::-;18625:4;18663:3;18652:9;18648:19;18640:27;;18677:71;18745:1;18734:9;18730:17;18721:6;18677:71;:::i;:::-;18758:72;18826:2;18815:9;18811:18;18802:6;18758:72;:::i;:::-;18840;18908:2;18897:9;18893:18;18884:6;18840:72;:::i;:::-;18959:9;18953:4;18949:20;18944:2;18933:9;18929:18;18922:48;18987:76;19058:4;19049:6;18987:76;:::i;:::-;18979:84;;18430:640;;;;;;;:::o;19076:373::-;19219:4;19257:2;19246:9;19242:18;19234:26;;19306:9;19300:4;19296:20;19292:1;19281:9;19277:17;19270:47;19334:108;19437:4;19428:6;19334:108;:::i;:::-;19326:116;;19076:373;;;;:::o;19455:210::-;19542:4;19580:2;19569:9;19565:18;19557:26;;19593:65;19655:1;19644:9;19640:17;19631:6;19593:65;:::i;:::-;19455:210;;;;:::o;19671:313::-;19784:4;19822:2;19811:9;19807:18;19799:26;;19871:9;19865:4;19861:20;19857:1;19846:9;19842:17;19835:47;19899:78;19972:4;19963:6;19899:78;:::i;:::-;19891:86;;19671:313;;;;:::o;19990:419::-;20156:4;20194:2;20183:9;20179:18;20171:26;;20243:9;20237:4;20233:20;20229:1;20218:9;20214:17;20207:47;20271:131;20397:4;20271:131;:::i;:::-;20263:139;;19990:419;;;:::o;20415:::-;20581:4;20619:2;20608:9;20604:18;20596:26;;20668:9;20662:4;20658:20;20654:1;20643:9;20639:17;20632:47;20696:131;20822:4;20696:131;:::i;:::-;20688:139;;20415:419;;;:::o;20840:::-;21006:4;21044:2;21033:9;21029:18;21021:26;;21093:9;21087:4;21083:20;21079:1;21068:9;21064:17;21057:47;21121:131;21247:4;21121:131;:::i;:::-;21113:139;;20840:419;;;:::o;21265:::-;21431:4;21469:2;21458:9;21454:18;21446:26;;21518:9;21512:4;21508:20;21504:1;21493:9;21489:17;21482:47;21546:131;21672:4;21546:131;:::i;:::-;21538:139;;21265:419;;;:::o;21690:::-;21856:4;21894:2;21883:9;21879:18;21871:26;;21943:9;21937:4;21933:20;21929:1;21918:9;21914:17;21907:47;21971:131;22097:4;21971:131;:::i;:::-;21963:139;;21690:419;;;:::o;22115:::-;22281:4;22319:2;22308:9;22304:18;22296:26;;22368:9;22362:4;22358:20;22354:1;22343:9;22339:17;22332:47;22396:131;22522:4;22396:131;:::i;:::-;22388:139;;22115:419;;;:::o;22540:::-;22706:4;22744:2;22733:9;22729:18;22721:26;;22793:9;22787:4;22783:20;22779:1;22768:9;22764:17;22757:47;22821:131;22947:4;22821:131;:::i;:::-;22813:139;;22540:419;;;:::o;22965:::-;23131:4;23169:2;23158:9;23154:18;23146:26;;23218:9;23212:4;23208:20;23204:1;23193:9;23189:17;23182:47;23246:131;23372:4;23246:131;:::i;:::-;23238:139;;22965:419;;;:::o;23390:::-;23556:4;23594:2;23583:9;23579:18;23571:26;;23643:9;23637:4;23633:20;23629:1;23618:9;23614:17;23607:47;23671:131;23797:4;23671:131;:::i;:::-;23663:139;;23390:419;;;:::o;23815:::-;23981:4;24019:2;24008:9;24004:18;23996:26;;24068:9;24062:4;24058:20;24054:1;24043:9;24039:17;24032:47;24096:131;24222:4;24096:131;:::i;:::-;24088:139;;23815:419;;;:::o;24240:::-;24406:4;24444:2;24433:9;24429:18;24421:26;;24493:9;24487:4;24483:20;24479:1;24468:9;24464:17;24457:47;24521:131;24647:4;24521:131;:::i;:::-;24513:139;;24240:419;;;:::o;24665:::-;24831:4;24869:2;24858:9;24854:18;24846:26;;24918:9;24912:4;24908:20;24904:1;24893:9;24889:17;24882:47;24946:131;25072:4;24946:131;:::i;:::-;24938:139;;24665:419;;;:::o;25090:::-;25256:4;25294:2;25283:9;25279:18;25271:26;;25343:9;25337:4;25333:20;25329:1;25318:9;25314:17;25307:47;25371:131;25497:4;25371:131;:::i;:::-;25363:139;;25090:419;;;:::o;25515:::-;25681:4;25719:2;25708:9;25704:18;25696:26;;25768:9;25762:4;25758:20;25754:1;25743:9;25739:17;25732:47;25796:131;25922:4;25796:131;:::i;:::-;25788:139;;25515:419;;;:::o;25940:::-;26106:4;26144:2;26133:9;26129:18;26121:26;;26193:9;26187:4;26183:20;26179:1;26168:9;26164:17;26157:47;26221:131;26347:4;26221:131;:::i;:::-;26213:139;;25940:419;;;:::o;26365:::-;26531:4;26569:2;26558:9;26554:18;26546:26;;26618:9;26612:4;26608:20;26604:1;26593:9;26589:17;26582:47;26646:131;26772:4;26646:131;:::i;:::-;26638:139;;26365:419;;;:::o;26790:::-;26956:4;26994:2;26983:9;26979:18;26971:26;;27043:9;27037:4;27033:20;27029:1;27018:9;27014:17;27007:47;27071:131;27197:4;27071:131;:::i;:::-;27063:139;;26790:419;;;:::o;27215:::-;27381:4;27419:2;27408:9;27404:18;27396:26;;27468:9;27462:4;27458:20;27454:1;27443:9;27439:17;27432:47;27496:131;27622:4;27496:131;:::i;:::-;27488:139;;27215:419;;;:::o;27640:222::-;27733:4;27771:2;27760:9;27756:18;27748:26;;27784:71;27852:1;27841:9;27837:17;27828:6;27784:71;:::i;:::-;27640:222;;;;:::o;27868:129::-;27902:6;27929:20;;:::i;:::-;27919:30;;27958:33;27986:4;27978:6;27958:33;:::i;:::-;27868:129;;;:::o;28003:75::-;28036:6;28069:2;28063:9;28053:19;;28003:75;:::o;28084:307::-;28145:4;28235:18;28227:6;28224:30;28221:56;;;28257:18;;:::i;:::-;28221:56;28295:29;28317:6;28295:29;:::i;:::-;28287:37;;28379:4;28373;28369:15;28361:23;;28084:307;;;:::o;28397:308::-;28459:4;28549:18;28541:6;28538:30;28535:56;;;28571:18;;:::i;:::-;28535:56;28609:29;28631:6;28609:29;:::i;:::-;28601:37;;28693:4;28687;28683:15;28675:23;;28397:308;;;:::o;28711:132::-;28778:4;28801:3;28793:11;;28831:4;28826:3;28822:14;28814:22;;28711:132;;;:::o;28849:141::-;28898:4;28921:3;28913:11;;28944:3;28941:1;28934:14;28978:4;28975:1;28965:18;28957:26;;28849:141;;;:::o;28996:114::-;29063:6;29097:5;29091:12;29081:22;;28996:114;;;:::o;29116:98::-;29167:6;29201:5;29195:12;29185:22;;29116:98;;;:::o;29220:99::-;29272:6;29306:5;29300:12;29290:22;;29220:99;;;:::o;29325:113::-;29395:4;29427;29422:3;29418:14;29410:22;;29325:113;;;:::o;29444:184::-;29543:11;29577:6;29572:3;29565:19;29617:4;29612:3;29608:14;29593:29;;29444:184;;;;:::o;29634:168::-;29717:11;29751:6;29746:3;29739:19;29791:4;29786:3;29782:14;29767:29;;29634:168;;;;:::o;29808:169::-;29892:11;29926:6;29921:3;29914:19;29966:4;29961:3;29957:14;29942:29;;29808:169;;;;:::o;29983:148::-;30085:11;30122:3;30107:18;;29983:148;;;;:::o;30137:305::-;30177:3;30196:20;30214:1;30196:20;:::i;:::-;30191:25;;30230:20;30248:1;30230:20;:::i;:::-;30225:25;;30384:1;30316:66;30312:74;30309:1;30306:81;30303:107;;;30390:18;;:::i;:::-;30303:107;30434:1;30431;30427:9;30420:16;;30137:305;;;;:::o;30448:185::-;30488:1;30505:20;30523:1;30505:20;:::i;:::-;30500:25;;30539:20;30557:1;30539:20;:::i;:::-;30534:25;;30578:1;30568:35;;30583:18;;:::i;:::-;30568:35;30625:1;30622;30618:9;30613:14;;30448:185;;;;:::o;30639:348::-;30679:7;30702:20;30720:1;30702:20;:::i;:::-;30697:25;;30736:20;30754:1;30736:20;:::i;:::-;30731:25;;30924:1;30856:66;30852:74;30849:1;30846:81;30841:1;30834:9;30827:17;30823:105;30820:131;;;30931:18;;:::i;:::-;30820:131;30979:1;30976;30972:9;30961:20;;30639:348;;;;:::o;30993:191::-;31033:4;31053:20;31071:1;31053:20;:::i;:::-;31048:25;;31087:20;31105:1;31087:20;:::i;:::-;31082:25;;31126:1;31123;31120:8;31117:34;;;31131:18;;:::i;:::-;31117:34;31176:1;31173;31169:9;31161:17;;30993:191;;;;:::o;31190:96::-;31227:7;31256:24;31274:5;31256:24;:::i;:::-;31245:35;;31190:96;;;:::o;31292:90::-;31326:7;31369:5;31362:13;31355:21;31344:32;;31292:90;;;:::o;31388:149::-;31424:7;31464:66;31457:5;31453:78;31442:89;;31388:149;;;:::o;31543:126::-;31580:7;31620:42;31613:5;31609:54;31598:65;;31543:126;;;:::o;31675:77::-;31712:7;31741:5;31730:16;;31675:77;;;:::o;31758:154::-;31842:6;31837:3;31832;31819:30;31904:1;31895:6;31890:3;31886:16;31879:27;31758:154;;;:::o;31918:307::-;31986:1;31996:113;32010:6;32007:1;32004:13;31996:113;;;32095:1;32090:3;32086:11;32080:18;32076:1;32071:3;32067:11;32060:39;32032:2;32029:1;32025:10;32020:15;;31996:113;;;32127:6;32124:1;32121:13;32118:101;;;32207:1;32198:6;32193:3;32189:16;32182:27;32118:101;31967:258;31918:307;;;:::o;32231:320::-;32275:6;32312:1;32306:4;32302:12;32292:22;;32359:1;32353:4;32349:12;32380:18;32370:81;;32436:4;32428:6;32424:17;32414:27;;32370:81;32498:2;32490:6;32487:14;32467:18;32464:38;32461:84;;;32517:18;;:::i;:::-;32461:84;32282:269;32231:320;;;:::o;32557:281::-;32640:27;32662:4;32640:27;:::i;:::-;32632:6;32628:40;32770:6;32758:10;32755:22;32734:18;32722:10;32719:34;32716:62;32713:88;;;32781:18;;:::i;:::-;32713:88;32821:10;32817:2;32810:22;32600:238;32557:281;;:::o;32844:233::-;32883:3;32906:24;32924:5;32906:24;:::i;:::-;32897:33;;32952:66;32945:5;32942:77;32939:103;;;33022:18;;:::i;:::-;32939:103;33069:1;33062:5;33058:13;33051:20;;32844:233;;;:::o;33083:176::-;33115:1;33132:20;33150:1;33132:20;:::i;:::-;33127:25;;33166:20;33184:1;33166:20;:::i;:::-;33161:25;;33205:1;33195:35;;33210:18;;:::i;:::-;33195:35;33251:1;33248;33244:9;33239:14;;33083:176;;;;:::o;33265:180::-;33313:77;33310:1;33303:88;33410:4;33407:1;33400:15;33434:4;33431:1;33424:15;33451:180;33499:77;33496:1;33489:88;33596:4;33593:1;33586:15;33620:4;33617:1;33610:15;33637:180;33685:77;33682:1;33675:88;33782:4;33779:1;33772:15;33806:4;33803:1;33796:15;33823:180;33871:77;33868:1;33861:88;33968:4;33965:1;33958:15;33992:4;33989:1;33982:15;34009:180;34057:77;34054:1;34047:88;34154:4;34151:1;34144:15;34178:4;34175:1;34168:15;34195:180;34243:77;34240:1;34233:88;34340:4;34337:1;34330:15;34364:4;34361:1;34354:15;34381:117;34490:1;34487;34480:12;34504:117;34613:1;34610;34603:12;34627:117;34736:1;34733;34726:12;34750:117;34859:1;34856;34849:12;34873:102;34914:6;34965:2;34961:7;34956:2;34949:5;34945:14;34941:28;34931:38;;34873:102;;;:::o;34981:230::-;35121:34;35117:1;35109:6;35105:14;35098:58;35190:13;35185:2;35177:6;35173:15;35166:38;34981:230;:::o;35217:237::-;35357:34;35353:1;35345:6;35341:14;35334:58;35426:20;35421:2;35413:6;35409:15;35402:45;35217:237;:::o;35460:225::-;35600:34;35596:1;35588:6;35584:14;35577:58;35669:8;35664:2;35656:6;35652:15;35645:33;35460:225;:::o;35691:178::-;35831:30;35827:1;35819:6;35815:14;35808:54;35691:178;:::o;35875:223::-;36015:34;36011:1;36003:6;35999:14;35992:58;36084:6;36079:2;36071:6;36067:15;36060:31;35875:223;:::o;36104:175::-;36244:27;36240:1;36232:6;36228:14;36221:51;36104:175;:::o;36285:231::-;36425:34;36421:1;36413:6;36409:14;36402:58;36494:14;36489:2;36481:6;36477:15;36470:39;36285:231;:::o;36522:243::-;36662:34;36658:1;36650:6;36646:14;36639:58;36731:26;36726:2;36718:6;36714:15;36707:51;36522:243;:::o;36771:229::-;36911:34;36907:1;36899:6;36895:14;36888:58;36980:12;36975:2;36967:6;36963:15;36956:37;36771:229;:::o;37006:228::-;37146:34;37142:1;37134:6;37130:14;37123:58;37215:11;37210:2;37202:6;37198:15;37191:36;37006:228;:::o;37240:182::-;37380:34;37376:1;37368:6;37364:14;37357:58;37240:182;:::o;37428:231::-;37568:34;37564:1;37556:6;37552:14;37545:58;37637:14;37632:2;37624:6;37620:15;37613:39;37428:231;:::o;37665:182::-;37805:34;37801:1;37793:6;37789:14;37782:58;37665:182;:::o;37853:228::-;37993:34;37989:1;37981:6;37977:14;37970:58;38062:11;38057:2;38049:6;38045:15;38038:36;37853:228;:::o;38087:234::-;38227:34;38223:1;38215:6;38211:14;38204:58;38296:17;38291:2;38283:6;38279:15;38272:42;38087:234;:::o;38327:220::-;38467:34;38463:1;38455:6;38451:14;38444:58;38536:3;38531:2;38523:6;38519:15;38512:28;38327:220;:::o;38553:236::-;38693:34;38689:1;38681:6;38677:14;38670:58;38762:19;38757:2;38749:6;38745:15;38738:44;38553:236;:::o;38795:231::-;38935:34;38931:1;38923:6;38919:14;38912:58;39004:14;38999:2;38991:6;38987:15;38980:39;38795:231;:::o;39032:122::-;39105:24;39123:5;39105:24;:::i;:::-;39098:5;39095:35;39085:63;;39144:1;39141;39134:12;39085:63;39032:122;:::o;39160:116::-;39230:21;39245:5;39230:21;:::i;:::-;39223:5;39220:32;39210:60;;39266:1;39263;39256:12;39210:60;39160:116;:::o;39282:120::-;39354:23;39371:5;39354:23;:::i;:::-;39347:5;39344:34;39334:62;;39392:1;39389;39382:12;39334:62;39282:120;:::o;39408:122::-;39481:24;39499:5;39481:24;:::i;:::-;39474:5;39471:35;39461:63;;39520:1;39517;39510:12;39461:63;39408:122;:::o

Swarm Source

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