ETH Price: $3,511.08 (+4.59%)
Gas: 3 Gwei

Token

Animetas (ANMT)
 

Overview

Max Total Supply

10,101 ANMT

Holders

3,842

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
manifoldvault.eth
Balance
2 ANMT
0x54ace8d119c4bd7baf11f750c690e9667a80801a
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Animetas is a generative collection of 10101 unique 1/1 NFTs that live on the Ethereum Blockchain. The collection was designed by Gustavo Viselner and generated by cyberh49.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Animetas

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-07-30
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

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


pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}



pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

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



pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

/**
 * @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();
        string memory json = ".json";
        return bytes(baseURI).length > 0
            ? string(abi.encodePacked(baseURI, tokenId.toString(), json))
            : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    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` 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 { }
}

pragma solidity ^0.8.0;

/**
 * @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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

contract Animetas is ERC721Enumerable, Ownable {

    using Strings for uint256;

    string _baseTokenURI;
    uint256 private _reserved = 1860;
    uint256 private _price = 0.08 ether;
    bool public _paused = true;

    // withdraw addresses
    address t1 = 0xA422bfFF5dABa6eeeFAFf84Debf609Edf0868C5f;
    address t2 = 0xb5967DE6328290103614f74Da0C7fa5FcD9BF08A;

    // 10101 Animetas in total - 21 in binary
    constructor(string memory baseURI) ERC721("Animetas", "ANMT")  {
        setBaseURI(baseURI);

        // team gets the first 2 Animetas
        _safeMint( t1, 0);
        _safeMint( t2, 1);
    }

    function mint(uint256 num) public payable {
        uint256 supply = totalSupply();
        require( !_paused,                              "Sale paused" );
        require( num < 22,                              "You can mint a maximum of 25 Animetas" );
        require( supply + num < 10102 - _reserved,      "Exceeds maximum Animetas supply" );
        require( msg.value >= _price * num,             "Ether sent is not correct" );

        for(uint256 i; i < num; i++){
            _safeMint( msg.sender, supply + i );
        }
    }

    function walletOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    // Just in case Eth does some crazy stuff
    function setPrice(uint256 _newPrice) public onlyOwner() {
        _price = _newPrice;
    }

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

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

    function getPrice() public view returns (uint256){
        return _price;
    }

    function giveAway(address _to, uint256 _amount) external onlyOwner() {
        require( _amount <= _reserved, "Exceeds reserved Animetas supply" );

        uint256 supply = totalSupply();
        for(uint256 i; i < _amount; i++){
            _safeMint( _to, supply + i );
        }

        _reserved -= _amount;
    }

    function pause(bool val) public onlyOwner {
        _paused = val;
    }

    function withdrawAll() public payable onlyOwner {
        uint256 _each = address(this).balance / 2;
        require(payable(t1).send(_each));
        require(payable(t2).send(_each));
    }
    
    fallback() external payable { }
    
    receive() external payable { }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","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":"num","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052610744600c5567011c37937e080000600d556001600e60006101000a81548160ff02191690831515021790555073a422bfff5daba6eeefaff84debf609edf0868c5f600e60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073b5967de6328290103614f74da0c7fa5fcd9bf08a600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000e857600080fd5b50604051620057353803806200573583398181016040528101906200010e919062000f77565b6040518060400160405280600881526020017f416e696d657461730000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f414e4d540000000000000000000000000000000000000000000000000000000081525081600090805190602001906200019292919062000e12565b508060019080519060200190620001ab92919062000e12565b5050506000620001c0620002e160201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200027081620002e960201b60201c565b620002a5600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660006200039460201b60201c565b620002da600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200039460201b60201c565b506200156d565b600033905090565b620002f9620002e160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200031f620003ba60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000378576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036f9062001291565b60405180910390fd5b80600b90805190602001906200039092919062000e12565b5050565b620003b6828260405180602001604052806000815250620003e460201b60201c565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620003f683836200045260201b60201c565b6200040b60008484846200063860201b60201c565b6200044d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004449062001209565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620004c5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004bc906200126f565b60405180910390fd5b620004d681620007f260201b60201c565b1562000519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000510906200122b565b60405180910390fd5b6200052d600083836200085e60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200057f919062001347565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620006668473ffffffffffffffffffffffffffffffffffffffff16620009a560201b62001a5c1760201c565b15620007e5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000698620002e160201b60201c565b8786866040518563ffffffff1660e01b8152600401620006bc9493929190620011b5565b602060405180830381600087803b158015620006d757600080fd5b505af19250505080156200070b57506040513d601f19601f8201168201806040525081019062000708919062000f4b565b60015b62000794573d80600081146200073e576040519150601f19603f3d011682016040523d82523d6000602084013e62000743565b606091505b506000815114156200078c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007839062001209565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620007ea565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b62000876838383620009b860201b62001a6f1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620008c357620008bd81620009bd60201b60201c565b6200090b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146200090a5762000909838262000a0660201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200095857620009528162000b8360201b60201c565b620009a0565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200099f576200099e828262000ccb60201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000a208462000d5760201b62000e221760201c565b62000a2c9190620013a4565b905060006007600084815260200190815260200160002054905081811462000b12576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000b999190620013a4565b905060006009600084815260200190815260200160002054905060006008838154811062000bf0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811062000c39577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000caf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600062000ce38362000d5760201b62000e221760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000dcb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000dc2906200124d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000e20906200147f565b90600052602060002090601f01602090048101928262000e44576000855562000e90565b82601f1062000e5f57805160ff191683800117855562000e90565b8280016001018555821562000e90579182015b8281111562000e8f57825182559160200191906001019062000e72565b5b50905062000e9f919062000ea3565b5090565b5b8082111562000ebe57600081600090555060010162000ea4565b5090565b600062000ed962000ed384620012e7565b620012b3565b90508281526020810184848401111562000ef257600080fd5b62000eff84828562001449565b509392505050565b60008151905062000f188162001553565b92915050565b600082601f83011262000f3057600080fd5b815162000f4284826020860162000ec2565b91505092915050565b60006020828403121562000f5e57600080fd5b600062000f6e8482850162000f07565b91505092915050565b60006020828403121562000f8a57600080fd5b600082015167ffffffffffffffff81111562000fa557600080fd5b62000fb38482850162000f1e565b91505092915050565b62000fc781620013df565b82525050565b600062000fda826200131a565b62000fe6818562001325565b935062000ff881856020860162001449565b620010038162001542565b840191505092915050565b60006200101d60328362001336565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600062001085601c8362001336565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000620010c7602a8362001336565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006200112f60208362001336565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006200117160208362001336565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b620011af816200143f565b82525050565b6000608082019050620011cc600083018762000fbc565b620011db602083018662000fbc565b620011ea6040830185620011a4565b8181036060830152620011fe818462000fcd565b905095945050505050565b6000602082019050818103600083015262001224816200100e565b9050919050565b60006020820190508181036000830152620012468162001076565b9050919050565b600060208201905081810360008301526200126881620010b8565b9050919050565b600060208201905081810360008301526200128a8162001120565b9050919050565b60006020820190508181036000830152620012ac8162001162565b9050919050565b6000604051905081810181811067ffffffffffffffff82111715620012dd57620012dc62001513565b5b8060405250919050565b600067ffffffffffffffff82111562001305576200130462001513565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062001354826200143f565b915062001361836200143f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620013995762001398620014b5565b5b828201905092915050565b6000620013b1826200143f565b9150620013be836200143f565b925082821015620013d457620013d3620014b5565b5b828203905092915050565b6000620013ec826200141f565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620014695780820151818401526020810190506200144c565b8381111562001479576000848401525b50505050565b600060028204905060018216806200149857607f821691505b60208210811415620014af57620014ae620014e4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6200155e81620013f3565b81146200156a57600080fd5b50565b6141b8806200157d6000396000f3fe6080604052600436106101bb5760003560e01c806370a08231116100ec578063a0712d681161008a578063c87b56dd11610064578063c87b56dd146105f6578063ca80014414610633578063e985e9c51461065c578063f2fde38b14610699576101c2565b8063a0712d6814610588578063a22cb465146105a4578063b88d4fde146105cd576101c2565b80638da5cb5b116100c65780638da5cb5b146104de57806391b7f5ed1461050957806395d89b411461053257806398d5fdca1461055d576101c2565b806370a0823114610480578063715018a6146104bd578063853828b6146104d4576101c2565b806323b872dd11610159578063438b630011610133578063438b6300146103a05780634f6ccce7146103dd57806355f804b31461041a5780636352211e14610443576101c2565b806323b872dd146103115780632f745c591461033a57806342842e0e14610377576101c2565b8063081812fc11610195578063081812fc14610255578063095ea7b31461029257806316c61ccc146102bb57806318160ddd146102e6576101c2565b806301ffc9a7146101c457806302329a291461020157806306fdde031461022a576101c2565b366101c257005b005b3480156101d057600080fd5b506101eb60048036038101906101e69190612ed8565b6106c2565b6040516101f8919061399d565b60405180910390f35b34801561020d57600080fd5b5061022860048036038101906102239190612eaf565b61073c565b005b34801561023657600080fd5b5061023f6107d5565b60405161024c91906139b8565b60405180910390f35b34801561026157600080fd5b5061027c60048036038101906102779190612f6b565b610867565b6040516102899190613914565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612e73565b6108ec565b005b3480156102c757600080fd5b506102d0610a04565b6040516102dd919061399d565b60405180910390f35b3480156102f257600080fd5b506102fb610a17565b6040516103089190613cba565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190612d6d565b610a24565b005b34801561034657600080fd5b50610361600480360381019061035c9190612e73565b610a84565b60405161036e9190613cba565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190612d6d565b610b29565b005b3480156103ac57600080fd5b506103c760048036038101906103c29190612d08565b610b49565b6040516103d4919061397b565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff9190612f6b565b610c43565b6040516104119190613cba565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c9190612f2a565b610cda565b005b34801561044f57600080fd5b5061046a60048036038101906104659190612f6b565b610d70565b6040516104779190613914565b60405180910390f35b34801561048c57600080fd5b506104a760048036038101906104a29190612d08565b610e22565b6040516104b49190613cba565b60405180910390f35b3480156104c957600080fd5b506104d2610eda565b005b6104dc611017565b005b3480156104ea57600080fd5b506104f3611167565b6040516105009190613914565b60405180910390f35b34801561051557600080fd5b50610530600480360381019061052b9190612f6b565b611191565b005b34801561053e57600080fd5b50610547611217565b60405161055491906139b8565b60405180910390f35b34801561056957600080fd5b506105726112a9565b60405161057f9190613cba565b60405180910390f35b6105a2600480360381019061059d9190612f6b565b6112b3565b005b3480156105b057600080fd5b506105cb60048036038101906105c69190612e37565b611436565b005b3480156105d957600080fd5b506105f460048036038101906105ef9190612dbc565b6115b7565b005b34801561060257600080fd5b5061061d60048036038101906106189190612f6b565b611619565b60405161062a91906139b8565b60405180910390f35b34801561063f57600080fd5b5061065a60048036038101906106559190612e73565b6116fd565b005b34801561066857600080fd5b50610683600480360381019061067e9190612d31565b61181c565b604051610690919061399d565b60405180910390f35b3480156106a557600080fd5b506106c060048036038101906106bb9190612d08565b6118b0565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610735575061073482611a74565b5b9050919050565b610744611b56565b73ffffffffffffffffffffffffffffffffffffffff16610762611167565b73ffffffffffffffffffffffffffffffffffffffff16146107b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107af90613bda565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6060600080546107e490613fad565b80601f016020809104026020016040519081016040528092919081815260200182805461081090613fad565b801561085d5780601f106108325761010080835404028352916020019161085d565b820191906000526020600020905b81548152906001019060200180831161084057829003601f168201915b5050505050905090565b600061087282611b5e565b6108b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a890613bba565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f782610d70565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095f90613c3a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610987611b56565b73ffffffffffffffffffffffffffffffffffffffff1614806109b657506109b5816109b0611b56565b61181c565b5b6109f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ec90613b3a565b60405180910390fd5b6109ff8383611bca565b505050565b600e60009054906101000a900460ff1681565b6000600880549050905090565b610a35610a2f611b56565b82611c83565b610a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6b90613c7a565b60405180910390fd5b610a7f838383611d61565b505050565b6000610a8f83610e22565b8210610ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac7906139fa565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b44838383604051806020016040528060008152506115b7565b505050565b60606000610b5683610e22565b905060008167ffffffffffffffff811115610b9a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610bc85781602001602082028036833780820191505090505b50905060005b82811015610c3857610be08582610a84565b828281518110610c19577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610c3090613fdf565b915050610bce565b508092505050919050565b6000610c4d610a17565b8210610c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8590613c9a565b60405180910390fd5b60088281548110610cc8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610ce2611b56565b73ffffffffffffffffffffffffffffffffffffffff16610d00611167565b73ffffffffffffffffffffffffffffffffffffffff1614610d56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4d90613bda565b60405180910390fd5b80600b9080519060200190610d6c929190612b2c565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1090613b7a565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8a90613b5a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ee2611b56565b73ffffffffffffffffffffffffffffffffffffffff16610f00611167565b73ffffffffffffffffffffffffffffffffffffffff1614610f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4d90613bda565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61101f611b56565b73ffffffffffffffffffffffffffffffffffffffff1661103d611167565b73ffffffffffffffffffffffffffffffffffffffff1614611093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108a90613bda565b60405180910390fd5b60006002476110a29190613e38565b9050600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061110457600080fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061116457600080fd5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611199611b56565b73ffffffffffffffffffffffffffffffffffffffff166111b7611167565b73ffffffffffffffffffffffffffffffffffffffff161461120d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120490613bda565b60405180910390fd5b80600d8190555050565b60606001805461122690613fad565b80601f016020809104026020016040519081016040528092919081815260200182805461125290613fad565b801561129f5780601f106112745761010080835404028352916020019161129f565b820191906000526020600020905b81548152906001019060200180831161128257829003601f168201915b5050505050905090565b6000600d54905090565b60006112bd610a17565b9050600e60009054906101000a900460ff161561130f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611306906139da565b60405180910390fd5b60168210611352576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134990613b1a565b60405180910390fd5b600c546127766113629190613ec3565b828261136e9190613de2565b106113ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a590613ada565b60405180910390fd5b81600d546113bc9190613e69565b3410156113fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f590613c5a565b60405180910390fd5b60005b828110156114315761141e3382846114199190613de2565b611fbd565b808061142990613fdf565b915050611401565b505050565b61143e611b56565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a390613aba565b60405180910390fd5b80600560006114b9611b56565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611566611b56565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115ab919061399d565b60405180910390a35050565b6115c86115c2611b56565b83611c83565b611607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fe90613c7a565b60405180910390fd5b61161384848484611fdb565b50505050565b606061162482611b5e565b611663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165a90613c1a565b60405180910390fd5b600061166d612037565b905060006040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250905060008251116116c757604051806020016040528060008152506116f4565b816116d1856120c9565b826040516020016116e4939291906138e3565b6040516020818303038152906040525b92505050919050565b611705611b56565b73ffffffffffffffffffffffffffffffffffffffff16611723611167565b73ffffffffffffffffffffffffffffffffffffffff1614611779576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177090613bda565b60405180910390fd5b600c548111156117be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b590613a5a565b60405180910390fd5b60006117c8610a17565b905060005b828110156117fd576117ea8482846117e59190613de2565b611fbd565b80806117f590613fdf565b9150506117cd565b5081600c60008282546118109190613ec3565b92505081905550505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118b8611b56565b73ffffffffffffffffffffffffffffffffffffffff166118d6611167565b73ffffffffffffffffffffffffffffffffffffffff161461192c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192390613bda565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561199c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199390613a3a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b3f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b4f5750611b4e82612276565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c3d83610d70565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611c8e82611b5e565b611ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc490613afa565b60405180910390fd5b6000611cd883610d70565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d4757508373ffffffffffffffffffffffffffffffffffffffff16611d2f84610867565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d585750611d57818561181c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d8182610d70565b73ffffffffffffffffffffffffffffffffffffffff1614611dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dce90613bfa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3e90613a9a565b60405180910390fd5b611e528383836122e0565b611e5d600082611bca565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ead9190613ec3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f049190613de2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611fd78282604051806020016040528060008152506123f4565b5050565b611fe6848484611d61565b611ff28484848461244f565b612031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202890613a1a565b60405180910390fd5b50505050565b6060600b805461204690613fad565b80601f016020809104026020016040519081016040528092919081815260200182805461207290613fad565b80156120bf5780601f10612094576101008083540402835291602001916120bf565b820191906000526020600020905b8154815290600101906020018083116120a257829003601f168201915b5050505050905090565b60606000821415612111576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612271565b600082905060005b6000821461214357808061212c90613fdf565b915050600a8261213c9190613e38565b9150612119565b60008167ffffffffffffffff811115612185577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156121b75781602001600182028036833780820191505090505b5090505b6000851461226a576001826121d09190613ec3565b9150600a856121df9190614028565b60306121eb9190613de2565b60f81b818381518110612227577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122639190613e38565b94506121bb565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6122eb838383611a6f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561232e57612329816125e6565b61236d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461236c5761236b838261262f565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123b0576123ab8161279c565b6123ef565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146123ee576123ed82826128df565b5b5b505050565b6123fe838361295e565b61240b600084848461244f565b61244a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244190613a1a565b60405180910390fd5b505050565b60006124708473ffffffffffffffffffffffffffffffffffffffff16611a5c565b156125d9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612499611b56565b8786866040518563ffffffff1660e01b81526004016124bb949392919061392f565b602060405180830381600087803b1580156124d557600080fd5b505af192505050801561250657506040513d601f19601f820116820180604052508101906125039190612f01565b60015b612589573d8060008114612536576040519150601f19603f3d011682016040523d82523d6000602084013e61253b565b606091505b50600081511415612581576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257890613a1a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125de565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161263c84610e22565b6126469190613ec3565b905060006007600084815260200190815260200160002054905081811461272b576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506127b09190613ec3565b9050600060096000848152602001908152602001600020549050600060088381548110612806577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061284e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806128c3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006128ea83610e22565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c590613b9a565b60405180910390fd5b6129d781611b5e565b15612a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0e90613a7a565b60405180910390fd5b612a23600083836122e0565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a739190613de2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612b3890613fad565b90600052602060002090601f016020900481019282612b5a5760008555612ba1565b82601f10612b7357805160ff1916838001178555612ba1565b82800160010185558215612ba1579182015b82811115612ba0578251825591602001919060010190612b85565b5b509050612bae9190612bb2565b5090565b5b80821115612bcb576000816000905550600101612bb3565b5090565b6000612be2612bdd84613d06565b613cd5565b905082815260208101848484011115612bfa57600080fd5b612c05848285613f6b565b509392505050565b6000612c20612c1b84613d36565b613cd5565b905082815260208101848484011115612c3857600080fd5b612c43848285613f6b565b509392505050565b600081359050612c5a81614126565b92915050565b600081359050612c6f8161413d565b92915050565b600081359050612c8481614154565b92915050565b600081519050612c9981614154565b92915050565b600082601f830112612cb057600080fd5b8135612cc0848260208601612bcf565b91505092915050565b600082601f830112612cda57600080fd5b8135612cea848260208601612c0d565b91505092915050565b600081359050612d028161416b565b92915050565b600060208284031215612d1a57600080fd5b6000612d2884828501612c4b565b91505092915050565b60008060408385031215612d4457600080fd5b6000612d5285828601612c4b565b9250506020612d6385828601612c4b565b9150509250929050565b600080600060608486031215612d8257600080fd5b6000612d9086828701612c4b565b9350506020612da186828701612c4b565b9250506040612db286828701612cf3565b9150509250925092565b60008060008060808587031215612dd257600080fd5b6000612de087828801612c4b565b9450506020612df187828801612c4b565b9350506040612e0287828801612cf3565b925050606085013567ffffffffffffffff811115612e1f57600080fd5b612e2b87828801612c9f565b91505092959194509250565b60008060408385031215612e4a57600080fd5b6000612e5885828601612c4b565b9250506020612e6985828601612c60565b9150509250929050565b60008060408385031215612e8657600080fd5b6000612e9485828601612c4b565b9250506020612ea585828601612cf3565b9150509250929050565b600060208284031215612ec157600080fd5b6000612ecf84828501612c60565b91505092915050565b600060208284031215612eea57600080fd5b6000612ef884828501612c75565b91505092915050565b600060208284031215612f1357600080fd5b6000612f2184828501612c8a565b91505092915050565b600060208284031215612f3c57600080fd5b600082013567ffffffffffffffff811115612f5657600080fd5b612f6284828501612cc9565b91505092915050565b600060208284031215612f7d57600080fd5b6000612f8b84828501612cf3565b91505092915050565b6000612fa083836138c5565b60208301905092915050565b612fb581613ef7565b82525050565b6000612fc682613d76565b612fd08185613da4565b9350612fdb83613d66565b8060005b8381101561300c578151612ff38882612f94565b9750612ffe83613d97565b925050600181019050612fdf565b5085935050505092915050565b61302281613f09565b82525050565b600061303382613d81565b61303d8185613db5565b935061304d818560208601613f7a565b61305681614115565b840191505092915050565b600061306c82613d8c565b6130768185613dc6565b9350613086818560208601613f7a565b61308f81614115565b840191505092915050565b60006130a582613d8c565b6130af8185613dd7565b93506130bf818560208601613f7a565b80840191505092915050565b60006130d8600b83613dc6565b91507f53616c65207061757365640000000000000000000000000000000000000000006000830152602082019050919050565b6000613118602b83613dc6565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b600061317e603283613dc6565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006131e4602683613dc6565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061324a602083613dc6565b91507f4578636565647320726573657276656420416e696d6574617320737570706c796000830152602082019050919050565b600061328a601c83613dc6565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006132ca602483613dc6565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613330601983613dc6565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613370601f83613dc6565b91507f45786365656473206d6178696d756d20416e696d6574617320737570706c79006000830152602082019050919050565b60006133b0602c83613dc6565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613416602583613dc6565b91507f596f752063616e206d696e742061206d6178696d756d206f6620323520416e6960008301527f6d657461730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061347c603883613dc6565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006134e2602a83613dc6565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613548602983613dc6565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006135ae602083613dc6565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006135ee602c83613dc6565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613654602083613dc6565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613694602983613dc6565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006136fa602f83613dc6565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613760602183613dc6565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137c6601983613dc6565b91507f45746865722073656e74206973206e6f7420636f7272656374000000000000006000830152602082019050919050565b6000613806603183613dc6565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061386c602c83613dc6565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6138ce81613f61565b82525050565b6138dd81613f61565b82525050565b60006138ef828661309a565b91506138fb828561309a565b9150613907828461309a565b9150819050949350505050565b60006020820190506139296000830184612fac565b92915050565b60006080820190506139446000830187612fac565b6139516020830186612fac565b61395e60408301856138d4565b81810360608301526139708184613028565b905095945050505050565b600060208201905081810360008301526139958184612fbb565b905092915050565b60006020820190506139b26000830184613019565b92915050565b600060208201905081810360008301526139d28184613061565b905092915050565b600060208201905081810360008301526139f3816130cb565b9050919050565b60006020820190508181036000830152613a138161310b565b9050919050565b60006020820190508181036000830152613a3381613171565b9050919050565b60006020820190508181036000830152613a53816131d7565b9050919050565b60006020820190508181036000830152613a738161323d565b9050919050565b60006020820190508181036000830152613a938161327d565b9050919050565b60006020820190508181036000830152613ab3816132bd565b9050919050565b60006020820190508181036000830152613ad381613323565b9050919050565b60006020820190508181036000830152613af381613363565b9050919050565b60006020820190508181036000830152613b13816133a3565b9050919050565b60006020820190508181036000830152613b3381613409565b9050919050565b60006020820190508181036000830152613b538161346f565b9050919050565b60006020820190508181036000830152613b73816134d5565b9050919050565b60006020820190508181036000830152613b938161353b565b9050919050565b60006020820190508181036000830152613bb3816135a1565b9050919050565b60006020820190508181036000830152613bd3816135e1565b9050919050565b60006020820190508181036000830152613bf381613647565b9050919050565b60006020820190508181036000830152613c1381613687565b9050919050565b60006020820190508181036000830152613c33816136ed565b9050919050565b60006020820190508181036000830152613c5381613753565b9050919050565b60006020820190508181036000830152613c73816137b9565b9050919050565b60006020820190508181036000830152613c93816137f9565b9050919050565b60006020820190508181036000830152613cb38161385f565b9050919050565b6000602082019050613ccf60008301846138d4565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613cfc57613cfb6140e6565b5b8060405250919050565b600067ffffffffffffffff821115613d2157613d206140e6565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613d5157613d506140e6565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ded82613f61565b9150613df883613f61565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e2d57613e2c614059565b5b828201905092915050565b6000613e4382613f61565b9150613e4e83613f61565b925082613e5e57613e5d614088565b5b828204905092915050565b6000613e7482613f61565b9150613e7f83613f61565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613eb857613eb7614059565b5b828202905092915050565b6000613ece82613f61565b9150613ed983613f61565b925082821015613eec57613eeb614059565b5b828203905092915050565b6000613f0282613f41565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f98578082015181840152602081019050613f7d565b83811115613fa7576000848401525b50505050565b60006002820490506001821680613fc557607f821691505b60208210811415613fd957613fd86140b7565b5b50919050565b6000613fea82613f61565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561401d5761401c614059565b5b600182019050919050565b600061403382613f61565b915061403e83613f61565b92508261404e5761404d614088565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61412f81613ef7565b811461413a57600080fd5b50565b61414681613f09565b811461415157600080fd5b50565b61415d81613f15565b811461416857600080fd5b50565b61417481613f61565b811461417f57600080fd5b5056fea264697066735822122032349a38d6236810e2df503f11fb13f70433a9ffbb58c58db33985c8613ba95d64736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101bb5760003560e01c806370a08231116100ec578063a0712d681161008a578063c87b56dd11610064578063c87b56dd146105f6578063ca80014414610633578063e985e9c51461065c578063f2fde38b14610699576101c2565b8063a0712d6814610588578063a22cb465146105a4578063b88d4fde146105cd576101c2565b80638da5cb5b116100c65780638da5cb5b146104de57806391b7f5ed1461050957806395d89b411461053257806398d5fdca1461055d576101c2565b806370a0823114610480578063715018a6146104bd578063853828b6146104d4576101c2565b806323b872dd11610159578063438b630011610133578063438b6300146103a05780634f6ccce7146103dd57806355f804b31461041a5780636352211e14610443576101c2565b806323b872dd146103115780632f745c591461033a57806342842e0e14610377576101c2565b8063081812fc11610195578063081812fc14610255578063095ea7b31461029257806316c61ccc146102bb57806318160ddd146102e6576101c2565b806301ffc9a7146101c457806302329a291461020157806306fdde031461022a576101c2565b366101c257005b005b3480156101d057600080fd5b506101eb60048036038101906101e69190612ed8565b6106c2565b6040516101f8919061399d565b60405180910390f35b34801561020d57600080fd5b5061022860048036038101906102239190612eaf565b61073c565b005b34801561023657600080fd5b5061023f6107d5565b60405161024c91906139b8565b60405180910390f35b34801561026157600080fd5b5061027c60048036038101906102779190612f6b565b610867565b6040516102899190613914565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612e73565b6108ec565b005b3480156102c757600080fd5b506102d0610a04565b6040516102dd919061399d565b60405180910390f35b3480156102f257600080fd5b506102fb610a17565b6040516103089190613cba565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190612d6d565b610a24565b005b34801561034657600080fd5b50610361600480360381019061035c9190612e73565b610a84565b60405161036e9190613cba565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190612d6d565b610b29565b005b3480156103ac57600080fd5b506103c760048036038101906103c29190612d08565b610b49565b6040516103d4919061397b565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff9190612f6b565b610c43565b6040516104119190613cba565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c9190612f2a565b610cda565b005b34801561044f57600080fd5b5061046a60048036038101906104659190612f6b565b610d70565b6040516104779190613914565b60405180910390f35b34801561048c57600080fd5b506104a760048036038101906104a29190612d08565b610e22565b6040516104b49190613cba565b60405180910390f35b3480156104c957600080fd5b506104d2610eda565b005b6104dc611017565b005b3480156104ea57600080fd5b506104f3611167565b6040516105009190613914565b60405180910390f35b34801561051557600080fd5b50610530600480360381019061052b9190612f6b565b611191565b005b34801561053e57600080fd5b50610547611217565b60405161055491906139b8565b60405180910390f35b34801561056957600080fd5b506105726112a9565b60405161057f9190613cba565b60405180910390f35b6105a2600480360381019061059d9190612f6b565b6112b3565b005b3480156105b057600080fd5b506105cb60048036038101906105c69190612e37565b611436565b005b3480156105d957600080fd5b506105f460048036038101906105ef9190612dbc565b6115b7565b005b34801561060257600080fd5b5061061d60048036038101906106189190612f6b565b611619565b60405161062a91906139b8565b60405180910390f35b34801561063f57600080fd5b5061065a60048036038101906106559190612e73565b6116fd565b005b34801561066857600080fd5b50610683600480360381019061067e9190612d31565b61181c565b604051610690919061399d565b60405180910390f35b3480156106a557600080fd5b506106c060048036038101906106bb9190612d08565b6118b0565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610735575061073482611a74565b5b9050919050565b610744611b56565b73ffffffffffffffffffffffffffffffffffffffff16610762611167565b73ffffffffffffffffffffffffffffffffffffffff16146107b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107af90613bda565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6060600080546107e490613fad565b80601f016020809104026020016040519081016040528092919081815260200182805461081090613fad565b801561085d5780601f106108325761010080835404028352916020019161085d565b820191906000526020600020905b81548152906001019060200180831161084057829003601f168201915b5050505050905090565b600061087282611b5e565b6108b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a890613bba565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f782610d70565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095f90613c3a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610987611b56565b73ffffffffffffffffffffffffffffffffffffffff1614806109b657506109b5816109b0611b56565b61181c565b5b6109f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ec90613b3a565b60405180910390fd5b6109ff8383611bca565b505050565b600e60009054906101000a900460ff1681565b6000600880549050905090565b610a35610a2f611b56565b82611c83565b610a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6b90613c7a565b60405180910390fd5b610a7f838383611d61565b505050565b6000610a8f83610e22565b8210610ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac7906139fa565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b44838383604051806020016040528060008152506115b7565b505050565b60606000610b5683610e22565b905060008167ffffffffffffffff811115610b9a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610bc85781602001602082028036833780820191505090505b50905060005b82811015610c3857610be08582610a84565b828281518110610c19577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610c3090613fdf565b915050610bce565b508092505050919050565b6000610c4d610a17565b8210610c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8590613c9a565b60405180910390fd5b60088281548110610cc8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610ce2611b56565b73ffffffffffffffffffffffffffffffffffffffff16610d00611167565b73ffffffffffffffffffffffffffffffffffffffff1614610d56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4d90613bda565b60405180910390fd5b80600b9080519060200190610d6c929190612b2c565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1090613b7a565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8a90613b5a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ee2611b56565b73ffffffffffffffffffffffffffffffffffffffff16610f00611167565b73ffffffffffffffffffffffffffffffffffffffff1614610f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4d90613bda565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61101f611b56565b73ffffffffffffffffffffffffffffffffffffffff1661103d611167565b73ffffffffffffffffffffffffffffffffffffffff1614611093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108a90613bda565b60405180910390fd5b60006002476110a29190613e38565b9050600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061110457600080fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061116457600080fd5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611199611b56565b73ffffffffffffffffffffffffffffffffffffffff166111b7611167565b73ffffffffffffffffffffffffffffffffffffffff161461120d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120490613bda565b60405180910390fd5b80600d8190555050565b60606001805461122690613fad565b80601f016020809104026020016040519081016040528092919081815260200182805461125290613fad565b801561129f5780601f106112745761010080835404028352916020019161129f565b820191906000526020600020905b81548152906001019060200180831161128257829003601f168201915b5050505050905090565b6000600d54905090565b60006112bd610a17565b9050600e60009054906101000a900460ff161561130f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611306906139da565b60405180910390fd5b60168210611352576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134990613b1a565b60405180910390fd5b600c546127766113629190613ec3565b828261136e9190613de2565b106113ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a590613ada565b60405180910390fd5b81600d546113bc9190613e69565b3410156113fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f590613c5a565b60405180910390fd5b60005b828110156114315761141e3382846114199190613de2565b611fbd565b808061142990613fdf565b915050611401565b505050565b61143e611b56565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a390613aba565b60405180910390fd5b80600560006114b9611b56565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611566611b56565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115ab919061399d565b60405180910390a35050565b6115c86115c2611b56565b83611c83565b611607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fe90613c7a565b60405180910390fd5b61161384848484611fdb565b50505050565b606061162482611b5e565b611663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165a90613c1a565b60405180910390fd5b600061166d612037565b905060006040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250905060008251116116c757604051806020016040528060008152506116f4565b816116d1856120c9565b826040516020016116e4939291906138e3565b6040516020818303038152906040525b92505050919050565b611705611b56565b73ffffffffffffffffffffffffffffffffffffffff16611723611167565b73ffffffffffffffffffffffffffffffffffffffff1614611779576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177090613bda565b60405180910390fd5b600c548111156117be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b590613a5a565b60405180910390fd5b60006117c8610a17565b905060005b828110156117fd576117ea8482846117e59190613de2565b611fbd565b80806117f590613fdf565b9150506117cd565b5081600c60008282546118109190613ec3565b92505081905550505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118b8611b56565b73ffffffffffffffffffffffffffffffffffffffff166118d6611167565b73ffffffffffffffffffffffffffffffffffffffff161461192c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192390613bda565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561199c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199390613a3a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b3f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b4f5750611b4e82612276565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c3d83610d70565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611c8e82611b5e565b611ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc490613afa565b60405180910390fd5b6000611cd883610d70565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d4757508373ffffffffffffffffffffffffffffffffffffffff16611d2f84610867565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d585750611d57818561181c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d8182610d70565b73ffffffffffffffffffffffffffffffffffffffff1614611dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dce90613bfa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3e90613a9a565b60405180910390fd5b611e528383836122e0565b611e5d600082611bca565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ead9190613ec3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f049190613de2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611fd78282604051806020016040528060008152506123f4565b5050565b611fe6848484611d61565b611ff28484848461244f565b612031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202890613a1a565b60405180910390fd5b50505050565b6060600b805461204690613fad565b80601f016020809104026020016040519081016040528092919081815260200182805461207290613fad565b80156120bf5780601f10612094576101008083540402835291602001916120bf565b820191906000526020600020905b8154815290600101906020018083116120a257829003601f168201915b5050505050905090565b60606000821415612111576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612271565b600082905060005b6000821461214357808061212c90613fdf565b915050600a8261213c9190613e38565b9150612119565b60008167ffffffffffffffff811115612185577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156121b75781602001600182028036833780820191505090505b5090505b6000851461226a576001826121d09190613ec3565b9150600a856121df9190614028565b60306121eb9190613de2565b60f81b818381518110612227577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122639190613e38565b94506121bb565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6122eb838383611a6f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561232e57612329816125e6565b61236d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461236c5761236b838261262f565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123b0576123ab8161279c565b6123ef565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146123ee576123ed82826128df565b5b5b505050565b6123fe838361295e565b61240b600084848461244f565b61244a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244190613a1a565b60405180910390fd5b505050565b60006124708473ffffffffffffffffffffffffffffffffffffffff16611a5c565b156125d9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612499611b56565b8786866040518563ffffffff1660e01b81526004016124bb949392919061392f565b602060405180830381600087803b1580156124d557600080fd5b505af192505050801561250657506040513d601f19601f820116820180604052508101906125039190612f01565b60015b612589573d8060008114612536576040519150601f19603f3d011682016040523d82523d6000602084013e61253b565b606091505b50600081511415612581576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257890613a1a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125de565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161263c84610e22565b6126469190613ec3565b905060006007600084815260200190815260200160002054905081811461272b576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506127b09190613ec3565b9050600060096000848152602001908152602001600020549050600060088381548110612806577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061284e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806128c3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006128ea83610e22565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c590613b9a565b60405180910390fd5b6129d781611b5e565b15612a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0e90613a7a565b60405180910390fd5b612a23600083836122e0565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a739190613de2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612b3890613fad565b90600052602060002090601f016020900481019282612b5a5760008555612ba1565b82601f10612b7357805160ff1916838001178555612ba1565b82800160010185558215612ba1579182015b82811115612ba0578251825591602001919060010190612b85565b5b509050612bae9190612bb2565b5090565b5b80821115612bcb576000816000905550600101612bb3565b5090565b6000612be2612bdd84613d06565b613cd5565b905082815260208101848484011115612bfa57600080fd5b612c05848285613f6b565b509392505050565b6000612c20612c1b84613d36565b613cd5565b905082815260208101848484011115612c3857600080fd5b612c43848285613f6b565b509392505050565b600081359050612c5a81614126565b92915050565b600081359050612c6f8161413d565b92915050565b600081359050612c8481614154565b92915050565b600081519050612c9981614154565b92915050565b600082601f830112612cb057600080fd5b8135612cc0848260208601612bcf565b91505092915050565b600082601f830112612cda57600080fd5b8135612cea848260208601612c0d565b91505092915050565b600081359050612d028161416b565b92915050565b600060208284031215612d1a57600080fd5b6000612d2884828501612c4b565b91505092915050565b60008060408385031215612d4457600080fd5b6000612d5285828601612c4b565b9250506020612d6385828601612c4b565b9150509250929050565b600080600060608486031215612d8257600080fd5b6000612d9086828701612c4b565b9350506020612da186828701612c4b565b9250506040612db286828701612cf3565b9150509250925092565b60008060008060808587031215612dd257600080fd5b6000612de087828801612c4b565b9450506020612df187828801612c4b565b9350506040612e0287828801612cf3565b925050606085013567ffffffffffffffff811115612e1f57600080fd5b612e2b87828801612c9f565b91505092959194509250565b60008060408385031215612e4a57600080fd5b6000612e5885828601612c4b565b9250506020612e6985828601612c60565b9150509250929050565b60008060408385031215612e8657600080fd5b6000612e9485828601612c4b565b9250506020612ea585828601612cf3565b9150509250929050565b600060208284031215612ec157600080fd5b6000612ecf84828501612c60565b91505092915050565b600060208284031215612eea57600080fd5b6000612ef884828501612c75565b91505092915050565b600060208284031215612f1357600080fd5b6000612f2184828501612c8a565b91505092915050565b600060208284031215612f3c57600080fd5b600082013567ffffffffffffffff811115612f5657600080fd5b612f6284828501612cc9565b91505092915050565b600060208284031215612f7d57600080fd5b6000612f8b84828501612cf3565b91505092915050565b6000612fa083836138c5565b60208301905092915050565b612fb581613ef7565b82525050565b6000612fc682613d76565b612fd08185613da4565b9350612fdb83613d66565b8060005b8381101561300c578151612ff38882612f94565b9750612ffe83613d97565b925050600181019050612fdf565b5085935050505092915050565b61302281613f09565b82525050565b600061303382613d81565b61303d8185613db5565b935061304d818560208601613f7a565b61305681614115565b840191505092915050565b600061306c82613d8c565b6130768185613dc6565b9350613086818560208601613f7a565b61308f81614115565b840191505092915050565b60006130a582613d8c565b6130af8185613dd7565b93506130bf818560208601613f7a565b80840191505092915050565b60006130d8600b83613dc6565b91507f53616c65207061757365640000000000000000000000000000000000000000006000830152602082019050919050565b6000613118602b83613dc6565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b600061317e603283613dc6565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006131e4602683613dc6565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061324a602083613dc6565b91507f4578636565647320726573657276656420416e696d6574617320737570706c796000830152602082019050919050565b600061328a601c83613dc6565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006132ca602483613dc6565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613330601983613dc6565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613370601f83613dc6565b91507f45786365656473206d6178696d756d20416e696d6574617320737570706c79006000830152602082019050919050565b60006133b0602c83613dc6565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613416602583613dc6565b91507f596f752063616e206d696e742061206d6178696d756d206f6620323520416e6960008301527f6d657461730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061347c603883613dc6565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006134e2602a83613dc6565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613548602983613dc6565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006135ae602083613dc6565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006135ee602c83613dc6565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613654602083613dc6565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613694602983613dc6565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006136fa602f83613dc6565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613760602183613dc6565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137c6601983613dc6565b91507f45746865722073656e74206973206e6f7420636f7272656374000000000000006000830152602082019050919050565b6000613806603183613dc6565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061386c602c83613dc6565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6138ce81613f61565b82525050565b6138dd81613f61565b82525050565b60006138ef828661309a565b91506138fb828561309a565b9150613907828461309a565b9150819050949350505050565b60006020820190506139296000830184612fac565b92915050565b60006080820190506139446000830187612fac565b6139516020830186612fac565b61395e60408301856138d4565b81810360608301526139708184613028565b905095945050505050565b600060208201905081810360008301526139958184612fbb565b905092915050565b60006020820190506139b26000830184613019565b92915050565b600060208201905081810360008301526139d28184613061565b905092915050565b600060208201905081810360008301526139f3816130cb565b9050919050565b60006020820190508181036000830152613a138161310b565b9050919050565b60006020820190508181036000830152613a3381613171565b9050919050565b60006020820190508181036000830152613a53816131d7565b9050919050565b60006020820190508181036000830152613a738161323d565b9050919050565b60006020820190508181036000830152613a938161327d565b9050919050565b60006020820190508181036000830152613ab3816132bd565b9050919050565b60006020820190508181036000830152613ad381613323565b9050919050565b60006020820190508181036000830152613af381613363565b9050919050565b60006020820190508181036000830152613b13816133a3565b9050919050565b60006020820190508181036000830152613b3381613409565b9050919050565b60006020820190508181036000830152613b538161346f565b9050919050565b60006020820190508181036000830152613b73816134d5565b9050919050565b60006020820190508181036000830152613b938161353b565b9050919050565b60006020820190508181036000830152613bb3816135a1565b9050919050565b60006020820190508181036000830152613bd3816135e1565b9050919050565b60006020820190508181036000830152613bf381613647565b9050919050565b60006020820190508181036000830152613c1381613687565b9050919050565b60006020820190508181036000830152613c33816136ed565b9050919050565b60006020820190508181036000830152613c5381613753565b9050919050565b60006020820190508181036000830152613c73816137b9565b9050919050565b60006020820190508181036000830152613c93816137f9565b9050919050565b60006020820190508181036000830152613cb38161385f565b9050919050565b6000602082019050613ccf60008301846138d4565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613cfc57613cfb6140e6565b5b8060405250919050565b600067ffffffffffffffff821115613d2157613d206140e6565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613d5157613d506140e6565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ded82613f61565b9150613df883613f61565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e2d57613e2c614059565b5b828201905092915050565b6000613e4382613f61565b9150613e4e83613f61565b925082613e5e57613e5d614088565b5b828204905092915050565b6000613e7482613f61565b9150613e7f83613f61565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613eb857613eb7614059565b5b828202905092915050565b6000613ece82613f61565b9150613ed983613f61565b925082821015613eec57613eeb614059565b5b828203905092915050565b6000613f0282613f41565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f98578082015181840152602081019050613f7d565b83811115613fa7576000848401525b50505050565b60006002820490506001821680613fc557607f821691505b60208210811415613fd957613fd86140b7565b5b50919050565b6000613fea82613f61565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561401d5761401c614059565b5b600182019050919050565b600061403382613f61565b915061403e83613f61565b92508261404e5761404d614088565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61412f81613ef7565b811461413a57600080fd5b50565b61414681613f09565b811461415157600080fd5b50565b61415d81613f15565b811461416857600080fd5b50565b61417481613f61565b811461417f57600080fd5b5056fea264697066735822122032349a38d6236810e2df503f11fb13f70433a9ffbb58c58db33985c8613ba95d64736f6c63430008000033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

42076:2719:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35922:237;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44431:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21924:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23429:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22966:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42274:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36575:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24319:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36243:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24695:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43276:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36765:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43896:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21618:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21348:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34527:148;;;;;;;;;;;;;:::i;:::-;;44513:194;;;:::i;:::-;;33876:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43673:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22093:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44006:81;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42719:549;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23722:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24917:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22268:405;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44095:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24088:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34830:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35922:237;36024:4;36063:35;36048:50;;;:11;:50;;;;:103;;;;36115:36;36139:11;36115:23;:36::i;:::-;36048:103;36041:110;;35922:237;;;:::o;44431:74::-;34107:12;:10;:12::i;:::-;34096:23;;:7;:5;:7::i;:::-;:23;;;34088:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44494:3:::1;44484:7;;:13;;;;;;;;;;;;;;;;;;44431:74:::0;:::o;21924:100::-;21978:13;22011:5;22004:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21924:100;:::o;23429:221::-;23505:7;23533:16;23541:7;23533;:16::i;:::-;23525:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23618:15;:24;23634:7;23618:24;;;;;;;;;;;;;;;;;;;;;23611:31;;23429:221;;;:::o;22966:397::-;23047:13;23063:23;23078:7;23063:14;:23::i;:::-;23047:39;;23111:5;23105:11;;:2;:11;;;;23097:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23191:5;23175:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23200:37;23217:5;23224:12;:10;:12::i;:::-;23200:16;:37::i;:::-;23175:62;23167:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;23334:21;23343:2;23347:7;23334:8;:21::i;:::-;22966:397;;;:::o;42274:26::-;;;;;;;;;;;;;:::o;36575:113::-;36636:7;36663:10;:17;;;;36656:24;;36575:113;:::o;24319:305::-;24480:41;24499:12;:10;:12::i;:::-;24513:7;24480:18;:41::i;:::-;24472:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24588:28;24598:4;24604:2;24608:7;24588:9;:28::i;:::-;24319:305;;;:::o;36243:256::-;36340:7;36376:23;36393:5;36376:16;:23::i;:::-;36368:5;:31;36360:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;36465:12;:19;36478:5;36465:19;;;;;;;;;;;;;;;:26;36485:5;36465:26;;;;;;;;;;;;36458:33;;36243:256;;;;:::o;24695:151::-;24799:39;24816:4;24822:2;24826:7;24799:39;;;;;;;;;;;;:16;:39::i;:::-;24695:151;;;:::o;43276:342::-;43335:16;43364:18;43385:17;43395:6;43385:9;:17::i;:::-;43364:38;;43415:25;43457:10;43443:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43415:53;;43483:9;43479:106;43498:10;43494:1;:14;43479:106;;;43543:30;43563:6;43571:1;43543:19;:30::i;:::-;43529:8;43538:1;43529:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;43510:3;;;;;:::i;:::-;;;;43479:106;;;;43602:8;43595:15;;;;43276:342;;;:::o;36765:233::-;36840:7;36876:30;:28;:30::i;:::-;36868:5;:38;36860:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;36973:10;36984:5;36973:17;;;;;;;;;;;;;;;;;;;;;;;;36966:24;;36765:233;;;:::o;43896:102::-;34107:12;:10;:12::i;:::-;34096:23;;:7;:5;:7::i;:::-;:23;;;34088:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43983:7:::1;43967:13;:23;;;;;;;;;;;;:::i;:::-;;43896:102:::0;:::o;21618:239::-;21690:7;21710:13;21726:7;:16;21734:7;21726:16;;;;;;;;;;;;;;;;;;;;;21710:32;;21778:1;21761:19;;:5;:19;;;;21753:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21844:5;21837:12;;;21618:239;;;:::o;21348:208::-;21420:7;21465:1;21448:19;;:5;:19;;;;21440:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21532:9;:16;21542:5;21532:16;;;;;;;;;;;;;;;;21525:23;;21348:208;;;:::o;34527:148::-;34107:12;:10;:12::i;:::-;34096:23;;:7;:5;:7::i;:::-;:23;;;34088:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34634:1:::1;34597:40;;34618:6;;;;;;;;;;;34597:40;;;;;;;;;;;;34665:1;34648:6;;:19;;;;;;;;;;;;;;;;;;34527:148::o:0;44513:194::-;34107:12;:10;:12::i;:::-;34096:23;;:7;:5;:7::i;:::-;:23;;;34088:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44572:13:::1;44612:1;44588:21;:25;;;;:::i;:::-;44572:41;;44640:2;;;;;;;;;;;44632:16;;:23;44649:5;44632:23;;;;;;;;;;;;;;;;;;;;;;;44624:32;;;::::0;::::1;;44683:2;;;;;;;;;;;44675:16;;:23;44692:5;44675:23;;;;;;;;;;;;;;;;;;;;;;;44667:32;;;::::0;::::1;;34167:1;44513:194::o:0;33876:87::-;33922:7;33949:6;;;;;;;;;;;33942:13;;33876:87;:::o;43673:93::-;34107:12;:10;:12::i;:::-;34096:23;;:7;:5;:7::i;:::-;:23;;;34088:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43749:9:::1;43740:6;:18;;;;43673:93:::0;:::o;22093:104::-;22149:13;22182:7;22175:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22093:104;:::o;44006:81::-;44047:7;44073:6;;44066:13;;44006:81;:::o;42719:549::-;42772:14;42789:13;:11;:13::i;:::-;42772:30;;42823:7;;;;;;;;;;;42822:8;42813:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;42902:2;42896:3;:8;42887:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;43019:9;;43011:5;:17;;;;:::i;:::-;43005:3;42996:6;:12;;;;:::i;:::-;:32;42987:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;43112:3;43103:6;;:12;;;;:::i;:::-;43090:9;:25;;43081:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;43175:9;43171:90;43190:3;43186:1;:7;43171:90;;;43214:35;43225:10;43246:1;43237:6;:10;;;;:::i;:::-;43214:9;:35::i;:::-;43195:3;;;;;:::i;:::-;;;;43171:90;;;;42719:549;;:::o;23722:295::-;23837:12;:10;:12::i;:::-;23825:24;;:8;:24;;;;23817:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23937:8;23892:18;:32;23911:12;:10;:12::i;:::-;23892:32;;;;;;;;;;;;;;;:42;23925:8;23892:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23990:8;23961:48;;23976:12;:10;:12::i;:::-;23961:48;;;24000:8;23961:48;;;;;;:::i;:::-;;;;;;;;23722:295;;:::o;24917:285::-;25049:41;25068:12;:10;:12::i;:::-;25082:7;25049:18;:41::i;:::-;25041:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25155:39;25169:4;25175:2;25179:7;25188:5;25155:13;:39::i;:::-;24917:285;;;;:::o;22268:405::-;22341:13;22375:16;22383:7;22375;:16::i;:::-;22367:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22456:21;22480:10;:8;:10::i;:::-;22456:34;;22501:18;:28;;;;;;;;;;;;;;;;;;;22571:1;22553:7;22547:21;:25;:118;;;;;;;;;;;;;;;;;22612:7;22621:18;:7;:16;:18::i;:::-;22641:4;22595:51;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22547:118;22540:125;;;;22268:405;;;:::o;44095:328::-;34107:12;:10;:12::i;:::-;34096:23;;:7;:5;:7::i;:::-;:23;;;34088:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44195:9:::1;;44184:7;:20;;44175:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;44255:14;44272:13;:11;:13::i;:::-;44255:30;;44300:9;44296:87;44315:7;44311:1;:11;44296:87;;;44343:28;44354:3;44368:1;44359:6;:10;;;;:::i;:::-;44343:9;:28::i;:::-;44324:3;;;;;:::i;:::-;;;;44296:87;;;;44408:7;44395:9;;:20;;;;;;;:::i;:::-;;;;;;;;34167:1;44095:328:::0;;:::o;24088:164::-;24185:4;24209:18;:25;24228:5;24209:25;;;;;;;;;;;;;;;:35;24235:8;24209:35;;;;;;;;;;;;;;;;;;;;;;;;;24202:42;;24088:164;;;;:::o;34830:244::-;34107:12;:10;:12::i;:::-;34096:23;;:7;:5;:7::i;:::-;:23;;;34088:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34939:1:::1;34919:22;;:8;:22;;;;34911:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;35029:8;35000:38;;35021:6;;;;;;;;;;;35000:38;;;;;;;;;;;;35058:8;35049:6;;:17;;;;;;;;;;;;;;;;;;34830:244:::0;:::o;10065:422::-;10125:4;10333:12;10444:7;10432:20;10424:28;;10478:1;10471:4;:8;10464:15;;;10065:422;;;:::o;32741:93::-;;;;:::o;20992:292::-;21094:4;21133:25;21118:40;;;:11;:40;;;;:105;;;;21190:33;21175:48;;;:11;:48;;;;21118:105;:158;;;;21240:36;21264:11;21240:23;:36::i;:::-;21118:158;21111:165;;20992:292;;;:::o;9009:98::-;9062:7;9089:10;9082:17;;9009:98;:::o;26669:127::-;26734:4;26786:1;26758:30;;:7;:16;26766:7;26758:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26751:37;;26669:127;;;:::o;30546:174::-;30648:2;30621:15;:24;30637:7;30621:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30704:7;30700:2;30666:46;;30675:23;30690:7;30675:14;:23::i;:::-;30666:46;;;;;;;;;;;;30546:174;;:::o;26963:348::-;27056:4;27081:16;27089:7;27081;:16::i;:::-;27073:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27157:13;27173:23;27188:7;27173:14;:23::i;:::-;27157:39;;27226:5;27215:16;;:7;:16;;;:51;;;;27259:7;27235:31;;:20;27247:7;27235:11;:20::i;:::-;:31;;;27215:51;:87;;;;27270:32;27287:5;27294:7;27270:16;:32::i;:::-;27215:87;27207:96;;;26963:348;;;;:::o;29884:544::-;30009:4;29982:31;;:23;29997:7;29982:14;:23::i;:::-;:31;;;29974:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;30092:1;30078:16;;:2;:16;;;;30070:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30148:39;30169:4;30175:2;30179:7;30148:20;:39::i;:::-;30252:29;30269:1;30273:7;30252:8;:29::i;:::-;30313:1;30294:9;:15;30304:4;30294:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30342:1;30325:9;:13;30335:2;30325:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30373:2;30354:7;:16;30362:7;30354:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30412:7;30408:2;30393:27;;30402:4;30393:27;;;;;;;;;;;;29884:544;;;:::o;27653:110::-;27729:26;27739:2;27743:7;27729:26;;;;;;;;;;;;:9;:26::i;:::-;27653:110;;:::o;26084:272::-;26198:28;26208:4;26214:2;26218:7;26198:9;:28::i;:::-;26245:48;26268:4;26274:2;26278:7;26287:5;26245:22;:48::i;:::-;26237:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26084:272;;;;:::o;43774:114::-;43834:13;43867;43860:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43774:114;:::o;6686:723::-;6742:13;6972:1;6963:5;:10;6959:53;;;6990:10;;;;;;;;;;;;;;;;;;;;;6959:53;7022:12;7037:5;7022:20;;7053:14;7078:78;7093:1;7085:4;:9;7078:78;;7111:8;;;;;:::i;:::-;;;;7142:2;7134:10;;;;;:::i;:::-;;;7078:78;;;7166:19;7198:6;7188:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7166:39;;7216:154;7232:1;7223:5;:10;7216:154;;7260:1;7250:11;;;;;:::i;:::-;;;7327:2;7319:5;:10;;;;:::i;:::-;7306:2;:24;;;;:::i;:::-;7293:39;;7276:6;7283;7276:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;7356:2;7347:11;;;;;:::i;:::-;;;7216:154;;;7394:6;7380:21;;;;;6686:723;;;;:::o;1537:157::-;1622:4;1661:25;1646:40;;;:11;:40;;;;1639:47;;1537:157;;;:::o;37611:555::-;37721:45;37748:4;37754:2;37758:7;37721:26;:45::i;:::-;37799:1;37783:18;;:4;:18;;;37779:187;;;37818:40;37850:7;37818:31;:40::i;:::-;37779:187;;;37888:2;37880:10;;:4;:10;;;37876:90;;37907:47;37940:4;37946:7;37907:32;:47::i;:::-;37876:90;37779:187;37994:1;37980:16;;:2;:16;;;37976:183;;;38013:45;38050:7;38013:36;:45::i;:::-;37976:183;;;38086:4;38080:10;;:2;:10;;;38076:83;;38107:40;38135:2;38139:7;38107:27;:40::i;:::-;38076:83;37976:183;37611:555;;;:::o;27990:250::-;28086:18;28092:2;28096:7;28086:5;:18::i;:::-;28123:54;28154:1;28158:2;28162:7;28171:5;28123:22;:54::i;:::-;28115:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;27990:250;;;:::o;31285:843::-;31406:4;31432:15;:2;:13;;;:15::i;:::-;31428:693;;;31484:2;31468:36;;;31505:12;:10;:12::i;:::-;31519:4;31525:7;31534:5;31468:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31464:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31731:1;31714:6;:13;:18;31710:341;;;31757:60;;;;;;;;;;:::i;:::-;;;;;;;;31710:341;32001:6;31995:13;31986:6;31982:2;31978:15;31971:38;31464:602;31601:45;;;31591:55;;;:6;:55;;;;31584:62;;;;;31428:693;32105:4;32098:11;;31285:843;;;;;;;:::o;38889:164::-;38993:10;:17;;;;38966:15;:24;38982:7;38966:24;;;;;;;;;;;:44;;;;39021:10;39037:7;39021:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38889:164;:::o;39680:988::-;39946:22;39996:1;39971:22;39988:4;39971:16;:22::i;:::-;:26;;;;:::i;:::-;39946:51;;40008:18;40029:17;:26;40047:7;40029:26;;;;;;;;;;;;40008:47;;40176:14;40162:10;:28;40158:328;;40207:19;40229:12;:18;40242:4;40229:18;;;;;;;;;;;;;;;:34;40248:14;40229:34;;;;;;;;;;;;40207:56;;40313:11;40280:12;:18;40293:4;40280:18;;;;;;;;;;;;;;;:30;40299:10;40280:30;;;;;;;;;;;:44;;;;40430:10;40397:17;:30;40415:11;40397:30;;;;;;;;;;;:43;;;;40158:328;;40582:17;:26;40600:7;40582:26;;;;;;;;;;;40575:33;;;40626:12;:18;40639:4;40626:18;;;;;;;;;;;;;;;:34;40645:14;40626:34;;;;;;;;;;;40619:41;;;39680:988;;;;:::o;40963:1079::-;41216:22;41261:1;41241:10;:17;;;;:21;;;;:::i;:::-;41216:46;;41273:18;41294:15;:24;41310:7;41294:24;;;;;;;;;;;;41273:45;;41645:19;41667:10;41678:14;41667:26;;;;;;;;;;;;;;;;;;;;;;;;41645:48;;41731:11;41706:10;41717;41706:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;41842:10;41811:15;:28;41827:11;41811:28;;;;;;;;;;;:41;;;;41983:15;:24;41999:7;41983:24;;;;;;;;;;;41976:31;;;42018:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40963:1079;;;;:::o;38467:221::-;38552:14;38569:20;38586:2;38569:16;:20::i;:::-;38552:37;;38627:7;38600:12;:16;38613:2;38600:16;;;;;;;;;;;;;;;:24;38617:6;38600:24;;;;;;;;;;;:34;;;;38674:6;38645:17;:26;38663:7;38645:26;;;;;;;;;;;:35;;;;38467:221;;;:::o;28576:382::-;28670:1;28656:16;;:2;:16;;;;28648:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28729:16;28737:7;28729;:16::i;:::-;28728:17;28720:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28791:45;28820:1;28824:2;28828:7;28791:20;:45::i;:::-;28866:1;28849:9;:13;28859:2;28849:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28897:2;28878:7;:16;28886:7;28878:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28942:7;28938:2;28917:33;;28934:1;28917:33;;;;;;;;;;;;28576:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:256::-;;4986:2;4974:9;4965:7;4961:23;4957:32;4954:2;;;5002:1;4999;4992:12;4954:2;5045:1;5070:50;5112:7;5103:6;5092:9;5088:22;5070:50;:::i;:::-;5060:60;;5016:114;4944:193;;;;:::o;5143:260::-;;5250:2;5238:9;5229:7;5225:23;5221:32;5218:2;;;5266:1;5263;5256:12;5218:2;5309:1;5334:52;5378:7;5369:6;5358:9;5354:22;5334:52;:::i;:::-;5324:62;;5280:116;5208:195;;;;:::o;5409:282::-;;5527:2;5515:9;5506:7;5502:23;5498:32;5495:2;;;5543:1;5540;5533:12;5495:2;5586:1;5611:63;5666:7;5657:6;5646:9;5642:22;5611:63;:::i;:::-;5601:73;;5557:127;5485:206;;;;:::o;5697:375::-;;5815:2;5803:9;5794:7;5790:23;5786:32;5783:2;;;5831:1;5828;5821:12;5783:2;5902:1;5891:9;5887:17;5874:31;5932:18;5924:6;5921:30;5918:2;;;5964:1;5961;5954:12;5918:2;5992:63;6047:7;6038:6;6027:9;6023:22;5992:63;:::i;:::-;5982:73;;5845:220;5773:299;;;;:::o;6078:262::-;;6186:2;6174:9;6165:7;6161:23;6157:32;6154:2;;;6202:1;6199;6192:12;6154:2;6245:1;6270:53;6315:7;6306:6;6295:9;6291:22;6270:53;:::i;:::-;6260:63;;6216:117;6144:196;;;;:::o;6346:179::-;;6436:46;6478:3;6470:6;6436:46;:::i;:::-;6514:4;6509:3;6505:14;6491:28;;6426:99;;;;:::o;6531:118::-;6618:24;6636:5;6618:24;:::i;:::-;6613:3;6606:37;6596:53;;:::o;6685:732::-;;6833:54;6881:5;6833:54;:::i;:::-;6903:86;6982:6;6977:3;6903:86;:::i;:::-;6896:93;;7013:56;7063:5;7013:56;:::i;:::-;7092:7;7123:1;7108:284;7133:6;7130:1;7127:13;7108:284;;;7209:6;7203:13;7236:63;7295:3;7280:13;7236:63;:::i;:::-;7229:70;;7322:60;7375:6;7322:60;:::i;:::-;7312:70;;7168:224;7155:1;7152;7148:9;7143:14;;7108:284;;;7112:14;7408:3;7401:10;;6809:608;;;;;;;:::o;7423:109::-;7504:21;7519:5;7504:21;:::i;:::-;7499:3;7492:34;7482:50;;:::o;7538:360::-;;7652:38;7684:5;7652:38;:::i;:::-;7706:70;7769:6;7764:3;7706:70;:::i;:::-;7699:77;;7785:52;7830:6;7825:3;7818:4;7811:5;7807:16;7785:52;:::i;:::-;7862:29;7884:6;7862:29;:::i;:::-;7857:3;7853:39;7846:46;;7628:270;;;;;:::o;7904:364::-;;8020:39;8053:5;8020:39;:::i;:::-;8075:71;8139:6;8134:3;8075:71;:::i;:::-;8068:78;;8155:52;8200:6;8195:3;8188:4;8181:5;8177:16;8155:52;:::i;:::-;8232:29;8254:6;8232:29;:::i;:::-;8227:3;8223:39;8216:46;;7996:272;;;;;:::o;8274:377::-;;8408:39;8441:5;8408:39;:::i;:::-;8463:89;8545:6;8540:3;8463:89;:::i;:::-;8456:96;;8561:52;8606:6;8601:3;8594:4;8587:5;8583:16;8561:52;:::i;:::-;8638:6;8633:3;8629:16;8622:23;;8384:267;;;;;:::o;8657:309::-;;8820:67;8884:2;8879:3;8820:67;:::i;:::-;8813:74;;8917:13;8913:1;8908:3;8904:11;8897:34;8957:2;8952:3;8948:12;8941:19;;8803:163;;;:::o;8972:375::-;;9135:67;9199:2;9194:3;9135:67;:::i;:::-;9128:74;;9232:34;9228:1;9223:3;9219:11;9212:55;9298:13;9293:2;9288:3;9284:12;9277:35;9338:2;9333:3;9329:12;9322:19;;9118:229;;;:::o;9353:382::-;;9516:67;9580:2;9575:3;9516:67;:::i;:::-;9509:74;;9613:34;9609:1;9604:3;9600:11;9593:55;9679:20;9674:2;9669:3;9665:12;9658:42;9726:2;9721:3;9717:12;9710:19;;9499:236;;;:::o;9741:370::-;;9904:67;9968:2;9963:3;9904:67;:::i;:::-;9897:74;;10001:34;9997:1;9992:3;9988:11;9981:55;10067:8;10062:2;10057:3;10053:12;10046:30;10102:2;10097:3;10093:12;10086:19;;9887:224;;;:::o;10117:330::-;;10280:67;10344:2;10339:3;10280:67;:::i;:::-;10273:74;;10377:34;10373:1;10368:3;10364:11;10357:55;10438:2;10433:3;10429:12;10422:19;;10263:184;;;:::o;10453:326::-;;10616:67;10680:2;10675:3;10616:67;:::i;:::-;10609:74;;10713:30;10709:1;10704:3;10700:11;10693:51;10770:2;10765:3;10761:12;10754:19;;10599:180;;;:::o;10785:368::-;;10948:67;11012:2;11007:3;10948:67;:::i;:::-;10941:74;;11045:34;11041:1;11036:3;11032:11;11025:55;11111:6;11106:2;11101:3;11097:12;11090:28;11144:2;11139:3;11135:12;11128:19;;10931:222;;;:::o;11159:323::-;;11322:67;11386:2;11381:3;11322:67;:::i;:::-;11315:74;;11419:27;11415:1;11410:3;11406:11;11399:48;11473:2;11468:3;11464:12;11457:19;;11305:177;;;:::o;11488:329::-;;11651:67;11715:2;11710:3;11651:67;:::i;:::-;11644:74;;11748:33;11744:1;11739:3;11735:11;11728:54;11808:2;11803:3;11799:12;11792:19;;11634:183;;;:::o;11823:376::-;;11986:67;12050:2;12045:3;11986:67;:::i;:::-;11979:74;;12083:34;12079:1;12074:3;12070:11;12063:55;12149:14;12144:2;12139:3;12135:12;12128:36;12190:2;12185:3;12181:12;12174:19;;11969:230;;;:::o;12205:369::-;;12368:67;12432:2;12427:3;12368:67;:::i;:::-;12361:74;;12465:34;12461:1;12456:3;12452:11;12445:55;12531:7;12526:2;12521:3;12517:12;12510:29;12565:2;12560:3;12556:12;12549:19;;12351:223;;;:::o;12580:388::-;;12743:67;12807:2;12802:3;12743:67;:::i;:::-;12736:74;;12840:34;12836:1;12831:3;12827:11;12820:55;12906:26;12901:2;12896:3;12892:12;12885:48;12959:2;12954:3;12950:12;12943:19;;12726:242;;;:::o;12974:374::-;;13137:67;13201:2;13196:3;13137:67;:::i;:::-;13130:74;;13234:34;13230:1;13225:3;13221:11;13214:55;13300:12;13295:2;13290:3;13286:12;13279:34;13339:2;13334:3;13330:12;13323:19;;13120:228;;;:::o;13354:373::-;;13517:67;13581:2;13576:3;13517:67;:::i;:::-;13510:74;;13614:34;13610:1;13605:3;13601:11;13594:55;13680:11;13675:2;13670:3;13666:12;13659:33;13718:2;13713:3;13709:12;13702:19;;13500:227;;;:::o;13733:330::-;;13896:67;13960:2;13955:3;13896:67;:::i;:::-;13889:74;;13993:34;13989:1;13984:3;13980:11;13973:55;14054:2;14049:3;14045:12;14038:19;;13879:184;;;:::o;14069:376::-;;14232:67;14296:2;14291:3;14232:67;:::i;:::-;14225:74;;14329:34;14325:1;14320:3;14316:11;14309:55;14395:14;14390:2;14385:3;14381:12;14374:36;14436:2;14431:3;14427:12;14420:19;;14215:230;;;:::o;14451:330::-;;14614:67;14678:2;14673:3;14614:67;:::i;:::-;14607:74;;14711:34;14707:1;14702:3;14698:11;14691:55;14772:2;14767:3;14763:12;14756:19;;14597:184;;;:::o;14787:373::-;;14950:67;15014:2;15009:3;14950:67;:::i;:::-;14943:74;;15047:34;15043:1;15038:3;15034:11;15027:55;15113:11;15108:2;15103:3;15099:12;15092:33;15151:2;15146:3;15142:12;15135:19;;14933:227;;;:::o;15166:379::-;;15329:67;15393:2;15388:3;15329:67;:::i;:::-;15322:74;;15426:34;15422:1;15417:3;15413:11;15406:55;15492:17;15487:2;15482:3;15478:12;15471:39;15536:2;15531:3;15527:12;15520:19;;15312:233;;;:::o;15551:365::-;;15714:67;15778:2;15773:3;15714:67;:::i;:::-;15707:74;;15811:34;15807:1;15802:3;15798:11;15791:55;15877:3;15872:2;15867:3;15863:12;15856:25;15907:2;15902:3;15898:12;15891:19;;15697:219;;;:::o;15922:323::-;;16085:67;16149:2;16144:3;16085:67;:::i;:::-;16078:74;;16182:27;16178:1;16173:3;16169:11;16162:48;16236:2;16231:3;16227:12;16220:19;;16068:177;;;:::o;16251:381::-;;16414:67;16478:2;16473:3;16414:67;:::i;:::-;16407:74;;16511:34;16507:1;16502:3;16498:11;16491:55;16577:19;16572:2;16567:3;16563:12;16556:41;16623:2;16618:3;16614:12;16607:19;;16397:235;;;:::o;16638:376::-;;16801:67;16865:2;16860:3;16801:67;:::i;:::-;16794:74;;16898:34;16894:1;16889:3;16885:11;16878:55;16964:14;16959:2;16954:3;16950:12;16943:36;17005:2;17000:3;16996:12;16989:19;;16784:230;;;:::o;17020:108::-;17097:24;17115:5;17097:24;:::i;:::-;17092:3;17085:37;17075:53;;:::o;17134:118::-;17221:24;17239:5;17221:24;:::i;:::-;17216:3;17209:37;17199:53;;:::o;17258:595::-;;17508:95;17599:3;17590:6;17508:95;:::i;:::-;17501:102;;17620:95;17711:3;17702:6;17620:95;:::i;:::-;17613:102;;17732:95;17823:3;17814:6;17732:95;:::i;:::-;17725:102;;17844:3;17837:10;;17490:363;;;;;;:::o;17859:222::-;;17990:2;17979:9;17975:18;17967:26;;18003:71;18071:1;18060:9;18056:17;18047:6;18003:71;:::i;:::-;17957:124;;;;:::o;18087:640::-;;18320:3;18309:9;18305:19;18297:27;;18334:71;18402:1;18391:9;18387:17;18378:6;18334:71;:::i;:::-;18415:72;18483:2;18472:9;18468:18;18459:6;18415:72;:::i;:::-;18497;18565:2;18554:9;18550:18;18541:6;18497:72;:::i;:::-;18616:9;18610:4;18606:20;18601:2;18590:9;18586:18;18579:48;18644:76;18715:4;18706:6;18644:76;:::i;:::-;18636:84;;18287:440;;;;;;;:::o;18733:373::-;;18914:2;18903:9;18899:18;18891:26;;18963:9;18957:4;18953:20;18949:1;18938:9;18934:17;18927:47;18991:108;19094:4;19085:6;18991:108;:::i;:::-;18983:116;;18881:225;;;;:::o;19112:210::-;;19237:2;19226:9;19222:18;19214:26;;19250:65;19312:1;19301:9;19297:17;19288:6;19250:65;:::i;:::-;19204:118;;;;:::o;19328:313::-;;19479:2;19468:9;19464:18;19456:26;;19528:9;19522:4;19518:20;19514:1;19503:9;19499:17;19492:47;19556:78;19629:4;19620:6;19556:78;:::i;:::-;19548:86;;19446:195;;;;:::o;19647:419::-;;19851:2;19840:9;19836:18;19828:26;;19900:9;19894:4;19890:20;19886:1;19875:9;19871:17;19864:47;19928:131;20054:4;19928:131;:::i;:::-;19920:139;;19818:248;;;:::o;20072:419::-;;20276:2;20265:9;20261:18;20253:26;;20325:9;20319:4;20315:20;20311:1;20300:9;20296:17;20289:47;20353:131;20479:4;20353:131;:::i;:::-;20345:139;;20243:248;;;:::o;20497:419::-;;20701:2;20690:9;20686:18;20678:26;;20750:9;20744:4;20740:20;20736:1;20725:9;20721:17;20714:47;20778:131;20904:4;20778:131;:::i;:::-;20770:139;;20668:248;;;:::o;20922:419::-;;21126:2;21115:9;21111:18;21103:26;;21175:9;21169:4;21165:20;21161:1;21150:9;21146:17;21139:47;21203:131;21329:4;21203:131;:::i;:::-;21195:139;;21093:248;;;:::o;21347:419::-;;21551:2;21540:9;21536:18;21528:26;;21600:9;21594:4;21590:20;21586:1;21575:9;21571:17;21564:47;21628:131;21754:4;21628:131;:::i;:::-;21620:139;;21518:248;;;:::o;21772:419::-;;21976:2;21965:9;21961:18;21953:26;;22025:9;22019:4;22015:20;22011:1;22000:9;21996:17;21989:47;22053:131;22179:4;22053:131;:::i;:::-;22045:139;;21943:248;;;:::o;22197:419::-;;22401:2;22390:9;22386:18;22378:26;;22450:9;22444:4;22440:20;22436:1;22425:9;22421:17;22414:47;22478:131;22604:4;22478:131;:::i;:::-;22470:139;;22368:248;;;:::o;22622:419::-;;22826:2;22815:9;22811:18;22803:26;;22875:9;22869:4;22865:20;22861:1;22850:9;22846:17;22839:47;22903:131;23029:4;22903:131;:::i;:::-;22895:139;;22793:248;;;:::o;23047:419::-;;23251:2;23240:9;23236:18;23228:26;;23300:9;23294:4;23290:20;23286:1;23275:9;23271:17;23264:47;23328:131;23454:4;23328:131;:::i;:::-;23320:139;;23218:248;;;:::o;23472:419::-;;23676:2;23665:9;23661:18;23653:26;;23725:9;23719:4;23715:20;23711:1;23700:9;23696:17;23689:47;23753:131;23879:4;23753:131;:::i;:::-;23745:139;;23643:248;;;:::o;23897:419::-;;24101:2;24090:9;24086:18;24078:26;;24150:9;24144:4;24140:20;24136:1;24125:9;24121:17;24114:47;24178:131;24304:4;24178:131;:::i;:::-;24170:139;;24068:248;;;:::o;24322:419::-;;24526:2;24515:9;24511:18;24503:26;;24575:9;24569:4;24565:20;24561:1;24550:9;24546:17;24539:47;24603:131;24729:4;24603:131;:::i;:::-;24595:139;;24493:248;;;:::o;24747:419::-;;24951:2;24940:9;24936:18;24928:26;;25000:9;24994:4;24990:20;24986:1;24975:9;24971:17;24964:47;25028:131;25154:4;25028:131;:::i;:::-;25020:139;;24918:248;;;:::o;25172:419::-;;25376:2;25365:9;25361:18;25353:26;;25425:9;25419:4;25415:20;25411:1;25400:9;25396:17;25389:47;25453:131;25579:4;25453:131;:::i;:::-;25445:139;;25343:248;;;:::o;25597:419::-;;25801:2;25790:9;25786:18;25778:26;;25850:9;25844:4;25840:20;25836:1;25825:9;25821:17;25814:47;25878:131;26004:4;25878:131;:::i;:::-;25870:139;;25768:248;;;:::o;26022:419::-;;26226:2;26215:9;26211:18;26203:26;;26275:9;26269:4;26265:20;26261:1;26250:9;26246:17;26239:47;26303:131;26429:4;26303:131;:::i;:::-;26295:139;;26193:248;;;:::o;26447:419::-;;26651:2;26640:9;26636:18;26628:26;;26700:9;26694:4;26690:20;26686:1;26675:9;26671:17;26664:47;26728:131;26854:4;26728:131;:::i;:::-;26720:139;;26618:248;;;:::o;26872:419::-;;27076:2;27065:9;27061:18;27053:26;;27125:9;27119:4;27115:20;27111:1;27100:9;27096:17;27089:47;27153:131;27279:4;27153:131;:::i;:::-;27145:139;;27043:248;;;:::o;27297:419::-;;27501:2;27490:9;27486:18;27478:26;;27550:9;27544:4;27540:20;27536:1;27525:9;27521:17;27514:47;27578:131;27704:4;27578:131;:::i;:::-;27570:139;;27468:248;;;:::o;27722:419::-;;27926:2;27915:9;27911:18;27903:26;;27975:9;27969:4;27965:20;27961:1;27950:9;27946:17;27939:47;28003:131;28129:4;28003:131;:::i;:::-;27995:139;;27893:248;;;:::o;28147:419::-;;28351:2;28340:9;28336:18;28328:26;;28400:9;28394:4;28390:20;28386:1;28375:9;28371:17;28364:47;28428:131;28554:4;28428:131;:::i;:::-;28420:139;;28318:248;;;:::o;28572:419::-;;28776:2;28765:9;28761:18;28753:26;;28825:9;28819:4;28815:20;28811:1;28800:9;28796:17;28789:47;28853:131;28979:4;28853:131;:::i;:::-;28845:139;;28743:248;;;:::o;28997:419::-;;29201:2;29190:9;29186:18;29178:26;;29250:9;29244:4;29240:20;29236:1;29225:9;29221:17;29214:47;29278:131;29404:4;29278:131;:::i;:::-;29270:139;;29168:248;;;:::o;29422:222::-;;29553:2;29542:9;29538:18;29530:26;;29566:71;29634:1;29623:9;29619:17;29610:6;29566:71;:::i;:::-;29520:124;;;;:::o;29650:283::-;;29716:2;29710:9;29700:19;;29758:4;29750:6;29746:17;29865:6;29853:10;29850:22;29829:18;29817:10;29814:34;29811:62;29808:2;;;29876:18;;:::i;:::-;29808:2;29916:10;29912:2;29905:22;29690:243;;;;:::o;29939:331::-;;30090:18;30082:6;30079:30;30076:2;;;30112:18;;:::i;:::-;30076:2;30197:4;30193:9;30186:4;30178:6;30174:17;30170:33;30162:41;;30258:4;30252;30248:15;30240:23;;30005:265;;;:::o;30276:332::-;;30428:18;30420:6;30417:30;30414:2;;;30450:18;;:::i;:::-;30414:2;30535:4;30531:9;30524:4;30516:6;30512:17;30508:33;30500:41;;30596:4;30590;30586:15;30578:23;;30343:265;;;:::o;30614:132::-;;30704:3;30696:11;;30734:4;30729:3;30725:14;30717:22;;30686:60;;;:::o;30752:114::-;;30853:5;30847:12;30837:22;;30826:40;;;:::o;30872:98::-;;30957:5;30951:12;30941:22;;30930:40;;;:::o;30976:99::-;;31062:5;31056:12;31046:22;;31035:40;;;:::o;31081:113::-;;31183:4;31178:3;31174:14;31166:22;;31156:38;;;:::o;31200:184::-;;31333:6;31328:3;31321:19;31373:4;31368:3;31364:14;31349:29;;31311:73;;;;:::o;31390:168::-;;31507:6;31502:3;31495:19;31547:4;31542:3;31538:14;31523:29;;31485:73;;;;:::o;31564:169::-;;31682:6;31677:3;31670:19;31722:4;31717:3;31713:14;31698:29;;31660:73;;;;:::o;31739:148::-;;31878:3;31863:18;;31853:34;;;;:::o;31893:305::-;;31952:20;31970:1;31952:20;:::i;:::-;31947:25;;31986:20;32004:1;31986:20;:::i;:::-;31981:25;;32140:1;32072:66;32068:74;32065:1;32062:81;32059:2;;;32146:18;;:::i;:::-;32059:2;32190:1;32187;32183:9;32176:16;;31937:261;;;;:::o;32204:185::-;;32261:20;32279:1;32261:20;:::i;:::-;32256:25;;32295:20;32313:1;32295:20;:::i;:::-;32290:25;;32334:1;32324:2;;32339:18;;:::i;:::-;32324:2;32381:1;32378;32374:9;32369:14;;32246:143;;;;:::o;32395:348::-;;32458:20;32476:1;32458:20;:::i;:::-;32453:25;;32492:20;32510:1;32492:20;:::i;:::-;32487:25;;32680:1;32612:66;32608:74;32605:1;32602:81;32597:1;32590:9;32583:17;32579:105;32576:2;;;32687:18;;:::i;:::-;32576:2;32735:1;32732;32728:9;32717:20;;32443:300;;;;:::o;32749:191::-;;32809:20;32827:1;32809:20;:::i;:::-;32804:25;;32843:20;32861:1;32843:20;:::i;:::-;32838:25;;32882:1;32879;32876:8;32873:2;;;32887:18;;:::i;:::-;32873:2;32932:1;32929;32925:9;32917:17;;32794:146;;;;:::o;32946:96::-;;33012:24;33030:5;33012:24;:::i;:::-;33001:35;;32991:51;;;:::o;33048:90::-;;33125:5;33118:13;33111:21;33100:32;;33090:48;;;:::o;33144:149::-;;33220:66;33213:5;33209:78;33198:89;;33188:105;;;:::o;33299:126::-;;33376:42;33369:5;33365:54;33354:65;;33344:81;;;:::o;33431:77::-;;33497:5;33486:16;;33476:32;;;:::o;33514:154::-;33598:6;33593:3;33588;33575:30;33660:1;33651:6;33646:3;33642:16;33635:27;33565:103;;;:::o;33674:307::-;33742:1;33752:113;33766:6;33763:1;33760:13;33752:113;;;33851:1;33846:3;33842:11;33836:18;33832:1;33827:3;33823:11;33816:39;33788:2;33785:1;33781:10;33776:15;;33752:113;;;33883:6;33880:1;33877:13;33874:2;;;33963:1;33954:6;33949:3;33945:16;33938:27;33874:2;33723:258;;;;:::o;33987:320::-;;34068:1;34062:4;34058:12;34048:22;;34115:1;34109:4;34105:12;34136:18;34126:2;;34192:4;34184:6;34180:17;34170:27;;34126:2;34254;34246:6;34243:14;34223:18;34220:38;34217:2;;;34273:18;;:::i;:::-;34217:2;34038:269;;;;:::o;34313:233::-;;34375:24;34393:5;34375:24;:::i;:::-;34366:33;;34421:66;34414:5;34411:77;34408:2;;;34491:18;;:::i;:::-;34408:2;34538:1;34531:5;34527:13;34520:20;;34356:190;;;:::o;34552:176::-;;34601:20;34619:1;34601:20;:::i;:::-;34596:25;;34635:20;34653:1;34635:20;:::i;:::-;34630:25;;34674:1;34664:2;;34679:18;;:::i;:::-;34664:2;34720:1;34717;34713:9;34708:14;;34586:142;;;;:::o;34734:180::-;34782:77;34779:1;34772:88;34879:4;34876:1;34869:15;34903:4;34900:1;34893:15;34920:180;34968:77;34965:1;34958:88;35065:4;35062:1;35055:15;35089:4;35086:1;35079:15;35106:180;35154:77;35151:1;35144:88;35251:4;35248:1;35241:15;35275:4;35272:1;35265:15;35292:180;35340:77;35337:1;35330:88;35437:4;35434:1;35427:15;35461:4;35458:1;35451:15;35478:102;;35570:2;35566:7;35561:2;35554:5;35550:14;35546:28;35536:38;;35526:54;;;:::o;35586:122::-;35659:24;35677:5;35659:24;:::i;:::-;35652:5;35649:35;35639:2;;35698:1;35695;35688:12;35639:2;35629:79;:::o;35714:116::-;35784:21;35799:5;35784:21;:::i;:::-;35777:5;35774:32;35764:2;;35820:1;35817;35810:12;35764:2;35754:76;:::o;35836:120::-;35908:23;35925:5;35908:23;:::i;:::-;35901:5;35898:34;35888:2;;35946:1;35943;35936:12;35888:2;35878:78;:::o;35962:122::-;36035:24;36053:5;36035:24;:::i;:::-;36028:5;36025:35;36015:2;;36074:1;36071;36064:12;36015:2;36005:79;:::o

Swarm Source

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