ETH Price: $2,486.43 (-1.70%)

Token

LOSTBOY GENESIS Music (LOSTBOYGENESISMUSIC)
 

Overview

Max Total Supply

69 LOSTBOYGENESISMUSIC

Holders

43

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
0xbuckle.eth
Balance
2 LOSTBOYGENESISMUSIC
0x03285482fa5114dde09084dbef4e5c4f8034cb8f
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:
LostboyGenesisMusic

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-21
*/

// SPDX-License-Identifier: MIT
//
//
//'||     .|''''|, .|'''|  |''||''| '||'''|,  .|''''|, '\\  //` 
// ||     ||    || ||         ||     ||   ||  ||    ||   \\//   
// ||     ||    || `|'''|,    ||     ||;;;;   ||    ||    ||    
// ||     ||    ||  .   ||    ||     ||   ||  ||    ||    ||    
//.||...| `|....|'  |...|'   .||.   .||...|'  `|....|'   .||.   


pragma solidity ^ 0.8.7;




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

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



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



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





abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns(bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}






/**
 * @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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public 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 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 { }
}

























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




















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









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




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







// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns(bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns(bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns(bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns(bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns(bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns(uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns(uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns(uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns(uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns(uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns(uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns(uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns(uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}





/**
 * @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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}









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


interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.0 (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.
 */


// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens 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 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: 22.sol



// Main Contract
contract LostboyGenesisMusic is ERC721Enumerable, Ownable {

    using SafeMath for uint256;
    using Strings for uint256;

    uint256 public constant collection_Supply = 70;

    uint256 public constant VinylPRICE_PerLOST = 30000000000000000000000 ;  //30,000 Vinyl LOST token 
    uint256 public constant CassettePRICE_PerLOST = 15000000000000000000000 ;  //15000 Vinyl LOST token 


    bool private _saleIsActive;

    address public txFeeToken;

    string private _metaBaseUri = "https://lostboy.mypinata.cloud/ipfs/QmT7mKRDWa3kzaWRiSo8GGHtL2FrbCTiMbhTn3TGwFwmLF/";

    uint [] mintednfts;
  
struct Cassette {
        uint256 tokenid; 
        address cassetteownerAddress; 
    }

struct Vinyl {
        uint256 tokenid;
        address vinylownerAddress; 
    }

Cassette[] private allCassette;

Vinyl[] private allVinyl;


    constructor(address _txFeeToken) ERC721("LOSTBOY GENESIS Music", "LOSTBOYGENESISMUSIC") {
        txFeeToken = _txFeeToken;
        _saleIsActive = true;
    }

    //Send 1 for vinyl and 2 for cassette in TokenType 
    function mint(uint TokenId,uint numberoferc20Tokens , uint TokenType) public  {
        require(!_exists(TokenId) , "Token already minted");
        require(saleIsActive(), "Sale is not active");
        if(TokenType==1){
        require(numberoferc20Tokens >= VinylPRICE_PerLOST, "Insufficient LOST tokens");
        }else if(TokenType==2){
          require(numberoferc20Tokens >= CassettePRICE_PerLOST, "Insufficient LOST tokens");
        }
        else{
        }
        require(totalSupply() < collection_Supply, "collection sold out");
        require(totalSupply().add(1) < collection_Supply, "Insufficient supply");
        //add vinyl record 
        if(TokenType == 1){
        require(allVinyl.length <=20 ,"Vinyl sold out.");
        require(_checkVinyl(msg.sender) , "Cannot mint more than 1 vinyl");
        require(TokenId>50 && TokenId<=70,"Token Id must be between 50-70");
        burnToken(numberoferc20Tokens);
        _mintTokens(TokenId,msg.sender);
        mintednfts.push(TokenId);
        Vinyl memory newVinyl = Vinyl({
            tokenid: TokenId,
            vinylownerAddress: msg.sender
        });
        allVinyl.push(newVinyl);
        }
        //add cassette record
        else if(TokenType == 2){
        require(allCassette.length <=50 ,"Casettes sold out.");
        require(_checkCassette(msg.sender) , "Cannot mint more than 1 cassette");
        require(TokenId >=1  && TokenId <=50,"Token Id must be between 1-50");
        burnToken(numberoferc20Tokens);
        _mintTokens(TokenId,msg.sender);
        mintednfts.push(TokenId);
        Cassette memory newCassette = Cassette({
            tokenid : TokenId,
            cassetteownerAddress : msg.sender
        });
        allCassette.push(newCassette);
        }
        else{

        }
       
    }

    
function _checkVinyl(address owner) internal view returns (bool){
   
   if(allVinyl.length > 0) {
    for(uint i= 0 ; i< allVinyl.length ; i++) {
        if(allVinyl[i].vinylownerAddress == owner){
            return false;
        }
     }
  }
    return true;
}

function _checkCassette(address owner) internal view returns (bool){
   if(allCassette.length > 0) {
    for(uint i= 0 ; i< allCassette.length ; i++) {
        if(allCassette[i].cassetteownerAddress == owner) {
            return false;
        }
       }
    }
    return true;
    }

    
    function setSaleIsActive(bool active) external onlyOwner {
        _saleIsActive = active;
    }

    function setMetaBaseURI(string memory baseURI) external onlyOwner {
        _metaBaseUri = baseURI;
    }

     function getMintedTokens() public view returns (uint[] memory) { 
        return mintednfts; 
    } 

     function getAllVinyl() public view returns (Vinyl[] memory) { 
        return allVinyl;
    } 

    function getAllCassets() public view returns (Cassette[] memory) { 

        return allCassette;
    } 
    
    /* View functions */
    function saleIsActive() public view returns(bool) {
        return _saleIsActive;
    }

    function tokenURI(uint256 tokenId) override public view returns(string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        return string(abi.encodePacked(_baseURI(),uint256(tokenId).toString()));
    }

    /* Internal functions */
    function _mintTokens(uint256 tokenId , address _to) internal {
            _safeMint(_to, tokenId);
    }

    function approve(uint256 _tokenId, address _from) internal virtual {
        require(ownerOf(_tokenId) == msg.sender, "NOT OWNER");
        isApprovedForAll(_from, address(this));
    }

    function burnToken(uint numoftokens) public{
        ERC20Burnable token = ERC20Burnable(txFeeToken);
        token.burnFrom(msg.sender, numoftokens);
    }
    function _baseURI() override internal view returns(string memory) {
        return _metaBaseUri;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_txFeeToken","type":"address"}],"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":[],"name":"CassettePRICE_PerLOST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VinylPRICE_PerLOST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numoftokens","type":"uint256"}],"name":"burnToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collection_Supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAllCassets","outputs":[{"components":[{"internalType":"uint256","name":"tokenid","type":"uint256"},{"internalType":"address","name":"cassetteownerAddress","type":"address"}],"internalType":"struct LostboyGenesisMusic.Cassette[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAllVinyl","outputs":[{"components":[{"internalType":"uint256","name":"tokenid","type":"uint256"},{"internalType":"address","name":"vinylownerAddress","type":"address"}],"internalType":"struct LostboyGenesisMusic.Vinyl[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintedTokens","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":[{"internalType":"uint256","name":"TokenId","type":"uint256"},{"internalType":"uint256","name":"numberoferc20Tokens","type":"uint256"},{"internalType":"uint256","name":"TokenType","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":[],"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setMetaBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"active","type":"bool"}],"name":"setSaleIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"txFeeToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

608060405260405180608001604052806053815260200162004e2160539139600c9080519060200190620000359291906200025a565b503480156200004357600080fd5b5060405162004e7438038062004e74833981810160405281019062000069919062000321565b6040518060400160405280601581526020017f4c4f5354424f592047454e45534953204d7573696300000000000000000000008152506040518060400160405280601381526020017f4c4f5354424f5947454e455349534d55534943000000000000000000000000008152508160009080519060200190620000ed9291906200025a565b508060019080519060200190620001069291906200025a565b505050620001296200011d6200018c60201b60201c565b6200019460201b60201c565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600a60146101000a81548160ff021916908315150217905550506200040b565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002689062000387565b90600052602060002090601f0160209004810192826200028c5760008555620002d8565b82601f10620002a757805160ff1916838001178555620002d8565b82800160010185558215620002d8579182015b82811115620002d7578251825591602001919060010190620002ba565b5b509050620002e79190620002eb565b5090565b5b8082111562000306576000816000905550600101620002ec565b5090565b6000815190506200031b81620003f1565b92915050565b6000602082840312156200033a5762000339620003ec565b5b60006200034a848285016200030a565b91505092915050565b6000620003608262000367565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620003a057607f821691505b60208210811415620003b757620003b6620003bd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b620003fc8162000353565b81146200040857600080fd5b50565b614a06806200041b6000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c806370a082311161010f578063ae395d7b116100a2578063e985e9c511610071578063e985e9c51461056c578063eb8d24441461059c578063ed0268d9146105ba578063f2fde38b146105d8576101e5565b8063ae395d7b146104e4578063b88d4fde14610502578063c87b56dd1461051e578063dc9652901461054e576101e5565b80638da5cb5b116100de5780638da5cb5b1461046e57806395d89b411461048c578063a22cb465146104aa578063aca057de146104c6576101e5565b806370a08231146103fa578063715018a61461042a57806377c567a7146104345780637b47ec1a14610452576101e5565b806318160ddd116101875780633be2b4e4116101565780633be2b4e41461036057806342842e0e1461037e5780634f6ccce71461039a5780636352211e146103ca576101e5565b806318160ddd146102da57806318d272eb146102f857806323b872dd146103145780632f745c5914610330576101e5565b806302c88989116101c357806302c889891461025457806306fdde0314610270578063081812fc1461028e578063095ea7b3146102be576101e5565b80630106e0ee146101ea57806301ffc9a71461020857806302acc94b14610238575b600080fd5b6101f26105f4565b6040516101ff9190613d9e565b60405180910390f35b610222600480360381019061021d91906130df565b6105f9565b60405161022f91906139c1565b60405180910390f35b610252600480360381019061024d91906131af565b610673565b005b61026e600480360381019061026991906130b2565b610c1e565b005b610278610cb7565b60405161028591906139dc565b60405180910390f35b6102a860048036038101906102a39190613182565b610d49565b6040516102b591906138cb565b60405180910390f35b6102d860048036038101906102d39190613072565b610dce565b005b6102e2610ee6565b6040516102ef9190613d9e565b60405180910390f35b610312600480360381019061030d9190613139565b610ef3565b005b61032e60048036038101906103299190612f5c565b610f89565b005b61034a60048036038101906103459190613072565b610fe9565b6040516103579190613d9e565b60405180910390f35b61036861108e565b6040516103759190613d9e565b60405180910390f35b61039860048036038101906103939190612f5c565b61109c565b005b6103b460048036038101906103af9190613182565b6110bc565b6040516103c19190613d9e565b60405180910390f35b6103e460048036038101906103df9190613182565b61112d565b6040516103f191906138cb565b60405180910390f35b610414600480360381019061040f9190612eef565b6111df565b6040516104219190613d9e565b60405180910390f35b610432611297565b005b61043c61131f565b60405161044991906138cb565b60405180910390f35b61046c60048036038101906104679190613182565b611345565b005b6104766113dd565b60405161048391906138cb565b60405180910390f35b610494611407565b6040516104a191906139dc565b60405180910390f35b6104c460048036038101906104bf9190613032565b611499565b005b6104ce61161a565b6040516104db919061397d565b60405180910390f35b6104ec6116d9565b6040516104f99190613d9e565b60405180910390f35b61051c60048036038101906105179190612faf565b6116e7565b005b61053860048036038101906105339190613182565b611749565b60405161054591906139dc565b60405180910390f35b6105566117cb565b604051610563919061399f565b60405180910390f35b61058660048036038101906105819190612f1c565b611823565b60405161059391906139c1565b60405180910390f35b6105a46118b7565b6040516105b191906139c1565b60405180910390f35b6105c26118ce565b6040516105cf919061395b565b60405180910390f35b6105f260048036038101906105ed9190612eef565b61198d565b005b604681565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061066c575061066b82611a85565b5b9050919050565b61067c83611b67565b156106bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b3906139fe565b60405180910390fd5b6106c46118b7565b610703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fa90613afe565b60405180910390fd5b600181141561075e5769065a4da25d3016c00000821015610759576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075090613a9e565b60405180910390fd5b6107bb565b60028114156107b95769032d26d12e980b6000008210156107b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ab90613a9e565b60405180910390fd5b6107ba565b5b5b60466107c5610ee6565b10610805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fc90613b1e565b60405180910390fd5b60466108226001610814610ee6565b611bd390919063ffffffff16565b10610862576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085990613c7e565b60405180910390fd5b6001811415610a3c576014600f8054905011156108b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ab90613d5e565b60405180910390fd5b6108bd33611be9565b6108fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f390613bde565b60405180910390fd5b60328311801561090d575060468311155b61094c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094390613bfe565b60405180910390fd5b61095582611345565b61095f8333611caa565b600d839080600181540180825580915050600190039060005260206000200160009091909190915055600060405180604001604052808581526020013373ffffffffffffffffffffffffffffffffffffffff168152509050600f8190806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050610c19565b6002811415610c17576032600e805490501115610a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8590613b5e565b60405180910390fd5b610a9733611cb8565b610ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acd90613cde565b60405180910390fd5b60018310158015610ae8575060328311155b610b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1e90613d7e565b60405180910390fd5b610b3082611345565b610b3a8333611caa565b600d839080600181540180825580915050600190039060005260206000200160009091909190915055600060405180604001604052808581526020013373ffffffffffffffffffffffffffffffffffffffff168152509050600e8190806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050610c18565b5b5b505050565b610c26611d79565b73ffffffffffffffffffffffffffffffffffffffff16610c446113dd565b73ffffffffffffffffffffffffffffffffffffffff1614610c9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9190613c9e565b60405180910390fd5b80600a60146101000a81548160ff02191690831515021790555050565b606060008054610cc69061409f565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf29061409f565b8015610d3f5780601f10610d1457610100808354040283529160200191610d3f565b820191906000526020600020905b815481529060010190602001808311610d2257829003601f168201915b5050505050905090565b6000610d5482611b67565b610d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8a90613c3e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610dd98261112d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4190613cfe565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e69611d79565b73ffffffffffffffffffffffffffffffffffffffff161480610e985750610e9781610e92611d79565b611823565b5b610ed7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ece90613b7e565b60405180910390fd5b610ee18383611d81565b505050565b6000600880549050905090565b610efb611d79565b73ffffffffffffffffffffffffffffffffffffffff16610f196113dd565b73ffffffffffffffffffffffffffffffffffffffff1614610f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6690613c9e565b60405180910390fd5b80600c9080519060200190610f85929190612d03565b5050565b610f9a610f94611d79565b82611e3a565b610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd090613d1e565b60405180910390fd5b610fe4838383611f18565b505050565b6000610ff4836111df565b8210611035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102c90613a1e565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b69065a4da25d3016c0000081565b6110b7838383604051806020016040528060008152506116e7565b505050565b60006110c6610ee6565b8210611107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fe90613d3e565b60405180910390fd5b6008828154811061111b5761111a614238565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd90613bbe565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611250576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124790613b9e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61129f611d79565b73ffffffffffffffffffffffffffffffffffffffff166112bd6113dd565b73ffffffffffffffffffffffffffffffffffffffff1614611313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130a90613c9e565b60405180910390fd5b61131d6000612174565b565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166379cc679033846040518363ffffffff1660e01b81526004016113a7929190613932565b600060405180830381600087803b1580156113c157600080fd5b505af11580156113d5573d6000803e3d6000fd5b505050505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546114169061409f565b80601f01602080910402602001604051908101604052809291908181526020018280546114429061409f565b801561148f5780601f106114645761010080835404028352916020019161148f565b820191906000526020600020905b81548152906001019060200180831161147257829003601f168201915b5050505050905090565b6114a1611d79565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561150f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150690613ade565b60405180910390fd5b806005600061151c611d79565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115c9611d79565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161160e91906139c1565b60405180910390a35050565b6060600f805480602002602001604051908101604052809291908181526020016000905b828210156116d05783829060005260206000209060020201604051806040016040529081600082015481526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250508152602001906001019061163e565b50505050905090565b69032d26d12e980b60000081565b6116f86116f2611d79565b83611e3a565b611737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172e90613d1e565b60405180910390fd5b6117438484848461223a565b50505050565b606061175482611b67565b611793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178a90613c5e565b60405180910390fd5b61179b612296565b6117a483612328565b6040516020016117b59291906138a7565b6040516020818303038152906040529050919050565b6060600d80548060200260200160405190810160405280929190818152602001828054801561181957602002820191906000526020600020905b815481526020019060010190808311611805575b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600a60149054906101000a900460ff16905090565b6060600e805480602002602001604051908101604052809291908181526020016000905b828210156119845783829060005260206000209060020201604051806040016040529081600082015481526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681525050815260200190600101906118f2565b50505050905090565b611995611d79565b73ffffffffffffffffffffffffffffffffffffffff166119b36113dd565b73ffffffffffffffffffffffffffffffffffffffff1614611a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0090613c9e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7090613a5e565b60405180910390fd5b611a8281612174565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b5057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b605750611b5f82612489565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60008183611be19190613f2e565b905092915050565b600080600f805490501115611ca05760005b600f80549050811015611c9e578273ffffffffffffffffffffffffffffffffffffffff16600f8281548110611c3357611c32614238565b5b906000526020600020906002020160010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611c8b576000915050611ca5565b8080611c9690614102565b915050611bfb565b505b600190505b919050565b611cb481836124f3565b5050565b600080600e805490501115611d6f5760005b600e80549050811015611d6d578273ffffffffffffffffffffffffffffffffffffffff16600e8281548110611d0257611d01614238565b5b906000526020600020906002020160010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611d5a576000915050611d74565b8080611d6590614102565b915050611cca565b505b600190505b919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611df48361112d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611e4582611b67565b611e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7b90613b3e565b60405180910390fd5b6000611e8f8361112d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611efe57508373ffffffffffffffffffffffffffffffffffffffff16611ee684610d49565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f0f5750611f0e8185611823565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f388261112d565b73ffffffffffffffffffffffffffffffffffffffff1614611f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8590613cbe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff590613abe565b60405180910390fd5b612009838383612511565b612014600082611d81565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120649190613fb5565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120bb9190613f2e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612245848484611f18565b61225184848484612625565b612290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228790613a3e565b60405180910390fd5b50505050565b6060600c80546122a59061409f565b80601f01602080910402602001604051908101604052809291908181526020018280546122d19061409f565b801561231e5780601f106122f35761010080835404028352916020019161231e565b820191906000526020600020905b81548152906001019060200180831161230157829003601f168201915b5050505050905090565b60606000821415612370576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612484565b600082905060005b600082146123a257808061238b90614102565b915050600a8261239b9190613f84565b9150612378565b60008167ffffffffffffffff8111156123be576123bd614267565b5b6040519080825280601f01601f1916602001820160405280156123f05781602001600182028036833780820191505090505b5090505b6000851461247d576001826124099190613fb5565b9150600a85612418919061414b565b60306124249190613f2e565b60f81b81838151811061243a57612439614238565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124769190613f84565b94506123f4565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61250d8282604051806020016040528060008152506127bc565b5050565b61251c838383612817565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561255f5761255a8161281c565b61259e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461259d5761259c8382612865565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125e1576125dc816129d2565b612620565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461261f5761261e8282612aa3565b5b5b505050565b60006126468473ffffffffffffffffffffffffffffffffffffffff16612b22565b156127af578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261266f611d79565b8786866040518563ffffffff1660e01b815260040161269194939291906138e6565b602060405180830381600087803b1580156126ab57600080fd5b505af19250505080156126dc57506040513d601f19601f820116820180604052508101906126d9919061310c565b60015b61275f573d806000811461270c576040519150601f19603f3d011682016040523d82523d6000602084013e612711565b606091505b50600081511415612757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274e90613a3e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127b4565b600190505b949350505050565b6127c68383612b35565b6127d36000848484612625565b612812576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280990613a3e565b60405180910390fd5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612872846111df565b61287c9190613fb5565b9050600060076000848152602001908152602001600020549050818114612961576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506129e69190613fb5565b9050600060096000848152602001908152602001600020549050600060088381548110612a1657612a15614238565b5b906000526020600020015490508060088381548110612a3857612a37614238565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612a8757612a86614209565b5b6001900381819060005260206000200160009055905550505050565b6000612aae836111df565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9c90613c1e565b60405180910390fd5b612bae81611b67565b15612bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be590613a7e565b60405180910390fd5b612bfa60008383612511565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c4a9190613f2e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612d0f9061409f565b90600052602060002090601f016020900481019282612d315760008555612d78565b82601f10612d4a57805160ff1916838001178555612d78565b82800160010185558215612d78579182015b82811115612d77578251825591602001919060010190612d5c565b5b509050612d859190612d89565b5090565b5b80821115612da2576000816000905550600101612d8a565b5090565b6000612db9612db484613dde565b613db9565b905082815260208101848484011115612dd557612dd461429b565b5b612de084828561405d565b509392505050565b6000612dfb612df684613e0f565b613db9565b905082815260208101848484011115612e1757612e1661429b565b5b612e2284828561405d565b509392505050565b600081359050612e3981614974565b92915050565b600081359050612e4e8161498b565b92915050565b600081359050612e63816149a2565b92915050565b600081519050612e78816149a2565b92915050565b600082601f830112612e9357612e92614296565b5b8135612ea3848260208601612da6565b91505092915050565b600082601f830112612ec157612ec0614296565b5b8135612ed1848260208601612de8565b91505092915050565b600081359050612ee9816149b9565b92915050565b600060208284031215612f0557612f046142a5565b5b6000612f1384828501612e2a565b91505092915050565b60008060408385031215612f3357612f326142a5565b5b6000612f4185828601612e2a565b9250506020612f5285828601612e2a565b9150509250929050565b600080600060608486031215612f7557612f746142a5565b5b6000612f8386828701612e2a565b9350506020612f9486828701612e2a565b9250506040612fa586828701612eda565b9150509250925092565b60008060008060808587031215612fc957612fc86142a5565b5b6000612fd787828801612e2a565b9450506020612fe887828801612e2a565b9350506040612ff987828801612eda565b925050606085013567ffffffffffffffff81111561301a576130196142a0565b5b61302687828801612e7e565b91505092959194509250565b60008060408385031215613049576130486142a5565b5b600061305785828601612e2a565b925050602061306885828601612e3f565b9150509250929050565b60008060408385031215613089576130886142a5565b5b600061309785828601612e2a565b92505060206130a885828601612eda565b9150509250929050565b6000602082840312156130c8576130c76142a5565b5b60006130d684828501612e3f565b91505092915050565b6000602082840312156130f5576130f46142a5565b5b600061310384828501612e54565b91505092915050565b600060208284031215613122576131216142a5565b5b600061313084828501612e69565b91505092915050565b60006020828403121561314f5761314e6142a5565b5b600082013567ffffffffffffffff81111561316d5761316c6142a0565b5b61317984828501612eac565b91505092915050565b600060208284031215613198576131976142a5565b5b60006131a684828501612eda565b91505092915050565b6000806000606084860312156131c8576131c76142a5565b5b60006131d686828701612eda565b93505060206131e786828701612eda565b92505060406131f886828701612eda565b9150509250925092565b600061320e838361382b565b60408301905092915050565b6000613226838361385a565b60408301905092915050565b600061323e8383613889565b60208301905092915050565b61325381613fe9565b82525050565b61326281613fe9565b82525050565b600061327382613e70565b61327d8185613ece565b935061328883613e40565b8060005b838110156132b95781516132a08882613202565b97506132ab83613ea7565b92505060018101905061328c565b5085935050505092915050565b60006132d182613e7b565b6132db8185613edf565b93506132e683613e50565b8060005b838110156133175781516132fe888261321a565b975061330983613eb4565b9250506001810190506132ea565b5085935050505092915050565b600061332f82613e86565b6133398185613ef0565b935061334483613e60565b8060005b8381101561337557815161335c8882613232565b975061336783613ec1565b925050600181019050613348565b5085935050505092915050565b61338b81613ffb565b82525050565b600061339c82613e91565b6133a68185613f01565b93506133b681856020860161406c565b6133bf816142aa565b840191505092915050565b60006133d582613e9c565b6133df8185613f12565b93506133ef81856020860161406c565b6133f8816142aa565b840191505092915050565b600061340e82613e9c565b6134188185613f23565b935061342881856020860161406c565b80840191505092915050565b6000613441601483613f12565b915061344c826142bb565b602082019050919050565b6000613464602b83613f12565b915061346f826142e4565b604082019050919050565b6000613487603283613f12565b915061349282614333565b604082019050919050565b60006134aa602683613f12565b91506134b582614382565b604082019050919050565b60006134cd601c83613f12565b91506134d8826143d1565b602082019050919050565b60006134f0601883613f12565b91506134fb826143fa565b602082019050919050565b6000613513602483613f12565b915061351e82614423565b604082019050919050565b6000613536601983613f12565b915061354182614472565b602082019050919050565b6000613559601283613f12565b91506135648261449b565b602082019050919050565b600061357c601383613f12565b9150613587826144c4565b602082019050919050565b600061359f602c83613f12565b91506135aa826144ed565b604082019050919050565b60006135c2601283613f12565b91506135cd8261453c565b602082019050919050565b60006135e5603883613f12565b91506135f082614565565b604082019050919050565b6000613608602a83613f12565b9150613613826145b4565b604082019050919050565b600061362b602983613f12565b915061363682614603565b604082019050919050565b600061364e601d83613f12565b915061365982614652565b602082019050919050565b6000613671601e83613f12565b915061367c8261467b565b602082019050919050565b6000613694602083613f12565b915061369f826146a4565b602082019050919050565b60006136b7602c83613f12565b91506136c2826146cd565b604082019050919050565b60006136da602c83613f12565b91506136e58261471c565b604082019050919050565b60006136fd601383613f12565b91506137088261476b565b602082019050919050565b6000613720602083613f12565b915061372b82614794565b602082019050919050565b6000613743602983613f12565b915061374e826147bd565b604082019050919050565b6000613766602083613f12565b91506137718261480c565b602082019050919050565b6000613789602183613f12565b915061379482614835565b604082019050919050565b60006137ac603183613f12565b91506137b782614884565b604082019050919050565b60006137cf602c83613f12565b91506137da826148d3565b604082019050919050565b60006137f2600f83613f12565b91506137fd82614922565b602082019050919050565b6000613815601d83613f12565b91506138208261494b565b602082019050919050565b6040820160008201516138416000850182613889565b506020820151613854602085018261324a565b50505050565b6040820160008201516138706000850182613889565b506020820151613883602085018261324a565b50505050565b61389281614053565b82525050565b6138a181614053565b82525050565b60006138b38285613403565b91506138bf8284613403565b91508190509392505050565b60006020820190506138e06000830184613259565b92915050565b60006080820190506138fb6000830187613259565b6139086020830186613259565b6139156040830185613898565b81810360608301526139278184613391565b905095945050505050565b60006040820190506139476000830185613259565b6139546020830184613898565b9392505050565b600060208201905081810360008301526139758184613268565b905092915050565b6000602082019050818103600083015261399781846132c6565b905092915050565b600060208201905081810360008301526139b98184613324565b905092915050565b60006020820190506139d66000830184613382565b92915050565b600060208201905081810360008301526139f681846133ca565b905092915050565b60006020820190508181036000830152613a1781613434565b9050919050565b60006020820190508181036000830152613a3781613457565b9050919050565b60006020820190508181036000830152613a578161347a565b9050919050565b60006020820190508181036000830152613a778161349d565b9050919050565b60006020820190508181036000830152613a97816134c0565b9050919050565b60006020820190508181036000830152613ab7816134e3565b9050919050565b60006020820190508181036000830152613ad781613506565b9050919050565b60006020820190508181036000830152613af781613529565b9050919050565b60006020820190508181036000830152613b178161354c565b9050919050565b60006020820190508181036000830152613b378161356f565b9050919050565b60006020820190508181036000830152613b5781613592565b9050919050565b60006020820190508181036000830152613b77816135b5565b9050919050565b60006020820190508181036000830152613b97816135d8565b9050919050565b60006020820190508181036000830152613bb7816135fb565b9050919050565b60006020820190508181036000830152613bd78161361e565b9050919050565b60006020820190508181036000830152613bf781613641565b9050919050565b60006020820190508181036000830152613c1781613664565b9050919050565b60006020820190508181036000830152613c3781613687565b9050919050565b60006020820190508181036000830152613c57816136aa565b9050919050565b60006020820190508181036000830152613c77816136cd565b9050919050565b60006020820190508181036000830152613c97816136f0565b9050919050565b60006020820190508181036000830152613cb781613713565b9050919050565b60006020820190508181036000830152613cd781613736565b9050919050565b60006020820190508181036000830152613cf781613759565b9050919050565b60006020820190508181036000830152613d178161377c565b9050919050565b60006020820190508181036000830152613d378161379f565b9050919050565b60006020820190508181036000830152613d57816137c2565b9050919050565b60006020820190508181036000830152613d77816137e5565b9050919050565b60006020820190508181036000830152613d9781613808565b9050919050565b6000602082019050613db36000830184613898565b92915050565b6000613dc3613dd4565b9050613dcf82826140d1565b919050565b6000604051905090565b600067ffffffffffffffff821115613df957613df8614267565b5b613e02826142aa565b9050602081019050919050565b600067ffffffffffffffff821115613e2a57613e29614267565b5b613e33826142aa565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f3982614053565b9150613f4483614053565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f7957613f7861417c565b5b828201905092915050565b6000613f8f82614053565b9150613f9a83614053565b925082613faa57613fa96141ab565b5b828204905092915050565b6000613fc082614053565b9150613fcb83614053565b925082821015613fde57613fdd61417c565b5b828203905092915050565b6000613ff482614033565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561408a57808201518184015260208101905061406f565b83811115614099576000848401525b50505050565b600060028204905060018216806140b757607f821691505b602082108114156140cb576140ca6141da565b5b50919050565b6140da826142aa565b810181811067ffffffffffffffff821117156140f9576140f8614267565b5b80604052505050565b600061410d82614053565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141405761413f61417c565b5b600182019050919050565b600061415682614053565b915061416183614053565b925082614171576141706141ab565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f546f6b656e20616c7265616479206d696e746564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e73756666696369656e74204c4f535420746f6b656e730000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f636f6c6c656374696f6e20736f6c64206f757400000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f436173657474657320736f6c64206f75742e0000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e20312076696e796c000000600082015250565b7f546f6b656e204964206d757374206265206265747765656e2035302d37300000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e7420737570706c7900000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e2031206361737365747465600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f56696e796c20736f6c64206f75742e0000000000000000000000000000000000600082015250565b7f546f6b656e204964206d757374206265206265747765656e20312d3530000000600082015250565b61497d81613fe9565b811461498857600080fd5b50565b61499481613ffb565b811461499f57600080fd5b50565b6149ab81614007565b81146149b657600080fd5b50565b6149c281614053565b81146149cd57600080fd5b5056fea2646970667358221220a6629904247805f72e0ec8cc796ee520bdd7d86df185bbc8f45e57ee27710c6764736f6c6343000807003368747470733a2f2f6c6f7374626f792e6d7970696e6174612e636c6f75642f697066732f516d54376d4b52445761336b7a61575269536f38474748744c324672624354694d6268546e3354477746776d4c462f000000000000000000000000d95897e53ba7fa442aac0d94414adeacddd5bd98

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c806370a082311161010f578063ae395d7b116100a2578063e985e9c511610071578063e985e9c51461056c578063eb8d24441461059c578063ed0268d9146105ba578063f2fde38b146105d8576101e5565b8063ae395d7b146104e4578063b88d4fde14610502578063c87b56dd1461051e578063dc9652901461054e576101e5565b80638da5cb5b116100de5780638da5cb5b1461046e57806395d89b411461048c578063a22cb465146104aa578063aca057de146104c6576101e5565b806370a08231146103fa578063715018a61461042a57806377c567a7146104345780637b47ec1a14610452576101e5565b806318160ddd116101875780633be2b4e4116101565780633be2b4e41461036057806342842e0e1461037e5780634f6ccce71461039a5780636352211e146103ca576101e5565b806318160ddd146102da57806318d272eb146102f857806323b872dd146103145780632f745c5914610330576101e5565b806302c88989116101c357806302c889891461025457806306fdde0314610270578063081812fc1461028e578063095ea7b3146102be576101e5565b80630106e0ee146101ea57806301ffc9a71461020857806302acc94b14610238575b600080fd5b6101f26105f4565b6040516101ff9190613d9e565b60405180910390f35b610222600480360381019061021d91906130df565b6105f9565b60405161022f91906139c1565b60405180910390f35b610252600480360381019061024d91906131af565b610673565b005b61026e600480360381019061026991906130b2565b610c1e565b005b610278610cb7565b60405161028591906139dc565b60405180910390f35b6102a860048036038101906102a39190613182565b610d49565b6040516102b591906138cb565b60405180910390f35b6102d860048036038101906102d39190613072565b610dce565b005b6102e2610ee6565b6040516102ef9190613d9e565b60405180910390f35b610312600480360381019061030d9190613139565b610ef3565b005b61032e60048036038101906103299190612f5c565b610f89565b005b61034a60048036038101906103459190613072565b610fe9565b6040516103579190613d9e565b60405180910390f35b61036861108e565b6040516103759190613d9e565b60405180910390f35b61039860048036038101906103939190612f5c565b61109c565b005b6103b460048036038101906103af9190613182565b6110bc565b6040516103c19190613d9e565b60405180910390f35b6103e460048036038101906103df9190613182565b61112d565b6040516103f191906138cb565b60405180910390f35b610414600480360381019061040f9190612eef565b6111df565b6040516104219190613d9e565b60405180910390f35b610432611297565b005b61043c61131f565b60405161044991906138cb565b60405180910390f35b61046c60048036038101906104679190613182565b611345565b005b6104766113dd565b60405161048391906138cb565b60405180910390f35b610494611407565b6040516104a191906139dc565b60405180910390f35b6104c460048036038101906104bf9190613032565b611499565b005b6104ce61161a565b6040516104db919061397d565b60405180910390f35b6104ec6116d9565b6040516104f99190613d9e565b60405180910390f35b61051c60048036038101906105179190612faf565b6116e7565b005b61053860048036038101906105339190613182565b611749565b60405161054591906139dc565b60405180910390f35b6105566117cb565b604051610563919061399f565b60405180910390f35b61058660048036038101906105819190612f1c565b611823565b60405161059391906139c1565b60405180910390f35b6105a46118b7565b6040516105b191906139c1565b60405180910390f35b6105c26118ce565b6040516105cf919061395b565b60405180910390f35b6105f260048036038101906105ed9190612eef565b61198d565b005b604681565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061066c575061066b82611a85565b5b9050919050565b61067c83611b67565b156106bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b3906139fe565b60405180910390fd5b6106c46118b7565b610703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fa90613afe565b60405180910390fd5b600181141561075e5769065a4da25d3016c00000821015610759576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075090613a9e565b60405180910390fd5b6107bb565b60028114156107b95769032d26d12e980b6000008210156107b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ab90613a9e565b60405180910390fd5b6107ba565b5b5b60466107c5610ee6565b10610805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fc90613b1e565b60405180910390fd5b60466108226001610814610ee6565b611bd390919063ffffffff16565b10610862576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085990613c7e565b60405180910390fd5b6001811415610a3c576014600f8054905011156108b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ab90613d5e565b60405180910390fd5b6108bd33611be9565b6108fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f390613bde565b60405180910390fd5b60328311801561090d575060468311155b61094c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094390613bfe565b60405180910390fd5b61095582611345565b61095f8333611caa565b600d839080600181540180825580915050600190039060005260206000200160009091909190915055600060405180604001604052808581526020013373ffffffffffffffffffffffffffffffffffffffff168152509050600f8190806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050610c19565b6002811415610c17576032600e805490501115610a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8590613b5e565b60405180910390fd5b610a9733611cb8565b610ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acd90613cde565b60405180910390fd5b60018310158015610ae8575060328311155b610b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1e90613d7e565b60405180910390fd5b610b3082611345565b610b3a8333611caa565b600d839080600181540180825580915050600190039060005260206000200160009091909190915055600060405180604001604052808581526020013373ffffffffffffffffffffffffffffffffffffffff168152509050600e8190806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050610c18565b5b5b505050565b610c26611d79565b73ffffffffffffffffffffffffffffffffffffffff16610c446113dd565b73ffffffffffffffffffffffffffffffffffffffff1614610c9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9190613c9e565b60405180910390fd5b80600a60146101000a81548160ff02191690831515021790555050565b606060008054610cc69061409f565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf29061409f565b8015610d3f5780601f10610d1457610100808354040283529160200191610d3f565b820191906000526020600020905b815481529060010190602001808311610d2257829003601f168201915b5050505050905090565b6000610d5482611b67565b610d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8a90613c3e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610dd98261112d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4190613cfe565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e69611d79565b73ffffffffffffffffffffffffffffffffffffffff161480610e985750610e9781610e92611d79565b611823565b5b610ed7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ece90613b7e565b60405180910390fd5b610ee18383611d81565b505050565b6000600880549050905090565b610efb611d79565b73ffffffffffffffffffffffffffffffffffffffff16610f196113dd565b73ffffffffffffffffffffffffffffffffffffffff1614610f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6690613c9e565b60405180910390fd5b80600c9080519060200190610f85929190612d03565b5050565b610f9a610f94611d79565b82611e3a565b610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd090613d1e565b60405180910390fd5b610fe4838383611f18565b505050565b6000610ff4836111df565b8210611035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102c90613a1e565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b69065a4da25d3016c0000081565b6110b7838383604051806020016040528060008152506116e7565b505050565b60006110c6610ee6565b8210611107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fe90613d3e565b60405180910390fd5b6008828154811061111b5761111a614238565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd90613bbe565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611250576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124790613b9e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61129f611d79565b73ffffffffffffffffffffffffffffffffffffffff166112bd6113dd565b73ffffffffffffffffffffffffffffffffffffffff1614611313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130a90613c9e565b60405180910390fd5b61131d6000612174565b565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166379cc679033846040518363ffffffff1660e01b81526004016113a7929190613932565b600060405180830381600087803b1580156113c157600080fd5b505af11580156113d5573d6000803e3d6000fd5b505050505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546114169061409f565b80601f01602080910402602001604051908101604052809291908181526020018280546114429061409f565b801561148f5780601f106114645761010080835404028352916020019161148f565b820191906000526020600020905b81548152906001019060200180831161147257829003601f168201915b5050505050905090565b6114a1611d79565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561150f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150690613ade565b60405180910390fd5b806005600061151c611d79565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115c9611d79565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161160e91906139c1565b60405180910390a35050565b6060600f805480602002602001604051908101604052809291908181526020016000905b828210156116d05783829060005260206000209060020201604051806040016040529081600082015481526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250508152602001906001019061163e565b50505050905090565b69032d26d12e980b60000081565b6116f86116f2611d79565b83611e3a565b611737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172e90613d1e565b60405180910390fd5b6117438484848461223a565b50505050565b606061175482611b67565b611793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178a90613c5e565b60405180910390fd5b61179b612296565b6117a483612328565b6040516020016117b59291906138a7565b6040516020818303038152906040529050919050565b6060600d80548060200260200160405190810160405280929190818152602001828054801561181957602002820191906000526020600020905b815481526020019060010190808311611805575b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600a60149054906101000a900460ff16905090565b6060600e805480602002602001604051908101604052809291908181526020016000905b828210156119845783829060005260206000209060020201604051806040016040529081600082015481526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681525050815260200190600101906118f2565b50505050905090565b611995611d79565b73ffffffffffffffffffffffffffffffffffffffff166119b36113dd565b73ffffffffffffffffffffffffffffffffffffffff1614611a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0090613c9e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7090613a5e565b60405180910390fd5b611a8281612174565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b5057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b605750611b5f82612489565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60008183611be19190613f2e565b905092915050565b600080600f805490501115611ca05760005b600f80549050811015611c9e578273ffffffffffffffffffffffffffffffffffffffff16600f8281548110611c3357611c32614238565b5b906000526020600020906002020160010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611c8b576000915050611ca5565b8080611c9690614102565b915050611bfb565b505b600190505b919050565b611cb481836124f3565b5050565b600080600e805490501115611d6f5760005b600e80549050811015611d6d578273ffffffffffffffffffffffffffffffffffffffff16600e8281548110611d0257611d01614238565b5b906000526020600020906002020160010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611d5a576000915050611d74565b8080611d6590614102565b915050611cca565b505b600190505b919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611df48361112d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611e4582611b67565b611e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7b90613b3e565b60405180910390fd5b6000611e8f8361112d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611efe57508373ffffffffffffffffffffffffffffffffffffffff16611ee684610d49565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f0f5750611f0e8185611823565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f388261112d565b73ffffffffffffffffffffffffffffffffffffffff1614611f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8590613cbe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff590613abe565b60405180910390fd5b612009838383612511565b612014600082611d81565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120649190613fb5565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120bb9190613f2e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612245848484611f18565b61225184848484612625565b612290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228790613a3e565b60405180910390fd5b50505050565b6060600c80546122a59061409f565b80601f01602080910402602001604051908101604052809291908181526020018280546122d19061409f565b801561231e5780601f106122f35761010080835404028352916020019161231e565b820191906000526020600020905b81548152906001019060200180831161230157829003601f168201915b5050505050905090565b60606000821415612370576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612484565b600082905060005b600082146123a257808061238b90614102565b915050600a8261239b9190613f84565b9150612378565b60008167ffffffffffffffff8111156123be576123bd614267565b5b6040519080825280601f01601f1916602001820160405280156123f05781602001600182028036833780820191505090505b5090505b6000851461247d576001826124099190613fb5565b9150600a85612418919061414b565b60306124249190613f2e565b60f81b81838151811061243a57612439614238565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124769190613f84565b94506123f4565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61250d8282604051806020016040528060008152506127bc565b5050565b61251c838383612817565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561255f5761255a8161281c565b61259e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461259d5761259c8382612865565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125e1576125dc816129d2565b612620565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461261f5761261e8282612aa3565b5b5b505050565b60006126468473ffffffffffffffffffffffffffffffffffffffff16612b22565b156127af578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261266f611d79565b8786866040518563ffffffff1660e01b815260040161269194939291906138e6565b602060405180830381600087803b1580156126ab57600080fd5b505af19250505080156126dc57506040513d601f19601f820116820180604052508101906126d9919061310c565b60015b61275f573d806000811461270c576040519150601f19603f3d011682016040523d82523d6000602084013e612711565b606091505b50600081511415612757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274e90613a3e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127b4565b600190505b949350505050565b6127c68383612b35565b6127d36000848484612625565b612812576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280990613a3e565b60405180910390fd5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612872846111df565b61287c9190613fb5565b9050600060076000848152602001908152602001600020549050818114612961576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506129e69190613fb5565b9050600060096000848152602001908152602001600020549050600060088381548110612a1657612a15614238565b5b906000526020600020015490508060088381548110612a3857612a37614238565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612a8757612a86614209565b5b6001900381819060005260206000200160009055905550505050565b6000612aae836111df565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9c90613c1e565b60405180910390fd5b612bae81611b67565b15612bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be590613a7e565b60405180910390fd5b612bfa60008383612511565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c4a9190613f2e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612d0f9061409f565b90600052602060002090601f016020900481019282612d315760008555612d78565b82601f10612d4a57805160ff1916838001178555612d78565b82800160010185558215612d78579182015b82811115612d77578251825591602001919060010190612d5c565b5b509050612d859190612d89565b5090565b5b80821115612da2576000816000905550600101612d8a565b5090565b6000612db9612db484613dde565b613db9565b905082815260208101848484011115612dd557612dd461429b565b5b612de084828561405d565b509392505050565b6000612dfb612df684613e0f565b613db9565b905082815260208101848484011115612e1757612e1661429b565b5b612e2284828561405d565b509392505050565b600081359050612e3981614974565b92915050565b600081359050612e4e8161498b565b92915050565b600081359050612e63816149a2565b92915050565b600081519050612e78816149a2565b92915050565b600082601f830112612e9357612e92614296565b5b8135612ea3848260208601612da6565b91505092915050565b600082601f830112612ec157612ec0614296565b5b8135612ed1848260208601612de8565b91505092915050565b600081359050612ee9816149b9565b92915050565b600060208284031215612f0557612f046142a5565b5b6000612f1384828501612e2a565b91505092915050565b60008060408385031215612f3357612f326142a5565b5b6000612f4185828601612e2a565b9250506020612f5285828601612e2a565b9150509250929050565b600080600060608486031215612f7557612f746142a5565b5b6000612f8386828701612e2a565b9350506020612f9486828701612e2a565b9250506040612fa586828701612eda565b9150509250925092565b60008060008060808587031215612fc957612fc86142a5565b5b6000612fd787828801612e2a565b9450506020612fe887828801612e2a565b9350506040612ff987828801612eda565b925050606085013567ffffffffffffffff81111561301a576130196142a0565b5b61302687828801612e7e565b91505092959194509250565b60008060408385031215613049576130486142a5565b5b600061305785828601612e2a565b925050602061306885828601612e3f565b9150509250929050565b60008060408385031215613089576130886142a5565b5b600061309785828601612e2a565b92505060206130a885828601612eda565b9150509250929050565b6000602082840312156130c8576130c76142a5565b5b60006130d684828501612e3f565b91505092915050565b6000602082840312156130f5576130f46142a5565b5b600061310384828501612e54565b91505092915050565b600060208284031215613122576131216142a5565b5b600061313084828501612e69565b91505092915050565b60006020828403121561314f5761314e6142a5565b5b600082013567ffffffffffffffff81111561316d5761316c6142a0565b5b61317984828501612eac565b91505092915050565b600060208284031215613198576131976142a5565b5b60006131a684828501612eda565b91505092915050565b6000806000606084860312156131c8576131c76142a5565b5b60006131d686828701612eda565b93505060206131e786828701612eda565b92505060406131f886828701612eda565b9150509250925092565b600061320e838361382b565b60408301905092915050565b6000613226838361385a565b60408301905092915050565b600061323e8383613889565b60208301905092915050565b61325381613fe9565b82525050565b61326281613fe9565b82525050565b600061327382613e70565b61327d8185613ece565b935061328883613e40565b8060005b838110156132b95781516132a08882613202565b97506132ab83613ea7565b92505060018101905061328c565b5085935050505092915050565b60006132d182613e7b565b6132db8185613edf565b93506132e683613e50565b8060005b838110156133175781516132fe888261321a565b975061330983613eb4565b9250506001810190506132ea565b5085935050505092915050565b600061332f82613e86565b6133398185613ef0565b935061334483613e60565b8060005b8381101561337557815161335c8882613232565b975061336783613ec1565b925050600181019050613348565b5085935050505092915050565b61338b81613ffb565b82525050565b600061339c82613e91565b6133a68185613f01565b93506133b681856020860161406c565b6133bf816142aa565b840191505092915050565b60006133d582613e9c565b6133df8185613f12565b93506133ef81856020860161406c565b6133f8816142aa565b840191505092915050565b600061340e82613e9c565b6134188185613f23565b935061342881856020860161406c565b80840191505092915050565b6000613441601483613f12565b915061344c826142bb565b602082019050919050565b6000613464602b83613f12565b915061346f826142e4565b604082019050919050565b6000613487603283613f12565b915061349282614333565b604082019050919050565b60006134aa602683613f12565b91506134b582614382565b604082019050919050565b60006134cd601c83613f12565b91506134d8826143d1565b602082019050919050565b60006134f0601883613f12565b91506134fb826143fa565b602082019050919050565b6000613513602483613f12565b915061351e82614423565b604082019050919050565b6000613536601983613f12565b915061354182614472565b602082019050919050565b6000613559601283613f12565b91506135648261449b565b602082019050919050565b600061357c601383613f12565b9150613587826144c4565b602082019050919050565b600061359f602c83613f12565b91506135aa826144ed565b604082019050919050565b60006135c2601283613f12565b91506135cd8261453c565b602082019050919050565b60006135e5603883613f12565b91506135f082614565565b604082019050919050565b6000613608602a83613f12565b9150613613826145b4565b604082019050919050565b600061362b602983613f12565b915061363682614603565b604082019050919050565b600061364e601d83613f12565b915061365982614652565b602082019050919050565b6000613671601e83613f12565b915061367c8261467b565b602082019050919050565b6000613694602083613f12565b915061369f826146a4565b602082019050919050565b60006136b7602c83613f12565b91506136c2826146cd565b604082019050919050565b60006136da602c83613f12565b91506136e58261471c565b604082019050919050565b60006136fd601383613f12565b91506137088261476b565b602082019050919050565b6000613720602083613f12565b915061372b82614794565b602082019050919050565b6000613743602983613f12565b915061374e826147bd565b604082019050919050565b6000613766602083613f12565b91506137718261480c565b602082019050919050565b6000613789602183613f12565b915061379482614835565b604082019050919050565b60006137ac603183613f12565b91506137b782614884565b604082019050919050565b60006137cf602c83613f12565b91506137da826148d3565b604082019050919050565b60006137f2600f83613f12565b91506137fd82614922565b602082019050919050565b6000613815601d83613f12565b91506138208261494b565b602082019050919050565b6040820160008201516138416000850182613889565b506020820151613854602085018261324a565b50505050565b6040820160008201516138706000850182613889565b506020820151613883602085018261324a565b50505050565b61389281614053565b82525050565b6138a181614053565b82525050565b60006138b38285613403565b91506138bf8284613403565b91508190509392505050565b60006020820190506138e06000830184613259565b92915050565b60006080820190506138fb6000830187613259565b6139086020830186613259565b6139156040830185613898565b81810360608301526139278184613391565b905095945050505050565b60006040820190506139476000830185613259565b6139546020830184613898565b9392505050565b600060208201905081810360008301526139758184613268565b905092915050565b6000602082019050818103600083015261399781846132c6565b905092915050565b600060208201905081810360008301526139b98184613324565b905092915050565b60006020820190506139d66000830184613382565b92915050565b600060208201905081810360008301526139f681846133ca565b905092915050565b60006020820190508181036000830152613a1781613434565b9050919050565b60006020820190508181036000830152613a3781613457565b9050919050565b60006020820190508181036000830152613a578161347a565b9050919050565b60006020820190508181036000830152613a778161349d565b9050919050565b60006020820190508181036000830152613a97816134c0565b9050919050565b60006020820190508181036000830152613ab7816134e3565b9050919050565b60006020820190508181036000830152613ad781613506565b9050919050565b60006020820190508181036000830152613af781613529565b9050919050565b60006020820190508181036000830152613b178161354c565b9050919050565b60006020820190508181036000830152613b378161356f565b9050919050565b60006020820190508181036000830152613b5781613592565b9050919050565b60006020820190508181036000830152613b77816135b5565b9050919050565b60006020820190508181036000830152613b97816135d8565b9050919050565b60006020820190508181036000830152613bb7816135fb565b9050919050565b60006020820190508181036000830152613bd78161361e565b9050919050565b60006020820190508181036000830152613bf781613641565b9050919050565b60006020820190508181036000830152613c1781613664565b9050919050565b60006020820190508181036000830152613c3781613687565b9050919050565b60006020820190508181036000830152613c57816136aa565b9050919050565b60006020820190508181036000830152613c77816136cd565b9050919050565b60006020820190508181036000830152613c97816136f0565b9050919050565b60006020820190508181036000830152613cb781613713565b9050919050565b60006020820190508181036000830152613cd781613736565b9050919050565b60006020820190508181036000830152613cf781613759565b9050919050565b60006020820190508181036000830152613d178161377c565b9050919050565b60006020820190508181036000830152613d378161379f565b9050919050565b60006020820190508181036000830152613d57816137c2565b9050919050565b60006020820190508181036000830152613d77816137e5565b9050919050565b60006020820190508181036000830152613d9781613808565b9050919050565b6000602082019050613db36000830184613898565b92915050565b6000613dc3613dd4565b9050613dcf82826140d1565b919050565b6000604051905090565b600067ffffffffffffffff821115613df957613df8614267565b5b613e02826142aa565b9050602081019050919050565b600067ffffffffffffffff821115613e2a57613e29614267565b5b613e33826142aa565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f3982614053565b9150613f4483614053565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f7957613f7861417c565b5b828201905092915050565b6000613f8f82614053565b9150613f9a83614053565b925082613faa57613fa96141ab565b5b828204905092915050565b6000613fc082614053565b9150613fcb83614053565b925082821015613fde57613fdd61417c565b5b828203905092915050565b6000613ff482614033565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561408a57808201518184015260208101905061406f565b83811115614099576000848401525b50505050565b600060028204905060018216806140b757607f821691505b602082108114156140cb576140ca6141da565b5b50919050565b6140da826142aa565b810181811067ffffffffffffffff821117156140f9576140f8614267565b5b80604052505050565b600061410d82614053565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141405761413f61417c565b5b600182019050919050565b600061415682614053565b915061416183614053565b925082614171576141706141ab565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f546f6b656e20616c7265616479206d696e746564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e73756666696369656e74204c4f535420746f6b656e730000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f636f6c6c656374696f6e20736f6c64206f757400000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f436173657474657320736f6c64206f75742e0000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e20312076696e796c000000600082015250565b7f546f6b656e204964206d757374206265206265747765656e2035302d37300000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e7420737570706c7900000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e2031206361737365747465600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f56696e796c20736f6c64206f75742e0000000000000000000000000000000000600082015250565b7f546f6b656e204964206d757374206265206265747765656e20312d3530000000600082015250565b61497d81613fe9565b811461498857600080fd5b50565b61499481613ffb565b811461499f57600080fd5b50565b6149ab81614007565b81146149b657600080fd5b50565b6149c281614053565b81146149cd57600080fd5b5056fea2646970667358221220a6629904247805f72e0ec8cc796ee520bdd7d86df185bbc8f45e57ee27710c6764736f6c63430008070033

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

000000000000000000000000d95897e53ba7fa442aac0d94414adeacddd5bd98

-----Decoded View---------------
Arg [0] : _txFeeToken (address): 0xd95897e53Ba7Fa442aaC0D94414ADEacDDD5BD98

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000d95897e53ba7fa442aac0d94414adeacddd5bd98


Deployed Bytecode Sourcemap

67140:5095:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67274:46;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42582:223;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68241:1847;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70683:98;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9711:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11266:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10789:411;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43220:112;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70789:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12154:339;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42889:255;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67329:68;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12564:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43409:232;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9406:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9137:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41123:94;;;:::i;:::-;;67578:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71963:159;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40473:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9879:103;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11558:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71016:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67433:71;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12820:328;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71361:253;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70905:101;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11924:163;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71264:89;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71120:105;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41372:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67274:46;67318:2;67274:46;:::o;42582:223::-;42683:4;42722:35;42707:50;;;:11;:50;;;;:90;;;;42761:36;42785:11;42761:23;:36::i;:::-;42707:90;42700:97;;42582:223;;;:::o;68241:1847::-;68339:16;68347:7;68339;:16::i;:::-;68338:17;68330:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;68400:14;:12;:14::i;:::-;68392:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;68462:1;68451:9;:12;68448:270;;;67374:23;68483:19;:41;;68475:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;68448:270;;;68584:1;68573:9;:12;68570:148;;;67481:23;68607:19;:44;;68599:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;68570:148;;;;68448:270;67318:2;68736:13;:11;:13::i;:::-;:33;68728:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;67318:2;68812:20;68830:1;68812:13;:11;:13::i;:::-;:17;;:20;;;;:::i;:::-;:40;68804:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;68932:1;68919:9;:14;68916:1156;;;68971:2;68953:8;:15;;;;:20;;68945:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;69012:23;69024:10;69012:11;:23::i;:::-;69004:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;69097:2;69089:7;:10;:25;;;;;69112:2;69103:7;:11;;69089:25;69081:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;69159:30;69169:19;69159:9;:30::i;:::-;69200:31;69212:7;69220:10;69200:11;:31::i;:::-;69242:10;69258:7;69242:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69277:21;69301:93;;;;;;;;69331:7;69301:93;;;;69372:10;69301:93;;;;;69277:117;;69405:8;69419;69405:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68934:506;68916:1156;;;69502:1;69489:9;:14;69486:586;;;69544:2;69523:11;:18;;;;:23;;69515:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;69588:26;69603:10;69588:14;:26::i;:::-;69580:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;69681:1;69671:7;:11;;:28;;;;;69697:2;69687:7;:12;;69671:28;69663:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;69743:30;69753:19;69743:9;:30::i;:::-;69784:31;69796:7;69804:10;69784:11;:31::i;:::-;69826:10;69842:7;69826:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69861:27;69891:101;;;;;;;;69925:7;69891:101;;;;69970:10;69891:101;;;;;69861:131;;70003:11;70020;70003:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69504:540;69486:586;;;;68916:1156;68241:1847;;;:::o;70683:98::-;40703:12;:10;:12::i;:::-;40692:23;;:7;:5;:7::i;:::-;:23;;;40684:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70767:6:::1;70751:13;;:22;;;;;;;;;;;;;;;;;;70683:98:::0;:::o;9711:99::-;9764:13;9797:5;9790:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9711:99;:::o;11266:220::-;11341:7;11369:16;11377:7;11369;:16::i;:::-;11361:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;11454:15;:24;11470:7;11454:24;;;;;;;;;;;;;;;;;;;;;11447:31;;11266:220;;;:::o;10789:411::-;10870:13;10886:23;10901:7;10886:14;:23::i;:::-;10870:39;;10934:5;10928:11;;:2;:11;;;;10920:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;11028:5;11012:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;11037:37;11054:5;11061:12;:10;:12::i;:::-;11037:16;:37::i;:::-;11012:62;10990:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;11171:21;11180:2;11184:7;11171:8;:21::i;:::-;10859:341;10789:411;;:::o;43220:112::-;43280:7;43307:10;:17;;;;43300:24;;43220:112;:::o;70789:107::-;40703:12;:10;:12::i;:::-;40692:23;;:7;:5;:7::i;:::-;:23;;;40684:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70881:7:::1;70866:12;:22;;;;;;;;;;;;:::i;:::-;;70789:107:::0;:::o;12154:339::-;12349:41;12368:12;:10;:12::i;:::-;12382:7;12349:18;:41::i;:::-;12341:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;12457:28;12467:4;12473:2;12477:7;12457:9;:28::i;:::-;12154:339;;;:::o;42889:255::-;42985:7;43021:23;43038:5;43021:16;:23::i;:::-;43013:5;:31;43005:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;43110:12;:19;43123:5;43110:19;;;;;;;;;;;;;;;:26;43130:5;43110:26;;;;;;;;;;;;43103:33;;42889:255;;;;:::o;67329:68::-;67374:23;67329:68;:::o;12564:185::-;12702:39;12719:4;12725:2;12729:7;12702:39;;;;;;;;;;;;:16;:39::i;:::-;12564:185;;;:::o;43409:232::-;43483:7;43519:30;:28;:30::i;:::-;43511:5;:38;43503:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;43616:10;43627:5;43616:17;;;;;;;;:::i;:::-;;;;;;;;;;43609:24;;43409:232;;;:::o;9406:238::-;9477:7;9497:13;9513:7;:16;9521:7;9513:16;;;;;;;;;;;;;;;;;;;;;9497:32;;9565:1;9548:19;;:5;:19;;;;9540:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;9631:5;9624:12;;;9406:238;;;:::o;9137:207::-;9208:7;9253:1;9236:19;;:5;:19;;;;9228:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;9320:9;:16;9330:5;9320:16;;;;;;;;;;;;;;;;9313:23;;9137:207;;;:::o;41123:94::-;40703:12;:10;:12::i;:::-;40692:23;;:7;:5;:7::i;:::-;:23;;;40684:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41188:21:::1;41206:1;41188:9;:21::i;:::-;41123:94::o:0;67578:25::-;;;;;;;;;;;;;:::o;71963:159::-;72017:19;72053:10;;;;;;;;;;;72017:47;;72075:5;:14;;;72090:10;72102:11;72075:39;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72006:116;71963:159;:::o;40473:86::-;40518:7;40545:6;;;;;;;;;;;40538:13;;40473:86;:::o;9879:103::-;9934:13;9967:7;9960:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9879:103;:::o;11558:295::-;11673:12;:10;:12::i;:::-;11661:24;;:8;:24;;;;11653:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;11773:8;11728:18;:32;11747:12;:10;:12::i;:::-;11728:32;;;;;;;;;;;;;;;:42;11761:8;11728:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;11826:8;11797:48;;11812:12;:10;:12::i;:::-;11797:48;;;11836:8;11797:48;;;;;;:::i;:::-;;;;;;;;11558:295;;:::o;71016:95::-;71060:14;71095:8;71088:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71016:95;:::o;67433:71::-;67481:23;67433:71;:::o;12820:328::-;12995:41;13014:12;:10;:12::i;:::-;13028:7;12995:18;:41::i;:::-;12987:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;13101:39;13115:4;13121:2;13125:7;13134:5;13101:13;:39::i;:::-;12820:328;;;;:::o;71361:253::-;71425:13;71459:16;71467:7;71459;:16::i;:::-;71451:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;71566:10;:8;:10::i;:::-;71577:27;71585:7;71577:25;:27::i;:::-;71549:56;;;;;;;;;:::i;:::-;;;;;;;;;;;;;71535:71;;71361:253;;;:::o;70905:101::-;70953:13;70987:10;70980:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70905:101;:::o;11924:163::-;12020:4;12044:18;:25;12063:5;12044:25;;;;;;;;;;;;;;;:35;12070:8;12044:35;;;;;;;;;;;;;;;;;;;;;;;;;12037:42;;11924:163;;;;:::o;71264:89::-;71308:4;71332:13;;;;;;;;;;;71325:20;;71264:89;:::o;71120:105::-;71166:17;71206:11;71199:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71120:105;:::o;41372:192::-;40703:12;:10;:12::i;:::-;40692:23;;:7;:5;:7::i;:::-;:23;;;40684:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41481:1:::1;41461:22;;:8;:22;;;;41453:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;41537:19;41547:8;41537:9;:19::i;:::-;41372:192:::0;:::o;8773:300::-;8874:4;8922:25;8907:40;;;:11;:40;;;;:105;;;;8979:33;8964:48;;;:11;:48;;;;8907:105;:158;;;;9029:36;9053:11;9029:23;:36::i;:::-;8907:158;8891:174;;8773:300;;;:::o;14658:126::-;14722:4;14774:1;14746:30;;:7;:16;14754:7;14746:16;;;;;;;;;;;;;;;;;;;;;:30;;;;14739:37;;14658:126;;;:::o;35398:97::-;35455:7;35486:1;35482;:5;;;;:::i;:::-;35475:12;;35398:97;;;;:::o;70098:274::-;70157:4;70194:1;70176:8;:15;;;;:19;70173:178;;;70208:6;70204:142;70223:8;:15;;;;70220:1;:18;70204:142;;;70293:5;70260:38;;:8;70269:1;70260:11;;;;;;;;:::i;:::-;;;;;;;;;;;;:29;;;;;;;;;;;;:38;;;70257:81;;;70321:5;70314:12;;;;;70257:81;70241:3;;;;;:::i;:::-;;;;70204:142;;;;70173:178;70364:4;70357:11;;70098:274;;;;:::o;71652:107::-;71728:23;71738:3;71743:7;71728:9;:23::i;:::-;71652:107;;:::o;70376:293::-;70438:4;70473:1;70452:11;:18;;;;:22;70449:195;;;70487:6;70483:154;70502:11;:18;;;;70499:1;:21;70483:154;;;70581:5;70542:44;;:11;70554:1;70542:14;;;;;;;;:::i;:::-;;;;;;;;;;;;:35;;;;;;;;;;;;:44;;;70539:88;;;70610:5;70603:12;;;;;70539:88;70523:3;;;;;:::i;:::-;;;;70483:154;;;;70449:195;70657:4;70650:11;;70376:293;;;;:::o;949:97::-;1001:7;1028:10;1021:17;;949:97;:::o;18638:174::-;18740:2;18713:15;:24;18729:7;18713:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;18796:7;18792:2;18758:46;;18767:23;18782:7;18767:14;:23::i;:::-;18758:46;;;;;;;;;;;;18638:174;;:::o;14951:347::-;15043:4;15068:16;15076:7;15068;:16::i;:::-;15060:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;15144:13;15160:23;15175:7;15160:14;:23::i;:::-;15144:39;;15213:5;15202:16;;:7;:16;;;:51;;;;15246:7;15222:31;;:20;15234:7;15222:11;:20::i;:::-;:31;;;15202:51;:87;;;;15257:32;15274:5;15281:7;15257:16;:32::i;:::-;15202:87;15194:96;;;14951:347;;;;:::o;17942:578::-;18101:4;18074:31;;:23;18089:7;18074:14;:23::i;:::-;:31;;;18066:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;18184:1;18170:16;;:2;:16;;;;18162:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;18240:39;18261:4;18267:2;18271:7;18240:20;:39::i;:::-;18344:29;18361:1;18365:7;18344:8;:29::i;:::-;18405:1;18386:9;:15;18396:4;18386:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;18434:1;18417:9;:13;18427:2;18417:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;18465:2;18446:7;:16;18454:7;18446:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;18504:7;18500:2;18485:27;;18494:4;18485:27;;;;;;;;;;;;17942:578;;;:::o;41572:173::-;41628:16;41647:6;;;;;;;;;;;41628:25;;41673:8;41664:6;;:17;;;;;;;;;;;;;;;;;;41728:8;41697:40;;41718:8;41697:40;;;;;;;;;;;;41617:128;41572:173;:::o;14030:315::-;14187:28;14197:4;14203:2;14207:7;14187:9;:28::i;:::-;14234:48;14257:4;14263:2;14267:7;14276:5;14234:22;:48::i;:::-;14226:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;14030:315;;;;:::o;72128:104::-;72179:13;72212:12;72205:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72128:104;:::o;30934:722::-;30989:13;31219:1;31210:5;:10;31206:53;;;31237:10;;;;;;;;;;;;;;;;;;;;;31206:53;31269:12;31284:5;31269:20;;31300:14;31325:78;31340:1;31332:4;:9;31325:78;;31358:8;;;;;:::i;:::-;;;;31389:2;31381:10;;;;;:::i;:::-;;;31325:78;;;31413:19;31445:6;31435:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31413:39;;31463:154;31479:1;31470:5;:10;31463:154;;31507:1;31497:11;;;;;:::i;:::-;;;31574:2;31566:5;:10;;;;:::i;:::-;31553:2;:24;;;;:::i;:::-;31540:39;;31523:6;31530;31523:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;31603:2;31594:11;;;;;:::i;:::-;;;31463:154;;;31641:6;31627:21;;;;;30934:722;;;;:::o;7353:156::-;7437:4;7476:25;7461:40;;;:11;:40;;;;7454:47;;7353:156;;;:::o;15640:110::-;15716:26;15726:2;15730:7;15716:26;;;;;;;;;;;;:9;:26::i;:::-;15640:110;;:::o;44254:589::-;44398:45;44425:4;44431:2;44435:7;44398:26;:45::i;:::-;44476:1;44460:18;;:4;:18;;;44456:187;;;44495:40;44527:7;44495:31;:40::i;:::-;44456:187;;;44565:2;44557:10;;:4;:10;;;44553:90;;44584:47;44617:4;44623:7;44584:32;:47::i;:::-;44553:90;44456:187;44671:1;44657:16;;:2;:16;;;44653:183;;;44690:45;44727:7;44690:36;:45::i;:::-;44653:183;;;44763:4;44757:10;;:2;:10;;;44753:83;;44784:40;44812:2;44816:7;44784:27;:40::i;:::-;44753:83;44653:183;44254:589;;;:::o;19377:797::-;19531:4;19552:15;:2;:13;;;:15::i;:::-;19548:619;;;19604:2;19588:36;;;19625:12;:10;:12::i;:::-;19639:4;19645:7;19654:5;19588:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;19584:528;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19846:1;19829:6;:13;:18;19825:272;;;19872:60;;;;;;;;;;:::i;:::-;;;;;;;;19825:272;20047:6;20041:13;20032:6;20028:2;20024:15;20017:38;19584:528;19720:41;;;19710:51;;;:6;:51;;;;19703:58;;;;;19548:619;20151:4;20144:11;;19377:797;;;;;;;:::o;15977:321::-;16107:18;16113:2;16117:7;16107:5;:18::i;:::-;16158:54;16189:1;16193:2;16197:7;16206:5;16158:22;:54::i;:::-;16136:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;15977:321;;;:::o;20746:127::-;;;;:::o;45566:164::-;45670:10;:17;;;;45643:15;:24;45659:7;45643:24;;;;;;;;;;;:44;;;;45698:10;45714:7;45698:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45566:164;:::o;46357:988::-;46623:22;46673:1;46648:22;46665:4;46648:16;:22::i;:::-;:26;;;;:::i;:::-;46623:51;;46685:18;46706:17;:26;46724:7;46706:26;;;;;;;;;;;;46685:47;;46853:14;46839:10;:28;46835:328;;46884:19;46906:12;:18;46919:4;46906:18;;;;;;;;;;;;;;;:34;46925:14;46906:34;;;;;;;;;;;;46884:56;;46990:11;46957:12;:18;46970:4;46957:18;;;;;;;;;;;;;;;:30;46976:10;46957:30;;;;;;;;;;;:44;;;;47107:10;47074:17;:30;47092:11;47074:30;;;;;;;;;;;:43;;;;46869:294;46835:328;47259:17;:26;47277:7;47259:26;;;;;;;;;;;47252:33;;;47303:12;:18;47316:4;47303:18;;;;;;;;;;;;;;;:34;47322:14;47303:34;;;;;;;;;;;47296:41;;;46438:907;;46357:988;;:::o;47640:1079::-;47893:22;47938:1;47918:10;:17;;;;:21;;;;:::i;:::-;47893:46;;47950:18;47971:15;:24;47987:7;47971:24;;;;;;;;;;;;47950:45;;48322:19;48344:10;48355:14;48344:26;;;;;;;;:::i;:::-;;;;;;;;;;48322:48;;48408:11;48383:10;48394;48383:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;48519:10;48488:15;:28;48504:11;48488:28;;;;;;;;;;;:41;;;;48660:15;:24;48676:7;48660:24;;;;;;;;;;;48653:31;;;48695:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;47711:1008;;;47640:1079;:::o;45144:221::-;45229:14;45246:20;45263:2;45246:16;:20::i;:::-;45229:37;;45304:7;45277:12;:16;45290:2;45277:16;;;;;;;;;;;;;;;:24;45294:6;45277:24;;;;;;;;;;;:34;;;;45351:6;45322:17;:26;45340:7;45322:26;;;;;;;;;;;:35;;;;45218:147;45144:221;;:::o;21609:385::-;21668:4;21876:12;21942:7;21930:20;21923:27;;21985:1;21978:4;:8;21971:15;;;21609:385;;;:::o;16634:382::-;16728:1;16714:16;;:2;:16;;;;16706:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;16787:16;16795:7;16787;:16::i;:::-;16786:17;16778:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;16849:45;16878:1;16882:2;16886:7;16849:20;:45::i;:::-;16924:1;16907:9;:13;16917:2;16907:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;16955:2;16936:7;:16;16944:7;16936:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;17000:7;16996:2;16975:33;;16992:1;16975:33;;;;;;;;;;;;16634:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;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:619::-;7564:6;7572;7580;7629:2;7617:9;7608:7;7604:23;7600:32;7597:119;;;7635:79;;:::i;:::-;7597:119;7755:1;7780:53;7825:7;7816:6;7805:9;7801:22;7780:53;:::i;:::-;7770:63;;7726:117;7882:2;7908:53;7953:7;7944:6;7933:9;7929:22;7908:53;:::i;:::-;7898:63;;7853:118;8010:2;8036:53;8081:7;8072:6;8061:9;8057:22;8036:53;:::i;:::-;8026:63;;7981:118;7487:619;;;;;:::o;8112:283::-;8233:10;8254:98;8348:3;8340:6;8254:98;:::i;:::-;8384:4;8379:3;8375:14;8361:28;;8112:283;;;;:::o;8401:271::-;8516:10;8537:92;8625:3;8617:6;8537:92;:::i;:::-;8661:4;8656:3;8652:14;8638:28;;8401:271;;;;:::o;8678:179::-;8747:10;8768:46;8810:3;8802:6;8768:46;:::i;:::-;8846:4;8841:3;8837:14;8823:28;;8678:179;;;;:::o;8863:108::-;8940:24;8958:5;8940:24;:::i;:::-;8935:3;8928:37;8863:108;;:::o;8977:118::-;9064:24;9082:5;9064:24;:::i;:::-;9059:3;9052:37;8977:118;;:::o;9187:940::-;9358:3;9387:80;9461:5;9387:80;:::i;:::-;9483:112;9588:6;9583:3;9483:112;:::i;:::-;9476:119;;9619:82;9695:5;9619:82;:::i;:::-;9724:7;9755:1;9740:362;9765:6;9762:1;9759:13;9740:362;;;9841:6;9835:13;9868:115;9979:3;9964:13;9868:115;:::i;:::-;9861:122;;10006:86;10085:6;10006:86;:::i;:::-;9996:96;;9800:302;9787:1;9784;9780:9;9775:14;;9740:362;;;9744:14;10118:3;10111:10;;9363:764;;;9187:940;;;;:::o;10213:916::-;10378:3;10407:77;10478:5;10407:77;:::i;:::-;10500:109;10602:6;10597:3;10500:109;:::i;:::-;10493:116;;10633:79;10706:5;10633:79;:::i;:::-;10735:7;10766:1;10751:353;10776:6;10773:1;10770:13;10751:353;;;10852:6;10846:13;10879:109;10984:3;10969:13;10879:109;:::i;:::-;10872:116;;11011:83;11087:6;11011:83;:::i;:::-;11001:93;;10811:293;10798:1;10795;10791:9;10786:14;;10751:353;;;10755:14;11120:3;11113:10;;10383:746;;;10213:916;;;;:::o;11165:732::-;11284:3;11313:54;11361:5;11313:54;:::i;:::-;11383:86;11462:6;11457:3;11383:86;:::i;:::-;11376:93;;11493:56;11543:5;11493:56;:::i;:::-;11572:7;11603:1;11588:284;11613:6;11610:1;11607:13;11588:284;;;11689:6;11683:13;11716:63;11775:3;11760:13;11716:63;:::i;:::-;11709:70;;11802:60;11855:6;11802:60;:::i;:::-;11792:70;;11648:224;11635:1;11632;11628:9;11623:14;;11588:284;;;11592:14;11888:3;11881:10;;11289:608;;;11165:732;;;;:::o;11903:109::-;11984:21;11999:5;11984:21;:::i;:::-;11979:3;11972:34;11903:109;;:::o;12018:360::-;12104:3;12132:38;12164:5;12132:38;:::i;:::-;12186:70;12249:6;12244:3;12186:70;:::i;:::-;12179:77;;12265:52;12310:6;12305:3;12298:4;12291:5;12287:16;12265:52;:::i;:::-;12342:29;12364:6;12342:29;:::i;:::-;12337:3;12333:39;12326:46;;12108:270;12018:360;;;;:::o;12384:364::-;12472:3;12500:39;12533:5;12500:39;:::i;:::-;12555:71;12619:6;12614:3;12555:71;:::i;:::-;12548:78;;12635:52;12680:6;12675:3;12668:4;12661:5;12657:16;12635:52;:::i;:::-;12712:29;12734:6;12712:29;:::i;:::-;12707:3;12703:39;12696:46;;12476:272;12384:364;;;;:::o;12754:377::-;12860:3;12888:39;12921:5;12888:39;:::i;:::-;12943:89;13025:6;13020:3;12943:89;:::i;:::-;12936:96;;13041:52;13086:6;13081:3;13074:4;13067:5;13063:16;13041:52;:::i;:::-;13118:6;13113:3;13109:16;13102:23;;12864:267;12754:377;;;;:::o;13137:366::-;13279:3;13300:67;13364:2;13359:3;13300:67;:::i;:::-;13293:74;;13376:93;13465:3;13376:93;:::i;:::-;13494:2;13489:3;13485:12;13478:19;;13137:366;;;:::o;13509:::-;13651:3;13672:67;13736:2;13731:3;13672:67;:::i;:::-;13665:74;;13748:93;13837:3;13748:93;:::i;:::-;13866:2;13861:3;13857:12;13850:19;;13509:366;;;:::o;13881:::-;14023:3;14044:67;14108:2;14103:3;14044:67;:::i;:::-;14037:74;;14120:93;14209:3;14120:93;:::i;:::-;14238:2;14233:3;14229:12;14222:19;;13881:366;;;:::o;14253:::-;14395:3;14416:67;14480:2;14475:3;14416:67;:::i;:::-;14409:74;;14492:93;14581:3;14492:93;:::i;:::-;14610:2;14605:3;14601:12;14594:19;;14253:366;;;:::o;14625:::-;14767:3;14788:67;14852:2;14847:3;14788:67;:::i;:::-;14781:74;;14864:93;14953:3;14864:93;:::i;:::-;14982:2;14977:3;14973:12;14966:19;;14625:366;;;:::o;14997:::-;15139:3;15160:67;15224:2;15219:3;15160:67;:::i;:::-;15153:74;;15236:93;15325:3;15236:93;:::i;:::-;15354:2;15349:3;15345:12;15338:19;;14997:366;;;:::o;15369:::-;15511:3;15532:67;15596:2;15591:3;15532:67;:::i;:::-;15525:74;;15608:93;15697:3;15608:93;:::i;:::-;15726:2;15721:3;15717:12;15710:19;;15369:366;;;:::o;15741:::-;15883:3;15904:67;15968:2;15963:3;15904:67;:::i;:::-;15897:74;;15980:93;16069:3;15980:93;:::i;:::-;16098:2;16093:3;16089:12;16082:19;;15741:366;;;:::o;16113:::-;16255:3;16276:67;16340:2;16335:3;16276:67;:::i;:::-;16269:74;;16352:93;16441:3;16352:93;:::i;:::-;16470:2;16465:3;16461:12;16454:19;;16113:366;;;:::o;16485:::-;16627:3;16648:67;16712:2;16707:3;16648:67;:::i;:::-;16641:74;;16724:93;16813:3;16724:93;:::i;:::-;16842:2;16837:3;16833:12;16826:19;;16485:366;;;:::o;16857:::-;16999:3;17020:67;17084:2;17079:3;17020:67;:::i;:::-;17013:74;;17096:93;17185:3;17096:93;:::i;:::-;17214:2;17209:3;17205:12;17198:19;;16857:366;;;:::o;17229:::-;17371:3;17392:67;17456:2;17451:3;17392:67;:::i;:::-;17385:74;;17468:93;17557:3;17468:93;:::i;:::-;17586:2;17581:3;17577:12;17570:19;;17229:366;;;:::o;17601:::-;17743:3;17764:67;17828:2;17823:3;17764:67;:::i;:::-;17757:74;;17840:93;17929:3;17840:93;:::i;:::-;17958:2;17953:3;17949:12;17942:19;;17601:366;;;:::o;17973:::-;18115:3;18136:67;18200:2;18195:3;18136:67;:::i;:::-;18129:74;;18212:93;18301:3;18212:93;:::i;:::-;18330:2;18325:3;18321:12;18314:19;;17973:366;;;:::o;18345:::-;18487:3;18508:67;18572:2;18567:3;18508:67;:::i;:::-;18501:74;;18584:93;18673:3;18584:93;:::i;:::-;18702:2;18697:3;18693:12;18686:19;;18345:366;;;:::o;18717:::-;18859:3;18880:67;18944:2;18939:3;18880:67;:::i;:::-;18873:74;;18956:93;19045:3;18956:93;:::i;:::-;19074:2;19069:3;19065:12;19058:19;;18717:366;;;:::o;19089:::-;19231:3;19252:67;19316:2;19311:3;19252:67;:::i;:::-;19245:74;;19328:93;19417:3;19328:93;:::i;:::-;19446:2;19441:3;19437:12;19430:19;;19089:366;;;:::o;19461:::-;19603:3;19624:67;19688:2;19683:3;19624:67;:::i;:::-;19617:74;;19700:93;19789:3;19700:93;:::i;:::-;19818:2;19813:3;19809:12;19802:19;;19461:366;;;:::o;19833:::-;19975:3;19996:67;20060:2;20055:3;19996:67;:::i;:::-;19989:74;;20072:93;20161:3;20072:93;:::i;:::-;20190:2;20185:3;20181:12;20174:19;;19833:366;;;:::o;20205:::-;20347:3;20368:67;20432:2;20427:3;20368:67;:::i;:::-;20361:74;;20444:93;20533:3;20444:93;:::i;:::-;20562:2;20557:3;20553:12;20546:19;;20205:366;;;:::o;20577:::-;20719:3;20740:67;20804:2;20799:3;20740:67;:::i;:::-;20733:74;;20816:93;20905:3;20816:93;:::i;:::-;20934:2;20929:3;20925:12;20918:19;;20577:366;;;:::o;20949:::-;21091:3;21112:67;21176:2;21171:3;21112:67;:::i;:::-;21105:74;;21188:93;21277:3;21188:93;:::i;:::-;21306:2;21301:3;21297:12;21290:19;;20949:366;;;:::o;21321:::-;21463:3;21484:67;21548:2;21543:3;21484:67;:::i;:::-;21477:74;;21560:93;21649:3;21560:93;:::i;:::-;21678:2;21673:3;21669:12;21662:19;;21321:366;;;:::o;21693:::-;21835:3;21856:67;21920:2;21915:3;21856:67;:::i;:::-;21849:74;;21932:93;22021:3;21932:93;:::i;:::-;22050:2;22045:3;22041:12;22034:19;;21693:366;;;:::o;22065:::-;22207:3;22228:67;22292:2;22287:3;22228:67;:::i;:::-;22221:74;;22304:93;22393:3;22304:93;:::i;:::-;22422:2;22417:3;22413:12;22406:19;;22065:366;;;:::o;22437:::-;22579:3;22600:67;22664:2;22659:3;22600:67;:::i;:::-;22593:74;;22676:93;22765:3;22676:93;:::i;:::-;22794:2;22789:3;22785:12;22778:19;;22437:366;;;:::o;22809:::-;22951:3;22972:67;23036:2;23031:3;22972:67;:::i;:::-;22965:74;;23048:93;23137:3;23048:93;:::i;:::-;23166:2;23161:3;23157:12;23150:19;;22809:366;;;:::o;23181:::-;23323:3;23344:67;23408:2;23403:3;23344:67;:::i;:::-;23337:74;;23420:93;23509:3;23420:93;:::i;:::-;23538:2;23533:3;23529:12;23522:19;;23181:366;;;:::o;23553:::-;23695:3;23716:67;23780:2;23775:3;23716:67;:::i;:::-;23709:74;;23792:93;23881:3;23792:93;:::i;:::-;23910:2;23905:3;23901:12;23894:19;;23553:366;;;:::o;24007:518::-;24146:4;24141:3;24137:14;24236:4;24229:5;24225:16;24219:23;24255:63;24312:4;24307:3;24303:14;24289:12;24255:63;:::i;:::-;24161:167;24426:4;24419:5;24415:16;24409:23;24445:63;24502:4;24497:3;24493:14;24479:12;24445:63;:::i;:::-;24338:180;24115:410;24007:518;;:::o;24607:509::-;24740:4;24735:3;24731:14;24830:4;24823:5;24819:16;24813:23;24849:63;24906:4;24901:3;24897:14;24883:12;24849:63;:::i;:::-;24755:167;25017:4;25010:5;25006:16;25000:23;25036:63;25093:4;25088:3;25084:14;25070:12;25036:63;:::i;:::-;24932:177;24709:407;24607:509;;:::o;25122:108::-;25199:24;25217:5;25199:24;:::i;:::-;25194:3;25187:37;25122:108;;:::o;25236:118::-;25323:24;25341:5;25323:24;:::i;:::-;25318:3;25311:37;25236:118;;:::o;25360:435::-;25540:3;25562:95;25653:3;25644:6;25562:95;:::i;:::-;25555:102;;25674:95;25765:3;25756:6;25674:95;:::i;:::-;25667:102;;25786:3;25779:10;;25360:435;;;;;:::o;25801:222::-;25894:4;25932:2;25921:9;25917:18;25909:26;;25945:71;26013:1;26002:9;25998:17;25989:6;25945:71;:::i;:::-;25801:222;;;;:::o;26029:640::-;26224:4;26262:3;26251:9;26247:19;26239:27;;26276:71;26344:1;26333:9;26329:17;26320:6;26276:71;:::i;:::-;26357:72;26425:2;26414:9;26410:18;26401:6;26357:72;:::i;:::-;26439;26507:2;26496:9;26492:18;26483:6;26439:72;:::i;:::-;26558:9;26552:4;26548:20;26543:2;26532:9;26528:18;26521:48;26586:76;26657:4;26648:6;26586:76;:::i;:::-;26578:84;;26029:640;;;;;;;:::o;26675:332::-;26796:4;26834:2;26823:9;26819:18;26811:26;;26847:71;26915:1;26904:9;26900:17;26891:6;26847:71;:::i;:::-;26928:72;26996:2;26985:9;26981:18;26972:6;26928:72;:::i;:::-;26675:332;;;;;:::o;27013:477::-;27208:4;27246:2;27235:9;27231:18;27223:26;;27295:9;27289:4;27285:20;27281:1;27270:9;27266:17;27259:47;27323:160;27478:4;27469:6;27323:160;:::i;:::-;27315:168;;27013:477;;;;:::o;27496:465::-;27685:4;27723:2;27712:9;27708:18;27700:26;;27772:9;27766:4;27762:20;27758:1;27747:9;27743:17;27736:47;27800:154;27949:4;27940:6;27800:154;:::i;:::-;27792:162;;27496:465;;;;:::o;27967:373::-;28110:4;28148:2;28137:9;28133:18;28125:26;;28197:9;28191:4;28187:20;28183:1;28172:9;28168:17;28161:47;28225:108;28328:4;28319:6;28225:108;:::i;:::-;28217:116;;27967:373;;;;:::o;28346:210::-;28433:4;28471:2;28460:9;28456:18;28448:26;;28484:65;28546:1;28535:9;28531:17;28522:6;28484:65;:::i;:::-;28346:210;;;;:::o;28562:313::-;28675:4;28713:2;28702:9;28698:18;28690:26;;28762:9;28756:4;28752:20;28748:1;28737:9;28733:17;28726:47;28790:78;28863:4;28854:6;28790:78;:::i;:::-;28782:86;;28562:313;;;;:::o;28881:419::-;29047:4;29085:2;29074:9;29070:18;29062:26;;29134:9;29128:4;29124:20;29120:1;29109:9;29105:17;29098:47;29162:131;29288:4;29162:131;:::i;:::-;29154:139;;28881:419;;;:::o;29306:::-;29472:4;29510:2;29499:9;29495:18;29487:26;;29559:9;29553:4;29549:20;29545:1;29534:9;29530:17;29523:47;29587:131;29713:4;29587:131;:::i;:::-;29579:139;;29306:419;;;:::o;29731:::-;29897:4;29935:2;29924:9;29920:18;29912:26;;29984:9;29978:4;29974:20;29970:1;29959:9;29955:17;29948:47;30012:131;30138:4;30012:131;:::i;:::-;30004:139;;29731:419;;;:::o;30156:::-;30322:4;30360:2;30349:9;30345:18;30337:26;;30409:9;30403:4;30399:20;30395:1;30384:9;30380:17;30373:47;30437:131;30563:4;30437:131;:::i;:::-;30429:139;;30156:419;;;:::o;30581:::-;30747:4;30785:2;30774:9;30770:18;30762:26;;30834:9;30828:4;30824:20;30820:1;30809:9;30805:17;30798:47;30862:131;30988:4;30862:131;:::i;:::-;30854:139;;30581:419;;;:::o;31006:::-;31172:4;31210:2;31199:9;31195:18;31187:26;;31259:9;31253:4;31249:20;31245:1;31234:9;31230:17;31223:47;31287:131;31413:4;31287:131;:::i;:::-;31279:139;;31006:419;;;:::o;31431:::-;31597:4;31635:2;31624:9;31620:18;31612:26;;31684:9;31678:4;31674:20;31670:1;31659:9;31655:17;31648:47;31712:131;31838:4;31712:131;:::i;:::-;31704:139;;31431:419;;;:::o;31856:::-;32022:4;32060:2;32049:9;32045:18;32037:26;;32109:9;32103:4;32099:20;32095:1;32084:9;32080:17;32073:47;32137:131;32263:4;32137:131;:::i;:::-;32129:139;;31856:419;;;:::o;32281:::-;32447:4;32485:2;32474:9;32470:18;32462:26;;32534:9;32528:4;32524:20;32520:1;32509:9;32505:17;32498:47;32562:131;32688:4;32562:131;:::i;:::-;32554:139;;32281:419;;;:::o;32706:::-;32872:4;32910:2;32899:9;32895:18;32887:26;;32959:9;32953:4;32949:20;32945:1;32934:9;32930:17;32923:47;32987:131;33113:4;32987:131;:::i;:::-;32979:139;;32706:419;;;:::o;33131:::-;33297:4;33335:2;33324:9;33320:18;33312:26;;33384:9;33378:4;33374:20;33370:1;33359:9;33355:17;33348:47;33412:131;33538:4;33412:131;:::i;:::-;33404:139;;33131:419;;;:::o;33556:::-;33722:4;33760:2;33749:9;33745:18;33737:26;;33809:9;33803:4;33799:20;33795:1;33784:9;33780:17;33773:47;33837:131;33963:4;33837:131;:::i;:::-;33829:139;;33556:419;;;:::o;33981:::-;34147:4;34185:2;34174:9;34170:18;34162:26;;34234:9;34228:4;34224:20;34220:1;34209:9;34205:17;34198:47;34262:131;34388:4;34262:131;:::i;:::-;34254:139;;33981:419;;;:::o;34406:::-;34572:4;34610:2;34599:9;34595:18;34587:26;;34659:9;34653:4;34649:20;34645:1;34634:9;34630:17;34623:47;34687:131;34813:4;34687:131;:::i;:::-;34679:139;;34406:419;;;:::o;34831:::-;34997:4;35035:2;35024:9;35020:18;35012:26;;35084:9;35078:4;35074:20;35070:1;35059:9;35055:17;35048:47;35112:131;35238:4;35112:131;:::i;:::-;35104:139;;34831:419;;;:::o;35256:::-;35422:4;35460:2;35449:9;35445:18;35437:26;;35509:9;35503:4;35499:20;35495:1;35484:9;35480:17;35473:47;35537:131;35663:4;35537:131;:::i;:::-;35529:139;;35256:419;;;:::o;35681:::-;35847:4;35885:2;35874:9;35870:18;35862:26;;35934:9;35928:4;35924:20;35920:1;35909:9;35905:17;35898:47;35962:131;36088:4;35962:131;:::i;:::-;35954:139;;35681:419;;;:::o;36106:::-;36272:4;36310:2;36299:9;36295:18;36287:26;;36359:9;36353:4;36349:20;36345:1;36334:9;36330:17;36323:47;36387:131;36513:4;36387:131;:::i;:::-;36379:139;;36106:419;;;:::o;36531:::-;36697:4;36735:2;36724:9;36720:18;36712:26;;36784:9;36778:4;36774:20;36770:1;36759:9;36755:17;36748:47;36812:131;36938:4;36812:131;:::i;:::-;36804:139;;36531:419;;;:::o;36956:::-;37122:4;37160:2;37149:9;37145:18;37137:26;;37209:9;37203:4;37199:20;37195:1;37184:9;37180:17;37173:47;37237:131;37363:4;37237:131;:::i;:::-;37229:139;;36956:419;;;:::o;37381:::-;37547:4;37585:2;37574:9;37570:18;37562:26;;37634:9;37628:4;37624:20;37620:1;37609:9;37605:17;37598:47;37662:131;37788:4;37662:131;:::i;:::-;37654:139;;37381:419;;;:::o;37806:::-;37972:4;38010:2;37999:9;37995:18;37987:26;;38059:9;38053:4;38049:20;38045:1;38034:9;38030:17;38023:47;38087:131;38213:4;38087:131;:::i;:::-;38079:139;;37806:419;;;:::o;38231:::-;38397:4;38435:2;38424:9;38420:18;38412:26;;38484:9;38478:4;38474:20;38470:1;38459:9;38455:17;38448:47;38512:131;38638:4;38512:131;:::i;:::-;38504:139;;38231:419;;;:::o;38656:::-;38822:4;38860:2;38849:9;38845:18;38837:26;;38909:9;38903:4;38899:20;38895:1;38884:9;38880:17;38873:47;38937:131;39063:4;38937:131;:::i;:::-;38929:139;;38656:419;;;:::o;39081:::-;39247:4;39285:2;39274:9;39270:18;39262:26;;39334:9;39328:4;39324:20;39320:1;39309:9;39305:17;39298:47;39362:131;39488:4;39362:131;:::i;:::-;39354:139;;39081:419;;;:::o;39506:::-;39672:4;39710:2;39699:9;39695:18;39687:26;;39759:9;39753:4;39749:20;39745:1;39734:9;39730:17;39723:47;39787:131;39913:4;39787:131;:::i;:::-;39779:139;;39506:419;;;:::o;39931:::-;40097:4;40135:2;40124:9;40120:18;40112:26;;40184:9;40178:4;40174:20;40170:1;40159:9;40155:17;40148:47;40212:131;40338:4;40212:131;:::i;:::-;40204:139;;39931:419;;;:::o;40356:::-;40522:4;40560:2;40549:9;40545:18;40537:26;;40609:9;40603:4;40599:20;40595:1;40584:9;40580:17;40573:47;40637:131;40763:4;40637:131;:::i;:::-;40629:139;;40356:419;;;:::o;40781:::-;40947:4;40985:2;40974:9;40970:18;40962:26;;41034:9;41028:4;41024:20;41020:1;41009:9;41005:17;40998:47;41062:131;41188:4;41062:131;:::i;:::-;41054:139;;40781:419;;;:::o;41206:222::-;41299:4;41337:2;41326:9;41322:18;41314:26;;41350:71;41418:1;41407:9;41403:17;41394:6;41350:71;:::i;:::-;41206:222;;;;:::o;41434:129::-;41468:6;41495:20;;:::i;:::-;41485:30;;41524:33;41552:4;41544:6;41524:33;:::i;:::-;41434:129;;;:::o;41569:75::-;41602:6;41635:2;41629:9;41619:19;;41569:75;:::o;41650:307::-;41711:4;41801:18;41793:6;41790:30;41787:56;;;41823:18;;:::i;:::-;41787:56;41861:29;41883:6;41861:29;:::i;:::-;41853:37;;41945:4;41939;41935:15;41927:23;;41650:307;;;:::o;41963:308::-;42025:4;42115:18;42107:6;42104:30;42101:56;;;42137:18;;:::i;:::-;42101:56;42175:29;42197:6;42175:29;:::i;:::-;42167:37;;42259:4;42253;42249:15;42241:23;;41963:308;;;:::o;42277:158::-;42370:4;42393:3;42385:11;;42423:4;42418:3;42414:14;42406:22;;42277:158;;;:::o;42441:155::-;42531:4;42554:3;42546:11;;42584:4;42579:3;42575:14;42567:22;;42441:155;;;:::o;42602:132::-;42669:4;42692:3;42684:11;;42722:4;42717:3;42713:14;42705:22;;42602:132;;;:::o;42740:140::-;42833:6;42867:5;42861:12;42851:22;;42740:140;;;:::o;42886:137::-;42976:6;43010:5;43004:12;42994:22;;42886:137;;;:::o;43029:114::-;43096:6;43130:5;43124:12;43114:22;;43029:114;;;:::o;43149:98::-;43200:6;43234:5;43228:12;43218:22;;43149:98;;;:::o;43253:99::-;43305:6;43339:5;43333:12;43323:22;;43253:99;;;:::o;43358:139::-;43454:4;43486;43481:3;43477:14;43469:22;;43358:139;;;:::o;43503:136::-;43596:4;43628;43623:3;43619:14;43611:22;;43503:136;;;:::o;43645:113::-;43715:4;43747;43742:3;43738:14;43730:22;;43645:113;;;:::o;43764:210::-;43889:11;43923:6;43918:3;43911:19;43963:4;43958:3;43954:14;43939:29;;43764:210;;;;:::o;43980:207::-;44102:11;44136:6;44131:3;44124:19;44176:4;44171:3;44167:14;44152:29;;43980:207;;;;:::o;44193:184::-;44292:11;44326:6;44321:3;44314:19;44366:4;44361:3;44357:14;44342:29;;44193:184;;;;:::o;44383:168::-;44466:11;44500:6;44495:3;44488:19;44540:4;44535:3;44531:14;44516:29;;44383:168;;;;:::o;44557:169::-;44641:11;44675:6;44670:3;44663:19;44715:4;44710:3;44706:14;44691:29;;44557:169;;;;:::o;44732:148::-;44834:11;44871:3;44856:18;;44732:148;;;;:::o;44886:305::-;44926:3;44945:20;44963:1;44945:20;:::i;:::-;44940:25;;44979:20;44997:1;44979:20;:::i;:::-;44974:25;;45133:1;45065:66;45061:74;45058:1;45055:81;45052:107;;;45139:18;;:::i;:::-;45052:107;45183:1;45180;45176:9;45169:16;;44886:305;;;;:::o;45197:185::-;45237:1;45254:20;45272:1;45254:20;:::i;:::-;45249:25;;45288:20;45306:1;45288:20;:::i;:::-;45283:25;;45327:1;45317:35;;45332:18;;:::i;:::-;45317:35;45374:1;45371;45367:9;45362:14;;45197:185;;;;:::o;45388:191::-;45428:4;45448:20;45466:1;45448:20;:::i;:::-;45443:25;;45482:20;45500:1;45482:20;:::i;:::-;45477:25;;45521:1;45518;45515:8;45512:34;;;45526:18;;:::i;:::-;45512:34;45571:1;45568;45564:9;45556:17;;45388:191;;;;:::o;45585:96::-;45622:7;45651:24;45669:5;45651:24;:::i;:::-;45640:35;;45585:96;;;:::o;45687:90::-;45721:7;45764:5;45757:13;45750:21;45739:32;;45687:90;;;:::o;45783:149::-;45819:7;45859:66;45852:5;45848:78;45837:89;;45783:149;;;:::o;45938:126::-;45975:7;46015:42;46008:5;46004:54;45993:65;;45938:126;;;:::o;46070:77::-;46107:7;46136:5;46125:16;;46070:77;;;:::o;46153:154::-;46237:6;46232:3;46227;46214:30;46299:1;46290:6;46285:3;46281:16;46274:27;46153:154;;;:::o;46313:307::-;46381:1;46391:113;46405:6;46402:1;46399:13;46391:113;;;46490:1;46485:3;46481:11;46475:18;46471:1;46466:3;46462:11;46455:39;46427:2;46424:1;46420:10;46415:15;;46391:113;;;46522:6;46519:1;46516:13;46513:101;;;46602:1;46593:6;46588:3;46584:16;46577:27;46513:101;46362:258;46313:307;;;:::o;46626:320::-;46670:6;46707:1;46701:4;46697:12;46687:22;;46754:1;46748:4;46744:12;46775:18;46765:81;;46831:4;46823:6;46819:17;46809:27;;46765:81;46893:2;46885:6;46882:14;46862:18;46859:38;46856:84;;;46912:18;;:::i;:::-;46856:84;46677:269;46626:320;;;:::o;46952:281::-;47035:27;47057:4;47035:27;:::i;:::-;47027:6;47023:40;47165:6;47153:10;47150:22;47129:18;47117:10;47114:34;47111:62;47108:88;;;47176:18;;:::i;:::-;47108:88;47216:10;47212:2;47205:22;46995:238;46952:281;;:::o;47239:233::-;47278:3;47301:24;47319:5;47301:24;:::i;:::-;47292:33;;47347:66;47340:5;47337:77;47334:103;;;47417:18;;:::i;:::-;47334:103;47464:1;47457:5;47453:13;47446:20;;47239:233;;;:::o;47478:176::-;47510:1;47527:20;47545:1;47527:20;:::i;:::-;47522:25;;47561:20;47579:1;47561:20;:::i;:::-;47556:25;;47600:1;47590:35;;47605:18;;:::i;:::-;47590:35;47646:1;47643;47639:9;47634:14;;47478:176;;;;:::o;47660:180::-;47708:77;47705:1;47698:88;47805:4;47802:1;47795:15;47829:4;47826:1;47819:15;47846:180;47894:77;47891:1;47884:88;47991:4;47988:1;47981:15;48015:4;48012:1;48005:15;48032:180;48080:77;48077:1;48070:88;48177:4;48174:1;48167:15;48201:4;48198:1;48191:15;48218:180;48266:77;48263:1;48256:88;48363:4;48360:1;48353:15;48387:4;48384:1;48377:15;48404:180;48452:77;48449:1;48442:88;48549:4;48546:1;48539:15;48573:4;48570:1;48563:15;48590:180;48638:77;48635:1;48628:88;48735:4;48732:1;48725:15;48759:4;48756:1;48749:15;48776:117;48885:1;48882;48875:12;48899:117;49008:1;49005;48998:12;49022:117;49131:1;49128;49121:12;49145:117;49254:1;49251;49244:12;49268:102;49309:6;49360:2;49356:7;49351:2;49344:5;49340:14;49336:28;49326:38;;49268:102;;;:::o;49376:170::-;49516:22;49512:1;49504:6;49500:14;49493:46;49376:170;:::o;49552:230::-;49692:34;49688:1;49680:6;49676:14;49669:58;49761:13;49756:2;49748:6;49744:15;49737:38;49552:230;:::o;49788:237::-;49928:34;49924:1;49916:6;49912:14;49905:58;49997:20;49992:2;49984:6;49980:15;49973:45;49788:237;:::o;50031:225::-;50171:34;50167:1;50159:6;50155:14;50148:58;50240:8;50235:2;50227:6;50223:15;50216:33;50031:225;:::o;50262:178::-;50402:30;50398:1;50390:6;50386:14;50379:54;50262:178;:::o;50446:174::-;50586:26;50582:1;50574:6;50570:14;50563:50;50446:174;:::o;50626:223::-;50766:34;50762:1;50754:6;50750:14;50743:58;50835:6;50830:2;50822:6;50818:15;50811:31;50626:223;:::o;50855:175::-;50995:27;50991:1;50983:6;50979:14;50972:51;50855:175;:::o;51036:168::-;51176:20;51172:1;51164:6;51160:14;51153:44;51036:168;:::o;51210:169::-;51350:21;51346:1;51338:6;51334:14;51327:45;51210:169;:::o;51385:231::-;51525:34;51521:1;51513:6;51509:14;51502:58;51594:14;51589:2;51581:6;51577:15;51570:39;51385:231;:::o;51622:168::-;51762:20;51758:1;51750:6;51746:14;51739:44;51622:168;:::o;51796:243::-;51936:34;51932:1;51924:6;51920:14;51913:58;52005:26;52000:2;51992:6;51988:15;51981:51;51796:243;:::o;52045:229::-;52185:34;52181:1;52173:6;52169:14;52162:58;52254:12;52249:2;52241:6;52237:15;52230:37;52045:229;:::o;52280:228::-;52420:34;52416:1;52408:6;52404:14;52397:58;52489:11;52484:2;52476:6;52472:15;52465:36;52280:228;:::o;52514:179::-;52654:31;52650:1;52642:6;52638:14;52631:55;52514:179;:::o;52699:180::-;52839:32;52835:1;52827:6;52823:14;52816:56;52699:180;:::o;52885:182::-;53025:34;53021:1;53013:6;53009:14;53002:58;52885:182;:::o;53073:231::-;53213:34;53209:1;53201:6;53197:14;53190:58;53282:14;53277:2;53269:6;53265:15;53258:39;53073:231;:::o;53310:::-;53450:34;53446:1;53438:6;53434:14;53427:58;53519:14;53514:2;53506:6;53502:15;53495:39;53310:231;:::o;53547:169::-;53687:21;53683:1;53675:6;53671:14;53664:45;53547:169;:::o;53722:182::-;53862:34;53858:1;53850:6;53846:14;53839:58;53722:182;:::o;53910:228::-;54050:34;54046:1;54038:6;54034:14;54027:58;54119:11;54114:2;54106:6;54102:15;54095:36;53910:228;:::o;54144:182::-;54284:34;54280:1;54272:6;54268:14;54261:58;54144:182;:::o;54332:220::-;54472:34;54468:1;54460:6;54456:14;54449:58;54541:3;54536:2;54528:6;54524:15;54517:28;54332:220;:::o;54558:236::-;54698:34;54694:1;54686:6;54682:14;54675:58;54767:19;54762:2;54754:6;54750:15;54743:44;54558:236;:::o;54800:231::-;54940:34;54936:1;54928:6;54924:14;54917:58;55009:14;55004:2;54996:6;54992:15;54985:39;54800:231;:::o;55037:165::-;55177:17;55173:1;55165:6;55161:14;55154:41;55037:165;:::o;55208:179::-;55348:31;55344:1;55336:6;55332:14;55325:55;55208:179;:::o;55393:122::-;55466:24;55484:5;55466:24;:::i;:::-;55459:5;55456:35;55446:63;;55505:1;55502;55495:12;55446:63;55393:122;:::o;55521:116::-;55591:21;55606:5;55591:21;:::i;:::-;55584:5;55581:32;55571:60;;55627:1;55624;55617:12;55571:60;55521:116;:::o;55643:120::-;55715:23;55732:5;55715:23;:::i;:::-;55708:5;55705:34;55695:62;;55753:1;55750;55743:12;55695:62;55643:120;:::o;55769:122::-;55842:24;55860:5;55842:24;:::i;:::-;55835:5;55832:35;55822:63;;55881:1;55878;55871:12;55822:63;55769:122;:::o

Swarm Source

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