ETH Price: $1,557.78 (+1.02%)
 

Overview

Max Total Supply

34 DMC

Holders

14

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
chefredbeard.eth
Balance
1 DMC
0xd81415177c91dcde8c5615914c6e5ab949188bf3
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DrippedMiceClub

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol

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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol



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;
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol



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

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



pragma solidity ^0.8.0;

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

        uint256 size;
        // 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);
            }
        }
    }
}

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



pragma solidity ^0.8.0;

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

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

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



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

}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol



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;
    }
}

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



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();
        return bytes(baseURI).length > 0
            ? string(abi.encodePacked(baseURI, tokenId.toString()))
            : '';
    }

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol



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

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol



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

// File: @openzeppelin/contracts/access/Ownable.sol



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;
    }
}

// File: contracts/DrippedMiceClub.sol


pragma solidity ^0.8.0;




contract DrippedMiceClub is ERC721Enumerable, Ownable {
    uint256 public constant MAX_NFT_SUPPLY = 7000;
    uint public constant MAX_PURCHASABLE = 20;
    uint256 public constant DRIPPED_MICE_PRICE = 60000000000000000; // 0.06 ETH
    uint256 public constant SALE_START_TIME = 1625338800; // 3pm ET July 3rd 2021 
    string public PROVENANCE_HASH = "";

    bool public saleStarted = true;

    constructor() ERC721("Dripped Mice Club", "DMC") {
        transferOwnership(0x61dD3D294BE3de3796C2F8792742C5EB40736F9C);
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return "https://api.drippedmiceclub.com/";
    }

    function getTokenURI(uint256 tokenId) public view returns (string memory) {
        return tokenURI(tokenId);
    }

   function mint(uint256 amountToMint) public payable {
        require(saleStarted == true, "This sale has not started.");
        require(block.timestamp >= SALE_START_TIME, "Sale has not started.");
        require(totalSupply() < MAX_NFT_SUPPLY, "All NFTs have been minted.");
        require(amountToMint > 0, "You must mint at least one mouse.");
        require(amountToMint <= 20, "You cannot mint more than 20 mice.");
        require(totalSupply() + amountToMint <= MAX_NFT_SUPPLY, "The amount of Dripped Mice you are trying to mint exceeds the MAX_NFT_SUPPLY.");
        
        require(DRIPPED_MICE_PRICE * amountToMint == msg.value, "Incorrect Ether value.");

        for (uint256 i = 0; i < amountToMint; i++) {
            uint256 mintIndex = totalSupply();
            _safeMint(msg.sender, mintIndex);
        }
   }

    function startSale() public onlyOwner {
        saleStarted = true;
    }

    function pauseSale() public onlyOwner {
        saleStarted = false;
    }

   function reserveTokens() public onlyOwner {
       require(block.timestamp < SALE_START_TIME, "Owner cannot mint tokens after the sale start time.");
       
       for (uint256 i = 0; i < 30; i++) {
           uint256 mintIndex = totalSupply();
           _safeMint(msg.sender, mintIndex);
       }
   }

    function setProvenanceHash(string memory _hash) public onlyOwner {
        PROVENANCE_HASH = _hash;
    }

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

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DRIPPED_MICE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PURCHASABLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_START_TIME","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountToMint","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":[],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405260405180602001604052806000815250600b90805190602001906200002b929190620003c5565b506001600c60006101000a81548160ff0219169083151502179055503480156200005457600080fd5b506040518060400160405280601181526020017f44726970706564204d69636520436c75620000000000000000000000000000008152506040518060400160405280600381526020017f444d4300000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000d9929190620003c5565b508060019080519060200190620000f2929190620003c5565b505050600062000107620001d160201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001cb7361dd3d294be3de3796c2f8792742c5eb40736f9c620001d960201b60201c565b620005d9565b600033905090565b620001e9620001d160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200020f6200039b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000268576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200025f9062000541565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415620002db576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002d2906200051f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003d39062000574565b90600052602060002090601f016020900481019282620003f7576000855562000443565b82601f106200041257805160ff191683800117855562000443565b8280016001018555821562000443579182015b828111156200044257825182559160200191906001019062000425565b5b50905062000452919062000456565b5090565b5b808211156200047157600081600090555060010162000457565b5090565b60006200048460268362000563565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000620004ec60208362000563565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600060208201905081810360008301526200053a8162000475565b9050919050565b600060208201905081810360008301526200055c81620004dd565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200058d57607f821691505b60208210811415620005a457620005a3620005aa565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61424780620005e96000396000f3fe6080604052600436106101e35760003560e01c806355367ba911610102578063a22cb46511610095578063c87b56dd11610064578063c87b56dd1461068e578063e985e9c5146106cb578063f2fde38b14610708578063ff1b655614610731576101e3565b8063a22cb465146105fa578063b5077f4414610623578063b66a0e5d1461064e578063b88d4fde14610665576101e3565b8063715018a6116100d1578063715018a6146105715780638da5cb5b1461058857806395d89b41146105b3578063a0712d68146105de576101e3565b806355367ba9146104b55780635c474f9e146104cc5780636352211e146104f757806370a0823114610534576101e3565b806327ac36c41161017a5780633ccfd60b116101495780633ccfd60b1461041a57806342842e0e1461042457806344dbb5711461044d5780634f6ccce714610478576101e3565b806327ac36c41461035e5780632dfd043d146103755780632f745c59146103a05780633bb3a24d146103dd576101e3565b806310969523116101b657806310969523146102b6578063119e4398146102df57806318160ddd1461030a57806323b872dd14610335576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612e9c565b61075c565b60405161021c9190613a05565b60405180910390f35b34801561023157600080fd5b5061023a6107d6565b6040516102479190613a20565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612f2f565b610868565b604051610284919061399e565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612e60565b6108ed565b005b3480156102c257600080fd5b506102dd60048036038101906102d89190612eee565b610a05565b005b3480156102eb57600080fd5b506102f4610a9b565b6040516103019190613d82565b60405180910390f35b34801561031657600080fd5b5061031f610aa0565b60405161032c9190613d82565b60405180910390f35b34801561034157600080fd5b5061035c60048036038101906103579190612d5a565b610aad565b005b34801561036a57600080fd5b50610373610b0d565b005b34801561038157600080fd5b5061038a610c08565b6040516103979190613d82565b60405180910390f35b3480156103ac57600080fd5b506103c760048036038101906103c29190612e60565b610c13565b6040516103d49190613d82565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff9190612f2f565b610cb8565b6040516104119190613a20565b60405180910390f35b610422610cca565b005b34801561043057600080fd5b5061044b60048036038101906104469190612d5a565b610d86565b005b34801561045957600080fd5b50610462610da6565b60405161046f9190613d82565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a9190612f2f565b610dae565b6040516104ac9190613d82565b60405180910390f35b3480156104c157600080fd5b506104ca610e45565b005b3480156104d857600080fd5b506104e1610ede565b6040516104ee9190613a05565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190612f2f565b610ef1565b60405161052b919061399e565b60405180910390f35b34801561054057600080fd5b5061055b60048036038101906105569190612cf5565b610fa3565b6040516105689190613d82565b60405180910390f35b34801561057d57600080fd5b5061058661105b565b005b34801561059457600080fd5b5061059d611198565b6040516105aa919061399e565b60405180910390f35b3480156105bf57600080fd5b506105c86111c2565b6040516105d59190613a20565b60405180910390f35b6105f860048036038101906105f39190612f2f565b611254565b005b34801561060657600080fd5b50610621600480360381019061061c9190612e24565b6114a7565b005b34801561062f57600080fd5b50610638611628565b6040516106459190613d82565b60405180910390f35b34801561065a57600080fd5b5061066361162e565b005b34801561067157600080fd5b5061068c60048036038101906106879190612da9565b6116c7565b005b34801561069a57600080fd5b506106b560048036038101906106b09190612f2f565b611729565b6040516106c29190613a20565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed9190612d1e565b6117d0565b6040516106ff9190613a05565b60405180910390f35b34801561071457600080fd5b5061072f600480360381019061072a9190612cf5565b611864565b005b34801561073d57600080fd5b50610746611a10565b6040516107539190613a20565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107cf57506107ce82611a9e565b5b9050919050565b6060600080546107e59061403c565b80601f01602080910402602001604051908101604052809291908181526020018280546108119061403c565b801561085e5780601f106108335761010080835404028352916020019161085e565b820191906000526020600020905b81548152906001019060200180831161084157829003601f168201915b5050505050905090565b600061087382611b80565b6108b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a990613ca2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f882610ef1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096090613d22565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610988611bec565b73ffffffffffffffffffffffffffffffffffffffff1614806109b757506109b6816109b1611bec565b6117d0565b5b6109f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ed90613c02565b60405180910390fd5b610a008383611bf4565b505050565b610a0d611bec565b73ffffffffffffffffffffffffffffffffffffffff16610a2b611198565b73ffffffffffffffffffffffffffffffffffffffff1614610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7890613cc2565b60405180910390fd5b80600b9080519060200190610a97929190612b19565b5050565b601481565b6000600880549050905090565b610abe610ab8611bec565b82611cad565b610afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af490613d42565b60405180910390fd5b610b08838383611d8b565b505050565b610b15611bec565b73ffffffffffffffffffffffffffffffffffffffff16610b33611198565b73ffffffffffffffffffffffffffffffffffffffff1614610b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8090613cc2565b60405180910390fd5b6360e0b3b04210610bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc690613bc2565b60405180910390fd5b60005b601e811015610c05576000610be5610aa0565b9050610bf13382611fe7565b508080610bfd9061406e565b915050610bd2565b50565b66d529ae9e86000081565b6000610c1e83610fa3565b8210610c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5690613aa2565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6060610cc382611729565b9050919050565b610cd2611bec565b73ffffffffffffffffffffffffffffffffffffffff16610cf0611198565b73ffffffffffffffffffffffffffffffffffffffff1614610d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3d90613cc2565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610d8457600080fd5b565b610da1838383604051806020016040528060008152506116c7565b505050565b6360e0b3b081565b6000610db8610aa0565b8210610df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df090613d62565b60405180910390fd5b60088281548110610e33577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610e4d611bec565b73ffffffffffffffffffffffffffffffffffffffff16610e6b611198565b73ffffffffffffffffffffffffffffffffffffffff1614610ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb890613cc2565b60405180910390fd5b6000600c60006101000a81548160ff021916908315150217905550565b600c60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9190613c42565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100b90613c22565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611063611bec565b73ffffffffffffffffffffffffffffffffffffffff16611081611198565b73ffffffffffffffffffffffffffffffffffffffff16146110d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ce90613cc2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546111d19061403c565b80601f01602080910402602001604051908101604052809291908181526020018280546111fd9061403c565b801561124a5780601f1061121f5761010080835404028352916020019161124a565b820191906000526020600020905b81548152906001019060200180831161122d57829003601f168201915b5050505050905090565b60011515600c60009054906101000a900460ff161515146112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a190613a42565b60405180910390fd5b6360e0b3b04210156112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e890613a62565b60405180910390fd5b611b586112fc610aa0565b1061133c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133390613b82565b60405180910390fd5b6000811161137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137690613b22565b60405180910390fd5b60148111156113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba90613ba2565b60405180910390fd5b611b58816113cf610aa0565b6113d99190613e71565b111561141a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141190613a82565b60405180910390fd5b348166d529ae9e86000061142e9190613ef8565b1461146e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146590613c62565b60405180910390fd5b60005b818110156114a3576000611483610aa0565b905061148f3382611fe7565b50808061149b9061406e565b915050611471565b5050565b6114af611bec565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561151d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151490613b62565b60405180910390fd5b806005600061152a611bec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115d7611bec565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161161c9190613a05565b60405180910390a35050565b611b5881565b611636611bec565b73ffffffffffffffffffffffffffffffffffffffff16611654611198565b73ffffffffffffffffffffffffffffffffffffffff16146116aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a190613cc2565b60405180910390fd5b6001600c60006101000a81548160ff021916908315150217905550565b6116d86116d2611bec565b83611cad565b611717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170e90613d42565b60405180910390fd5b61172384848484612005565b50505050565b606061173482611b80565b611773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176a90613d02565b60405180910390fd5b600061177d612061565b9050600081511161179d57604051806020016040528060008152506117c8565b806117a78461209e565b6040516020016117b892919061397a565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61186c611bec565b73ffffffffffffffffffffffffffffffffffffffff1661188a611198565b73ffffffffffffffffffffffffffffffffffffffff16146118e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d790613cc2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194790613ae2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b8054611a1d9061403c565b80601f0160208091040260200160405190810160405280929190818152602001828054611a499061403c565b8015611a965780601f10611a6b57610100808354040283529160200191611a96565b820191906000526020600020905b815481529060010190602001808311611a7957829003601f168201915b505050505081565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b6957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b795750611b788261224b565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c6783610ef1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611cb882611b80565b611cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cee90613be2565b60405180910390fd5b6000611d0283610ef1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d7157508373ffffffffffffffffffffffffffffffffffffffff16611d5984610868565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d825750611d8181856117d0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611dab82610ef1565b73ffffffffffffffffffffffffffffffffffffffff1614611e01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df890613ce2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6890613b42565b60405180910390fd5b611e7c8383836122b5565b611e87600082611bf4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ed79190613f52565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f2e9190613e71565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6120018282604051806020016040528060008152506123c9565b5050565b612010848484611d8b565b61201c84848484612424565b61205b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205290613ac2565b60405180910390fd5b50505050565b60606040518060400160405280602081526020017f68747470733a2f2f6170692e647269707065646d696365636c75622e636f6d2f815250905090565b606060008214156120e6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612246565b600082905060005b600082146121185780806121019061406e565b915050600a826121119190613ec7565b91506120ee565b60008167ffffffffffffffff81111561215a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561218c5781602001600182028036833780820191505090505b5090505b6000851461223f576001826121a59190613f52565b9150600a856121b491906140b7565b60306121c09190613e71565b60f81b8183815181106121fc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122389190613ec7565b9450612190565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6122c08383836125bb565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612303576122fe816125c0565b612342565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612341576123408382612609565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123855761238081612776565b6123c4565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146123c3576123c282826128b9565b5b5b505050565b6123d38383612938565b6123e06000848484612424565b61241f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241690613ac2565b60405180910390fd5b505050565b60006124458473ffffffffffffffffffffffffffffffffffffffff16612b06565b156125ae578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261246e611bec565b8786866040518563ffffffff1660e01b815260040161249094939291906139b9565b602060405180830381600087803b1580156124aa57600080fd5b505af19250505080156124db57506040513d601f19601f820116820180604052508101906124d89190612ec5565b60015b61255e573d806000811461250b576040519150601f19603f3d011682016040523d82523d6000602084013e612510565b606091505b50600081511415612556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254d90613ac2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125b3565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161261684610fa3565b6126209190613f52565b9050600060076000848152602001908152602001600020549050818114612705576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061278a9190613f52565b90506000600960008481526020019081526020016000205490506000600883815481106127e0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612828577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061289d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006128c483610fa3565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299f90613c82565b60405180910390fd5b6129b181611b80565b156129f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e890613b02565b60405180910390fd5b6129fd600083836122b5565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a4d9190613e71565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612b259061403c565b90600052602060002090601f016020900481019282612b475760008555612b8e565b82601f10612b6057805160ff1916838001178555612b8e565b82800160010185558215612b8e579182015b82811115612b8d578251825591602001919060010190612b72565b5b509050612b9b9190612b9f565b5090565b5b80821115612bb8576000816000905550600101612ba0565b5090565b6000612bcf612bca84613dce565b613d9d565b905082815260208101848484011115612be757600080fd5b612bf2848285613ffa565b509392505050565b6000612c0d612c0884613dfe565b613d9d565b905082815260208101848484011115612c2557600080fd5b612c30848285613ffa565b509392505050565b600081359050612c47816141b5565b92915050565b600081359050612c5c816141cc565b92915050565b600081359050612c71816141e3565b92915050565b600081519050612c86816141e3565b92915050565b600082601f830112612c9d57600080fd5b8135612cad848260208601612bbc565b91505092915050565b600082601f830112612cc757600080fd5b8135612cd7848260208601612bfa565b91505092915050565b600081359050612cef816141fa565b92915050565b600060208284031215612d0757600080fd5b6000612d1584828501612c38565b91505092915050565b60008060408385031215612d3157600080fd5b6000612d3f85828601612c38565b9250506020612d5085828601612c38565b9150509250929050565b600080600060608486031215612d6f57600080fd5b6000612d7d86828701612c38565b9350506020612d8e86828701612c38565b9250506040612d9f86828701612ce0565b9150509250925092565b60008060008060808587031215612dbf57600080fd5b6000612dcd87828801612c38565b9450506020612dde87828801612c38565b9350506040612def87828801612ce0565b925050606085013567ffffffffffffffff811115612e0c57600080fd5b612e1887828801612c8c565b91505092959194509250565b60008060408385031215612e3757600080fd5b6000612e4585828601612c38565b9250506020612e5685828601612c4d565b9150509250929050565b60008060408385031215612e7357600080fd5b6000612e8185828601612c38565b9250506020612e9285828601612ce0565b9150509250929050565b600060208284031215612eae57600080fd5b6000612ebc84828501612c62565b91505092915050565b600060208284031215612ed757600080fd5b6000612ee584828501612c77565b91505092915050565b600060208284031215612f0057600080fd5b600082013567ffffffffffffffff811115612f1a57600080fd5b612f2684828501612cb6565b91505092915050565b600060208284031215612f4157600080fd5b6000612f4f84828501612ce0565b91505092915050565b612f6181613f86565b82525050565b612f7081613f98565b82525050565b6000612f8182613e2e565b612f8b8185613e44565b9350612f9b818560208601614009565b612fa4816141a4565b840191505092915050565b6000612fba82613e39565b612fc48185613e55565b9350612fd4818560208601614009565b612fdd816141a4565b840191505092915050565b6000612ff382613e39565b612ffd8185613e66565b935061300d818560208601614009565b80840191505092915050565b6000613026601a83613e55565b91507f546869732073616c6520686173206e6f7420737461727465642e0000000000006000830152602082019050919050565b6000613066601583613e55565b91507f53616c6520686173206e6f7420737461727465642e00000000000000000000006000830152602082019050919050565b60006130a6604d83613e55565b91507f54686520616d6f756e74206f662044726970706564204d69636520796f75206160008301527f726520747279696e6720746f206d696e74206578636565647320746865204d4160208301527f585f4e46545f535550504c592e000000000000000000000000000000000000006040830152606082019050919050565b6000613132602b83613e55565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613198603283613e55565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006131fe602683613e55565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613264601c83613e55565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006132a4602183613e55565b91507f596f75206d757374206d696e74206174206c65617374206f6e65206d6f75736560008301527f2e000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061330a602483613e55565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613370601983613e55565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006133b0601a83613e55565b91507f416c6c204e4654732068617665206265656e206d696e7465642e0000000000006000830152602082019050919050565b60006133f0602283613e55565b91507f596f752063616e6e6f74206d696e74206d6f7265207468616e203230206d696360008301527f652e0000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613456603383613e55565b91507f4f776e65722063616e6e6f74206d696e7420746f6b656e73206166746572207460008301527f68652073616c652073746172742074696d652e000000000000000000000000006020830152604082019050919050565b60006134bc602c83613e55565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613522603883613e55565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613588602a83613e55565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006135ee602983613e55565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613654601683613e55565b91507f496e636f72726563742045746865722076616c75652e000000000000000000006000830152602082019050919050565b6000613694602083613e55565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006136d4602c83613e55565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061373a602083613e55565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061377a602983613e55565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006137e0602f83613e55565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613846602183613e55565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138ac603183613e55565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613912602c83613e55565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b61397481613ff0565b82525050565b60006139868285612fe8565b91506139928284612fe8565b91508190509392505050565b60006020820190506139b36000830184612f58565b92915050565b60006080820190506139ce6000830187612f58565b6139db6020830186612f58565b6139e8604083018561396b565b81810360608301526139fa8184612f76565b905095945050505050565b6000602082019050613a1a6000830184612f67565b92915050565b60006020820190508181036000830152613a3a8184612faf565b905092915050565b60006020820190508181036000830152613a5b81613019565b9050919050565b60006020820190508181036000830152613a7b81613059565b9050919050565b60006020820190508181036000830152613a9b81613099565b9050919050565b60006020820190508181036000830152613abb81613125565b9050919050565b60006020820190508181036000830152613adb8161318b565b9050919050565b60006020820190508181036000830152613afb816131f1565b9050919050565b60006020820190508181036000830152613b1b81613257565b9050919050565b60006020820190508181036000830152613b3b81613297565b9050919050565b60006020820190508181036000830152613b5b816132fd565b9050919050565b60006020820190508181036000830152613b7b81613363565b9050919050565b60006020820190508181036000830152613b9b816133a3565b9050919050565b60006020820190508181036000830152613bbb816133e3565b9050919050565b60006020820190508181036000830152613bdb81613449565b9050919050565b60006020820190508181036000830152613bfb816134af565b9050919050565b60006020820190508181036000830152613c1b81613515565b9050919050565b60006020820190508181036000830152613c3b8161357b565b9050919050565b60006020820190508181036000830152613c5b816135e1565b9050919050565b60006020820190508181036000830152613c7b81613647565b9050919050565b60006020820190508181036000830152613c9b81613687565b9050919050565b60006020820190508181036000830152613cbb816136c7565b9050919050565b60006020820190508181036000830152613cdb8161372d565b9050919050565b60006020820190508181036000830152613cfb8161376d565b9050919050565b60006020820190508181036000830152613d1b816137d3565b9050919050565b60006020820190508181036000830152613d3b81613839565b9050919050565b60006020820190508181036000830152613d5b8161389f565b9050919050565b60006020820190508181036000830152613d7b81613905565b9050919050565b6000602082019050613d97600083018461396b565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613dc457613dc3614175565b5b8060405250919050565b600067ffffffffffffffff821115613de957613de8614175565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613e1957613e18614175565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e7c82613ff0565b9150613e8783613ff0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ebc57613ebb6140e8565b5b828201905092915050565b6000613ed282613ff0565b9150613edd83613ff0565b925082613eed57613eec614117565b5b828204905092915050565b6000613f0382613ff0565b9150613f0e83613ff0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f4757613f466140e8565b5b828202905092915050565b6000613f5d82613ff0565b9150613f6883613ff0565b925082821015613f7b57613f7a6140e8565b5b828203905092915050565b6000613f9182613fd0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561402757808201518184015260208101905061400c565b83811115614036576000848401525b50505050565b6000600282049050600182168061405457607f821691505b6020821081141561406857614067614146565b5b50919050565b600061407982613ff0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140ac576140ab6140e8565b5b600182019050919050565b60006140c282613ff0565b91506140cd83613ff0565b9250826140dd576140dc614117565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6141be81613f86565b81146141c957600080fd5b50565b6141d581613f98565b81146141e057600080fd5b50565b6141ec81613fa4565b81146141f757600080fd5b50565b61420381613ff0565b811461420e57600080fd5b5056fea26469706673582212200771ed661f5b38411b933c54f2e2b8be3337d7ba62728adbe2fd0df9acc3e88264736f6c63430008000033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c806355367ba911610102578063a22cb46511610095578063c87b56dd11610064578063c87b56dd1461068e578063e985e9c5146106cb578063f2fde38b14610708578063ff1b655614610731576101e3565b8063a22cb465146105fa578063b5077f4414610623578063b66a0e5d1461064e578063b88d4fde14610665576101e3565b8063715018a6116100d1578063715018a6146105715780638da5cb5b1461058857806395d89b41146105b3578063a0712d68146105de576101e3565b806355367ba9146104b55780635c474f9e146104cc5780636352211e146104f757806370a0823114610534576101e3565b806327ac36c41161017a5780633ccfd60b116101495780633ccfd60b1461041a57806342842e0e1461042457806344dbb5711461044d5780634f6ccce714610478576101e3565b806327ac36c41461035e5780632dfd043d146103755780632f745c59146103a05780633bb3a24d146103dd576101e3565b806310969523116101b657806310969523146102b6578063119e4398146102df57806318160ddd1461030a57806323b872dd14610335576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612e9c565b61075c565b60405161021c9190613a05565b60405180910390f35b34801561023157600080fd5b5061023a6107d6565b6040516102479190613a20565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612f2f565b610868565b604051610284919061399e565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612e60565b6108ed565b005b3480156102c257600080fd5b506102dd60048036038101906102d89190612eee565b610a05565b005b3480156102eb57600080fd5b506102f4610a9b565b6040516103019190613d82565b60405180910390f35b34801561031657600080fd5b5061031f610aa0565b60405161032c9190613d82565b60405180910390f35b34801561034157600080fd5b5061035c60048036038101906103579190612d5a565b610aad565b005b34801561036a57600080fd5b50610373610b0d565b005b34801561038157600080fd5b5061038a610c08565b6040516103979190613d82565b60405180910390f35b3480156103ac57600080fd5b506103c760048036038101906103c29190612e60565b610c13565b6040516103d49190613d82565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff9190612f2f565b610cb8565b6040516104119190613a20565b60405180910390f35b610422610cca565b005b34801561043057600080fd5b5061044b60048036038101906104469190612d5a565b610d86565b005b34801561045957600080fd5b50610462610da6565b60405161046f9190613d82565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a9190612f2f565b610dae565b6040516104ac9190613d82565b60405180910390f35b3480156104c157600080fd5b506104ca610e45565b005b3480156104d857600080fd5b506104e1610ede565b6040516104ee9190613a05565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190612f2f565b610ef1565b60405161052b919061399e565b60405180910390f35b34801561054057600080fd5b5061055b60048036038101906105569190612cf5565b610fa3565b6040516105689190613d82565b60405180910390f35b34801561057d57600080fd5b5061058661105b565b005b34801561059457600080fd5b5061059d611198565b6040516105aa919061399e565b60405180910390f35b3480156105bf57600080fd5b506105c86111c2565b6040516105d59190613a20565b60405180910390f35b6105f860048036038101906105f39190612f2f565b611254565b005b34801561060657600080fd5b50610621600480360381019061061c9190612e24565b6114a7565b005b34801561062f57600080fd5b50610638611628565b6040516106459190613d82565b60405180910390f35b34801561065a57600080fd5b5061066361162e565b005b34801561067157600080fd5b5061068c60048036038101906106879190612da9565b6116c7565b005b34801561069a57600080fd5b506106b560048036038101906106b09190612f2f565b611729565b6040516106c29190613a20565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed9190612d1e565b6117d0565b6040516106ff9190613a05565b60405180910390f35b34801561071457600080fd5b5061072f600480360381019061072a9190612cf5565b611864565b005b34801561073d57600080fd5b50610746611a10565b6040516107539190613a20565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107cf57506107ce82611a9e565b5b9050919050565b6060600080546107e59061403c565b80601f01602080910402602001604051908101604052809291908181526020018280546108119061403c565b801561085e5780601f106108335761010080835404028352916020019161085e565b820191906000526020600020905b81548152906001019060200180831161084157829003601f168201915b5050505050905090565b600061087382611b80565b6108b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a990613ca2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f882610ef1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096090613d22565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610988611bec565b73ffffffffffffffffffffffffffffffffffffffff1614806109b757506109b6816109b1611bec565b6117d0565b5b6109f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ed90613c02565b60405180910390fd5b610a008383611bf4565b505050565b610a0d611bec565b73ffffffffffffffffffffffffffffffffffffffff16610a2b611198565b73ffffffffffffffffffffffffffffffffffffffff1614610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7890613cc2565b60405180910390fd5b80600b9080519060200190610a97929190612b19565b5050565b601481565b6000600880549050905090565b610abe610ab8611bec565b82611cad565b610afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af490613d42565b60405180910390fd5b610b08838383611d8b565b505050565b610b15611bec565b73ffffffffffffffffffffffffffffffffffffffff16610b33611198565b73ffffffffffffffffffffffffffffffffffffffff1614610b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8090613cc2565b60405180910390fd5b6360e0b3b04210610bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc690613bc2565b60405180910390fd5b60005b601e811015610c05576000610be5610aa0565b9050610bf13382611fe7565b508080610bfd9061406e565b915050610bd2565b50565b66d529ae9e86000081565b6000610c1e83610fa3565b8210610c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5690613aa2565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6060610cc382611729565b9050919050565b610cd2611bec565b73ffffffffffffffffffffffffffffffffffffffff16610cf0611198565b73ffffffffffffffffffffffffffffffffffffffff1614610d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3d90613cc2565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610d8457600080fd5b565b610da1838383604051806020016040528060008152506116c7565b505050565b6360e0b3b081565b6000610db8610aa0565b8210610df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df090613d62565b60405180910390fd5b60088281548110610e33577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610e4d611bec565b73ffffffffffffffffffffffffffffffffffffffff16610e6b611198565b73ffffffffffffffffffffffffffffffffffffffff1614610ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb890613cc2565b60405180910390fd5b6000600c60006101000a81548160ff021916908315150217905550565b600c60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9190613c42565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100b90613c22565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611063611bec565b73ffffffffffffffffffffffffffffffffffffffff16611081611198565b73ffffffffffffffffffffffffffffffffffffffff16146110d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ce90613cc2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546111d19061403c565b80601f01602080910402602001604051908101604052809291908181526020018280546111fd9061403c565b801561124a5780601f1061121f5761010080835404028352916020019161124a565b820191906000526020600020905b81548152906001019060200180831161122d57829003601f168201915b5050505050905090565b60011515600c60009054906101000a900460ff161515146112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a190613a42565b60405180910390fd5b6360e0b3b04210156112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e890613a62565b60405180910390fd5b611b586112fc610aa0565b1061133c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133390613b82565b60405180910390fd5b6000811161137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137690613b22565b60405180910390fd5b60148111156113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba90613ba2565b60405180910390fd5b611b58816113cf610aa0565b6113d99190613e71565b111561141a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141190613a82565b60405180910390fd5b348166d529ae9e86000061142e9190613ef8565b1461146e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146590613c62565b60405180910390fd5b60005b818110156114a3576000611483610aa0565b905061148f3382611fe7565b50808061149b9061406e565b915050611471565b5050565b6114af611bec565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561151d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151490613b62565b60405180910390fd5b806005600061152a611bec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115d7611bec565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161161c9190613a05565b60405180910390a35050565b611b5881565b611636611bec565b73ffffffffffffffffffffffffffffffffffffffff16611654611198565b73ffffffffffffffffffffffffffffffffffffffff16146116aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a190613cc2565b60405180910390fd5b6001600c60006101000a81548160ff021916908315150217905550565b6116d86116d2611bec565b83611cad565b611717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170e90613d42565b60405180910390fd5b61172384848484612005565b50505050565b606061173482611b80565b611773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176a90613d02565b60405180910390fd5b600061177d612061565b9050600081511161179d57604051806020016040528060008152506117c8565b806117a78461209e565b6040516020016117b892919061397a565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61186c611bec565b73ffffffffffffffffffffffffffffffffffffffff1661188a611198565b73ffffffffffffffffffffffffffffffffffffffff16146118e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d790613cc2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194790613ae2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b8054611a1d9061403c565b80601f0160208091040260200160405190810160405280929190818152602001828054611a499061403c565b8015611a965780601f10611a6b57610100808354040283529160200191611a96565b820191906000526020600020905b815481529060010190602001808311611a7957829003601f168201915b505050505081565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b6957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b795750611b788261224b565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c6783610ef1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611cb882611b80565b611cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cee90613be2565b60405180910390fd5b6000611d0283610ef1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d7157508373ffffffffffffffffffffffffffffffffffffffff16611d5984610868565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d825750611d8181856117d0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611dab82610ef1565b73ffffffffffffffffffffffffffffffffffffffff1614611e01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df890613ce2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6890613b42565b60405180910390fd5b611e7c8383836122b5565b611e87600082611bf4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ed79190613f52565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f2e9190613e71565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6120018282604051806020016040528060008152506123c9565b5050565b612010848484611d8b565b61201c84848484612424565b61205b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205290613ac2565b60405180910390fd5b50505050565b60606040518060400160405280602081526020017f68747470733a2f2f6170692e647269707065646d696365636c75622e636f6d2f815250905090565b606060008214156120e6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612246565b600082905060005b600082146121185780806121019061406e565b915050600a826121119190613ec7565b91506120ee565b60008167ffffffffffffffff81111561215a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561218c5781602001600182028036833780820191505090505b5090505b6000851461223f576001826121a59190613f52565b9150600a856121b491906140b7565b60306121c09190613e71565b60f81b8183815181106121fc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122389190613ec7565b9450612190565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6122c08383836125bb565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612303576122fe816125c0565b612342565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612341576123408382612609565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123855761238081612776565b6123c4565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146123c3576123c282826128b9565b5b5b505050565b6123d38383612938565b6123e06000848484612424565b61241f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241690613ac2565b60405180910390fd5b505050565b60006124458473ffffffffffffffffffffffffffffffffffffffff16612b06565b156125ae578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261246e611bec565b8786866040518563ffffffff1660e01b815260040161249094939291906139b9565b602060405180830381600087803b1580156124aa57600080fd5b505af19250505080156124db57506040513d601f19601f820116820180604052508101906124d89190612ec5565b60015b61255e573d806000811461250b576040519150601f19603f3d011682016040523d82523d6000602084013e612510565b606091505b50600081511415612556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254d90613ac2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125b3565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161261684610fa3565b6126209190613f52565b9050600060076000848152602001908152602001600020549050818114612705576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061278a9190613f52565b90506000600960008481526020019081526020016000205490506000600883815481106127e0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612828577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061289d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006128c483610fa3565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299f90613c82565b60405180910390fd5b6129b181611b80565b156129f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e890613b02565b60405180910390fd5b6129fd600083836122b5565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a4d9190613e71565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612b259061403c565b90600052602060002090601f016020900481019282612b475760008555612b8e565b82601f10612b6057805160ff1916838001178555612b8e565b82800160010185558215612b8e579182015b82811115612b8d578251825591602001919060010190612b72565b5b509050612b9b9190612b9f565b5090565b5b80821115612bb8576000816000905550600101612ba0565b5090565b6000612bcf612bca84613dce565b613d9d565b905082815260208101848484011115612be757600080fd5b612bf2848285613ffa565b509392505050565b6000612c0d612c0884613dfe565b613d9d565b905082815260208101848484011115612c2557600080fd5b612c30848285613ffa565b509392505050565b600081359050612c47816141b5565b92915050565b600081359050612c5c816141cc565b92915050565b600081359050612c71816141e3565b92915050565b600081519050612c86816141e3565b92915050565b600082601f830112612c9d57600080fd5b8135612cad848260208601612bbc565b91505092915050565b600082601f830112612cc757600080fd5b8135612cd7848260208601612bfa565b91505092915050565b600081359050612cef816141fa565b92915050565b600060208284031215612d0757600080fd5b6000612d1584828501612c38565b91505092915050565b60008060408385031215612d3157600080fd5b6000612d3f85828601612c38565b9250506020612d5085828601612c38565b9150509250929050565b600080600060608486031215612d6f57600080fd5b6000612d7d86828701612c38565b9350506020612d8e86828701612c38565b9250506040612d9f86828701612ce0565b9150509250925092565b60008060008060808587031215612dbf57600080fd5b6000612dcd87828801612c38565b9450506020612dde87828801612c38565b9350506040612def87828801612ce0565b925050606085013567ffffffffffffffff811115612e0c57600080fd5b612e1887828801612c8c565b91505092959194509250565b60008060408385031215612e3757600080fd5b6000612e4585828601612c38565b9250506020612e5685828601612c4d565b9150509250929050565b60008060408385031215612e7357600080fd5b6000612e8185828601612c38565b9250506020612e9285828601612ce0565b9150509250929050565b600060208284031215612eae57600080fd5b6000612ebc84828501612c62565b91505092915050565b600060208284031215612ed757600080fd5b6000612ee584828501612c77565b91505092915050565b600060208284031215612f0057600080fd5b600082013567ffffffffffffffff811115612f1a57600080fd5b612f2684828501612cb6565b91505092915050565b600060208284031215612f4157600080fd5b6000612f4f84828501612ce0565b91505092915050565b612f6181613f86565b82525050565b612f7081613f98565b82525050565b6000612f8182613e2e565b612f8b8185613e44565b9350612f9b818560208601614009565b612fa4816141a4565b840191505092915050565b6000612fba82613e39565b612fc48185613e55565b9350612fd4818560208601614009565b612fdd816141a4565b840191505092915050565b6000612ff382613e39565b612ffd8185613e66565b935061300d818560208601614009565b80840191505092915050565b6000613026601a83613e55565b91507f546869732073616c6520686173206e6f7420737461727465642e0000000000006000830152602082019050919050565b6000613066601583613e55565b91507f53616c6520686173206e6f7420737461727465642e00000000000000000000006000830152602082019050919050565b60006130a6604d83613e55565b91507f54686520616d6f756e74206f662044726970706564204d69636520796f75206160008301527f726520747279696e6720746f206d696e74206578636565647320746865204d4160208301527f585f4e46545f535550504c592e000000000000000000000000000000000000006040830152606082019050919050565b6000613132602b83613e55565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613198603283613e55565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006131fe602683613e55565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613264601c83613e55565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006132a4602183613e55565b91507f596f75206d757374206d696e74206174206c65617374206f6e65206d6f75736560008301527f2e000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061330a602483613e55565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613370601983613e55565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006133b0601a83613e55565b91507f416c6c204e4654732068617665206265656e206d696e7465642e0000000000006000830152602082019050919050565b60006133f0602283613e55565b91507f596f752063616e6e6f74206d696e74206d6f7265207468616e203230206d696360008301527f652e0000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613456603383613e55565b91507f4f776e65722063616e6e6f74206d696e7420746f6b656e73206166746572207460008301527f68652073616c652073746172742074696d652e000000000000000000000000006020830152604082019050919050565b60006134bc602c83613e55565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613522603883613e55565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613588602a83613e55565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006135ee602983613e55565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613654601683613e55565b91507f496e636f72726563742045746865722076616c75652e000000000000000000006000830152602082019050919050565b6000613694602083613e55565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006136d4602c83613e55565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061373a602083613e55565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061377a602983613e55565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006137e0602f83613e55565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613846602183613e55565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138ac603183613e55565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613912602c83613e55565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b61397481613ff0565b82525050565b60006139868285612fe8565b91506139928284612fe8565b91508190509392505050565b60006020820190506139b36000830184612f58565b92915050565b60006080820190506139ce6000830187612f58565b6139db6020830186612f58565b6139e8604083018561396b565b81810360608301526139fa8184612f76565b905095945050505050565b6000602082019050613a1a6000830184612f67565b92915050565b60006020820190508181036000830152613a3a8184612faf565b905092915050565b60006020820190508181036000830152613a5b81613019565b9050919050565b60006020820190508181036000830152613a7b81613059565b9050919050565b60006020820190508181036000830152613a9b81613099565b9050919050565b60006020820190508181036000830152613abb81613125565b9050919050565b60006020820190508181036000830152613adb8161318b565b9050919050565b60006020820190508181036000830152613afb816131f1565b9050919050565b60006020820190508181036000830152613b1b81613257565b9050919050565b60006020820190508181036000830152613b3b81613297565b9050919050565b60006020820190508181036000830152613b5b816132fd565b9050919050565b60006020820190508181036000830152613b7b81613363565b9050919050565b60006020820190508181036000830152613b9b816133a3565b9050919050565b60006020820190508181036000830152613bbb816133e3565b9050919050565b60006020820190508181036000830152613bdb81613449565b9050919050565b60006020820190508181036000830152613bfb816134af565b9050919050565b60006020820190508181036000830152613c1b81613515565b9050919050565b60006020820190508181036000830152613c3b8161357b565b9050919050565b60006020820190508181036000830152613c5b816135e1565b9050919050565b60006020820190508181036000830152613c7b81613647565b9050919050565b60006020820190508181036000830152613c9b81613687565b9050919050565b60006020820190508181036000830152613cbb816136c7565b9050919050565b60006020820190508181036000830152613cdb8161372d565b9050919050565b60006020820190508181036000830152613cfb8161376d565b9050919050565b60006020820190508181036000830152613d1b816137d3565b9050919050565b60006020820190508181036000830152613d3b81613839565b9050919050565b60006020820190508181036000830152613d5b8161389f565b9050919050565b60006020820190508181036000830152613d7b81613905565b9050919050565b6000602082019050613d97600083018461396b565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613dc457613dc3614175565b5b8060405250919050565b600067ffffffffffffffff821115613de957613de8614175565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613e1957613e18614175565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e7c82613ff0565b9150613e8783613ff0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ebc57613ebb6140e8565b5b828201905092915050565b6000613ed282613ff0565b9150613edd83613ff0565b925082613eed57613eec614117565b5b828204905092915050565b6000613f0382613ff0565b9150613f0e83613ff0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f4757613f466140e8565b5b828202905092915050565b6000613f5d82613ff0565b9150613f6883613ff0565b925082821015613f7b57613f7a6140e8565b5b828203905092915050565b6000613f9182613fd0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561402757808201518184015260208101905061400c565b83811115614036576000848401525b50505050565b6000600282049050600182168061405457607f821691505b6020821081141561406857614067614146565b5b50919050565b600061407982613ff0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140ac576140ab6140e8565b5b600182019050919050565b60006140c282613ff0565b91506140cd83613ff0565b9250826140dd576140dc614117565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6141be81613f86565b81146141c957600080fd5b50565b6141d581613f98565b81146141e057600080fd5b50565b6141ec81613fa4565b81146141f757600080fd5b50565b61420381613ff0565b811461420e57600080fd5b5056fea26469706673582212200771ed661f5b38411b933c54f2e2b8be3337d7ba62728adbe2fd0df9acc3e88264736f6c63430008000033

Deployed Bytecode Sourcemap

42827:2389:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34324:237;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21529:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22989:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22526:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44978:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42940:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34977:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23879:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44659:311;;;;;;;;;;;;;:::i;:::-;;42988:62;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34645:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43515:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45093:120;;;:::i;:::-;;24255:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43069:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35167:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44576:76;;;;;;;;;;;;;:::i;:::-;;43196:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21223:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20953:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42196:148;;;;;;;;;;;;;:::i;:::-;;41545:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21698:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43639:846;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23282:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42888:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44493:75;;;;;;;;;;;;;:::i;:::-;;24477:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21873:360;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23648:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42499:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43153:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34324:237;34426:4;34465:35;34450:50;;;:11;:50;;;;:103;;;;34517:36;34541:11;34517:23;:36::i;:::-;34450:103;34443:110;;34324:237;;;:::o;21529:100::-;21583:13;21616:5;21609:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21529:100;:::o;22989:221::-;23065:7;23093:16;23101:7;23093;:16::i;:::-;23085:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23178:15;:24;23194:7;23178:24;;;;;;;;;;;;;;;;;;;;;23171:31;;22989:221;;;:::o;22526:397::-;22607:13;22623:23;22638:7;22623:14;:23::i;:::-;22607:39;;22671:5;22665:11;;:2;:11;;;;22657:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22751:5;22735:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22760:37;22777:5;22784:12;:10;:12::i;:::-;22760:16;:37::i;:::-;22735:62;22727:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;22894:21;22903:2;22907:7;22894:8;:21::i;:::-;22526:397;;;:::o;44978:107::-;41776:12;:10;:12::i;:::-;41765:23;;:7;:5;:7::i;:::-;:23;;;41757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45072:5:::1;45054:15;:23;;;;;;;;;;;;:::i;:::-;;44978:107:::0;:::o;42940:41::-;42979:2;42940:41;:::o;34977:113::-;35038:7;35065:10;:17;;;;35058:24;;34977:113;:::o;23879:305::-;24040:41;24059:12;:10;:12::i;:::-;24073:7;24040:18;:41::i;:::-;24032:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24148:28;24158:4;24164:2;24168:7;24148:9;:28::i;:::-;23879:305;;;:::o;44659:311::-;41776:12;:10;:12::i;:::-;41765:23;;:7;:5;:7::i;:::-;:23;;;41757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43111:10:::1;44719:15;:33;44711:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;44832:9;44827:137;44851:2;44847:1;:6;44827:137;;;44874:17;44894:13;:11;:13::i;:::-;44874:33;;44921:32;44931:10;44943:9;44921;:32::i;:::-;44827:137;44855:3;;;;;:::i;:::-;;;;44827:137;;;;44659:311::o:0;42988:62::-;43033:17;42988:62;:::o;34645:256::-;34742:7;34778:23;34795:5;34778:16;:23::i;:::-;34770:5;:31;34762:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;34867:12;:19;34880:5;34867:19;;;;;;;;;;;;;;;:26;34887:5;34867:26;;;;;;;;;;;;34860:33;;34645:256;;;;:::o;43515:117::-;43574:13;43607:17;43616:7;43607:8;:17::i;:::-;43600:24;;43515:117;;;:::o;45093:120::-;41776:12;:10;:12::i;:::-;41765:23;;:7;:5;:7::i;:::-;:23;;;41757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45165:10:::1;45157:24;;:47;45182:21;45157:47;;;;;;;;;;;;;;;;;;;;;;;45149:56;;;::::0;::::1;;45093:120::o:0;24255:151::-;24359:39;24376:4;24382:2;24386:7;24359:39;;;;;;;;;;;;:16;:39::i;:::-;24255:151;;;:::o;43069:52::-;43111:10;43069:52;:::o;35167:233::-;35242:7;35278:30;:28;:30::i;:::-;35270:5;:38;35262:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35375:10;35386:5;35375:17;;;;;;;;;;;;;;;;;;;;;;;;35368:24;;35167:233;;;:::o;44576:76::-;41776:12;:10;:12::i;:::-;41765:23;;:7;:5;:7::i;:::-;:23;;;41757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44639:5:::1;44625:11;;:19;;;;;;;;;;;;;;;;;;44576:76::o:0;43196:30::-;;;;;;;;;;;;;:::o;21223:239::-;21295:7;21315:13;21331:7;:16;21339:7;21331:16;;;;;;;;;;;;;;;;;;;;;21315:32;;21383:1;21366:19;;:5;:19;;;;21358:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21449:5;21442:12;;;21223:239;;;:::o;20953:208::-;21025:7;21070:1;21053:19;;:5;:19;;;;21045:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21137:9;:16;21147:5;21137:16;;;;;;;;;;;;;;;;21130:23;;20953:208;;;:::o;42196:148::-;41776:12;:10;:12::i;:::-;41765:23;;:7;:5;:7::i;:::-;:23;;;41757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42303:1:::1;42266:40;;42287:6;;;;;;;;;;;42266:40;;;;;;;;;;;;42334:1;42317:6;;:19;;;;;;;;;;;;;;;;;;42196:148::o:0;41545:87::-;41591:7;41618:6;;;;;;;;;;;41611:13;;41545:87;:::o;21698:104::-;21754:13;21787:7;21780:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21698:104;:::o;43639:846::-;43724:4;43709:19;;:11;;;;;;;;;;;:19;;;43701:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;43111:10;43778:15;:34;;43770:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42929:4;43857:13;:11;:13::i;:::-;:30;43849:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;43952:1;43937:12;:16;43929:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;44026:2;44010:12;:18;;44002:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;42929:4;44102:12;44086:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:46;;44078:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;44280:9;44264:12;43033:17;44243:33;;;;:::i;:::-;:46;44235:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;44334:9;44329:150;44353:12;44349:1;:16;44329:150;;;44387:17;44407:13;:11;:13::i;:::-;44387:33;;44435:32;44445:10;44457:9;44435;:32::i;:::-;44329:150;44367:3;;;;;:::i;:::-;;;;44329:150;;;;43639:846;:::o;23282:295::-;23397:12;:10;:12::i;:::-;23385:24;;:8;:24;;;;23377:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23497:8;23452:18;:32;23471:12;:10;:12::i;:::-;23452:32;;;;;;;;;;;;;;;:42;23485:8;23452:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23550:8;23521:48;;23536:12;:10;:12::i;:::-;23521:48;;;23560:8;23521:48;;;;;;:::i;:::-;;;;;;;;23282:295;;:::o;42888:45::-;42929:4;42888:45;:::o;44493:75::-;41776:12;:10;:12::i;:::-;41765:23;;:7;:5;:7::i;:::-;:23;;;41757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44556:4:::1;44542:11;;:18;;;;;;;;;;;;;;;;;;44493:75::o:0;24477:285::-;24609:41;24628:12;:10;:12::i;:::-;24642:7;24609:18;:41::i;:::-;24601:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24715:39;24729:4;24735:2;24739:7;24748:5;24715:13;:39::i;:::-;24477:285;;;;:::o;21873:360::-;21946:13;21980:16;21988:7;21980;:16::i;:::-;21972:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22061:21;22085:10;:8;:10::i;:::-;22061:34;;22137:1;22119:7;22113:21;:25;:112;;;;;;;;;;;;;;;;;22178:7;22187:18;:7;:16;:18::i;:::-;22161:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22113:112;22106:119;;;21873:360;;;:::o;23648:164::-;23745:4;23769:18;:25;23788:5;23769:25;;;;;;;;;;;;;;;:35;23795:8;23769:35;;;;;;;;;;;;;;;;;;;;;;;;;23762:42;;23648:164;;;;:::o;42499:244::-;41776:12;:10;:12::i;:::-;41765:23;;:7;:5;:7::i;:::-;:23;;;41757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42608:1:::1;42588:22;;:8;:22;;;;42580:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42698:8;42669:38;;42690:6;;;;;;;;;;;42669:38;;;;;;;;;;;;42727:8;42718:6;;:17;;;;;;;;;;;;;;;;;;42499:244:::0;:::o;43153:34::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20597:292::-;20699:4;20738:25;20723:40;;;:11;:40;;;;:105;;;;20795:33;20780:48;;;:11;:48;;;;20723:105;:158;;;;20845:36;20869:11;20845:23;:36::i;:::-;20723:158;20716:165;;20597:292;;;:::o;26229:127::-;26294:4;26346:1;26318:30;;:7;:16;26326:7;26318:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26311:37;;26229:127;;;:::o;15885:98::-;15938:7;15965:10;15958:17;;15885:98;:::o;30106:174::-;30208:2;30181:15;:24;30197:7;30181:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30264:7;30260:2;30226:46;;30235:23;30250:7;30235:14;:23::i;:::-;30226:46;;;;;;;;;;;;30106:174;;:::o;26523:348::-;26616:4;26641:16;26649:7;26641;:16::i;:::-;26633:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26717:13;26733:23;26748:7;26733:14;:23::i;:::-;26717:39;;26786:5;26775:16;;:7;:16;;;:51;;;;26819:7;26795:31;;:20;26807:7;26795:11;:20::i;:::-;:31;;;26775:51;:87;;;;26830:32;26847:5;26854:7;26830:16;:32::i;:::-;26775:87;26767:96;;;26523:348;;;;:::o;29444:544::-;29569:4;29542:31;;:23;29557:7;29542:14;:23::i;:::-;:31;;;29534:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29652:1;29638:16;;:2;:16;;;;29630:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29708:39;29729:4;29735:2;29739:7;29708:20;:39::i;:::-;29812:29;29829:1;29833:7;29812:8;:29::i;:::-;29873:1;29854:9;:15;29864:4;29854:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;29902:1;29885:9;:13;29895:2;29885:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29933:2;29914:7;:16;29922:7;29914:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29972:7;29968:2;29953:27;;29962:4;29953:27;;;;;;;;;;;;29444:544;;;:::o;27213:110::-;27289:26;27299:2;27303:7;27289:26;;;;;;;;;;;;:9;:26::i;:::-;27213:110;;:::o;25644:272::-;25758:28;25768:4;25774:2;25778:7;25758:9;:28::i;:::-;25805:48;25828:4;25834:2;25838:7;25847:5;25805:22;:48::i;:::-;25797:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25644:272;;;;:::o;43372:135::-;43432:13;43458:41;;;;;;;;;;;;;;;;;;;43372:135;:::o;16540:723::-;16596:13;16826:1;16817:5;:10;16813:53;;;16844:10;;;;;;;;;;;;;;;;;;;;;16813:53;16876:12;16891:5;16876:20;;16907:14;16932:78;16947:1;16939:4;:9;16932:78;;16965:8;;;;;:::i;:::-;;;;16996:2;16988:10;;;;;:::i;:::-;;;16932:78;;;17020:19;17052:6;17042:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17020:39;;17070:154;17086:1;17077:5;:10;17070:154;;17114:1;17104:11;;;;;:::i;:::-;;;17181:2;17173:5;:10;;;;:::i;:::-;17160:2;:24;;;;:::i;:::-;17147:39;;17130:6;17137;17130:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;17210:2;17201:11;;;;;:::i;:::-;;;17070:154;;;17248:6;17234:21;;;;;16540:723;;;;:::o;19095:157::-;19180:4;19219:25;19204:40;;;:11;:40;;;;19197:47;;19095:157;;;:::o;36013:555::-;36123:45;36150:4;36156:2;36160:7;36123:26;:45::i;:::-;36201:1;36185:18;;:4;:18;;;36181:187;;;36220:40;36252:7;36220:31;:40::i;:::-;36181:187;;;36290:2;36282:10;;:4;:10;;;36278:90;;36309:47;36342:4;36348:7;36309:32;:47::i;:::-;36278:90;36181:187;36396:1;36382:16;;:2;:16;;;36378:183;;;36415:45;36452:7;36415:36;:45::i;:::-;36378:183;;;36488:4;36482:10;;:2;:10;;;36478:83;;36509:40;36537:2;36541:7;36509:27;:40::i;:::-;36478:83;36378:183;36013:555;;;:::o;27550:250::-;27646:18;27652:2;27656:7;27646:5;:18::i;:::-;27683:54;27714:1;27718:2;27722:7;27731:5;27683:22;:54::i;:::-;27675:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;27550:250;;;:::o;30845:843::-;30966:4;30992:15;:2;:13;;;:15::i;:::-;30988:693;;;31044:2;31028:36;;;31065:12;:10;:12::i;:::-;31079:4;31085:7;31094:5;31028:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31024:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31291:1;31274:6;:13;:18;31270:341;;;31317:60;;;;;;;;;;:::i;:::-;;;;;;;;31270:341;31561:6;31555:13;31546:6;31542:2;31538:15;31531:38;31024:602;31161:45;;;31151:55;;;:6;:55;;;;31144:62;;;;;30988:693;31665:4;31658:11;;30845:843;;;;;;;:::o;32301:93::-;;;;:::o;37291:164::-;37395:10;:17;;;;37368:15;:24;37384:7;37368:24;;;;;;;;;;;:44;;;;37423:10;37439:7;37423:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37291:164;:::o;38082:988::-;38348:22;38398:1;38373:22;38390:4;38373:16;:22::i;:::-;:26;;;;:::i;:::-;38348:51;;38410:18;38431:17;:26;38449:7;38431:26;;;;;;;;;;;;38410:47;;38578:14;38564:10;:28;38560:328;;38609:19;38631:12;:18;38644:4;38631:18;;;;;;;;;;;;;;;:34;38650:14;38631:34;;;;;;;;;;;;38609:56;;38715:11;38682:12;:18;38695:4;38682:18;;;;;;;;;;;;;;;:30;38701:10;38682:30;;;;;;;;;;;:44;;;;38832:10;38799:17;:30;38817:11;38799:30;;;;;;;;;;;:43;;;;38560:328;;38984:17;:26;39002:7;38984:26;;;;;;;;;;;38977:33;;;39028:12;:18;39041:4;39028:18;;;;;;;;;;;;;;;:34;39047:14;39028:34;;;;;;;;;;;39021:41;;;38082:988;;;;:::o;39365:1079::-;39618:22;39663:1;39643:10;:17;;;;:21;;;;:::i;:::-;39618:46;;39675:18;39696:15;:24;39712:7;39696:24;;;;;;;;;;;;39675:45;;40047:19;40069:10;40080:14;40069:26;;;;;;;;;;;;;;;;;;;;;;;;40047:48;;40133:11;40108:10;40119;40108:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;40244:10;40213:15;:28;40229:11;40213:28;;;;;;;;;;;:41;;;;40385:15;:24;40401:7;40385:24;;;;;;;;;;;40378:31;;;40420:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39365:1079;;;;:::o;36869:221::-;36954:14;36971:20;36988:2;36971:16;:20::i;:::-;36954:37;;37029:7;37002:12;:16;37015:2;37002:16;;;;;;;;;;;;;;;:24;37019:6;37002:24;;;;;;;;;;;:34;;;;37076:6;37047:17;:26;37065:7;37047:26;;;;;;;;;;;:35;;;;36869:221;;;:::o;28136:382::-;28230:1;28216:16;;:2;:16;;;;28208:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28289:16;28297:7;28289;:16::i;:::-;28288:17;28280:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28351:45;28380:1;28384:2;28388:7;28351:20;:45::i;:::-;28426:1;28409:9;:13;28419:2;28409:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28457:2;28438:7;:16;28446:7;28438:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28502:7;28498:2;28477:33;;28494:1;28477:33;;;;;;;;;;;;28136:382;;:::o;8002:422::-;8062:4;8270:12;8381:7;8369:20;8361:28;;8415:1;8408:4;:8;8401:15;;;8002:422;;;:::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:260::-;;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:52;5116:7;5107:6;5096:9;5092:22;5072:52;:::i;:::-;5062:62;;5018:116;4946:195;;;;:::o;5147:282::-;;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5281:1;5278;5271:12;5233:2;5324:1;5349:63;5404:7;5395:6;5384:9;5380:22;5349:63;:::i;:::-;5339:73;;5295:127;5223:206;;;;:::o;5435:375::-;;5553:2;5541:9;5532:7;5528:23;5524:32;5521:2;;;5569:1;5566;5559:12;5521:2;5640:1;5629:9;5625:17;5612:31;5670:18;5662:6;5659:30;5656:2;;;5702:1;5699;5692:12;5656:2;5730:63;5785:7;5776:6;5765:9;5761:22;5730:63;:::i;:::-;5720:73;;5583:220;5511:299;;;;:::o;5816:262::-;;5924:2;5912:9;5903:7;5899:23;5895:32;5892:2;;;5940:1;5937;5930:12;5892:2;5983:1;6008:53;6053:7;6044:6;6033:9;6029:22;6008:53;:::i;:::-;5998:63;;5954:117;5882:196;;;;:::o;6084:118::-;6171:24;6189:5;6171:24;:::i;:::-;6166:3;6159:37;6149:53;;:::o;6208:109::-;6289:21;6304:5;6289:21;:::i;:::-;6284:3;6277:34;6267:50;;:::o;6323:360::-;;6437:38;6469:5;6437:38;:::i;:::-;6491:70;6554:6;6549:3;6491:70;:::i;:::-;6484:77;;6570:52;6615:6;6610:3;6603:4;6596:5;6592:16;6570:52;:::i;:::-;6647:29;6669:6;6647:29;:::i;:::-;6642:3;6638:39;6631:46;;6413:270;;;;;:::o;6689:364::-;;6805:39;6838:5;6805:39;:::i;:::-;6860:71;6924:6;6919:3;6860:71;:::i;:::-;6853:78;;6940:52;6985:6;6980:3;6973:4;6966:5;6962:16;6940:52;:::i;:::-;7017:29;7039:6;7017:29;:::i;:::-;7012:3;7008:39;7001:46;;6781:272;;;;;:::o;7059:377::-;;7193:39;7226:5;7193:39;:::i;:::-;7248:89;7330:6;7325:3;7248:89;:::i;:::-;7241:96;;7346:52;7391:6;7386:3;7379:4;7372:5;7368:16;7346:52;:::i;:::-;7423:6;7418:3;7414:16;7407:23;;7169:267;;;;;:::o;7442:324::-;;7605:67;7669:2;7664:3;7605:67;:::i;:::-;7598:74;;7702:28;7698:1;7693:3;7689:11;7682:49;7757:2;7752:3;7748:12;7741:19;;7588:178;;;:::o;7772:319::-;;7935:67;7999:2;7994:3;7935:67;:::i;:::-;7928:74;;8032:23;8028:1;8023:3;8019:11;8012:44;8082:2;8077:3;8073:12;8066:19;;7918:173;;;:::o;8097:443::-;;8260:67;8324:2;8319:3;8260:67;:::i;:::-;8253:74;;8357:34;8353:1;8348:3;8344:11;8337:55;8423:34;8418:2;8413:3;8409:12;8402:56;8489:15;8484:2;8479:3;8475:12;8468:37;8531:2;8526:3;8522:12;8515:19;;8243:297;;;:::o;8546:375::-;;8709:67;8773:2;8768:3;8709:67;:::i;:::-;8702:74;;8806:34;8802:1;8797:3;8793:11;8786:55;8872:13;8867:2;8862:3;8858:12;8851:35;8912:2;8907:3;8903:12;8896:19;;8692:229;;;:::o;8927:382::-;;9090:67;9154:2;9149:3;9090:67;:::i;:::-;9083:74;;9187:34;9183:1;9178:3;9174:11;9167:55;9253:20;9248:2;9243:3;9239:12;9232:42;9300:2;9295:3;9291:12;9284:19;;9073:236;;;:::o;9315:370::-;;9478:67;9542:2;9537:3;9478:67;:::i;:::-;9471:74;;9575:34;9571:1;9566:3;9562:11;9555:55;9641:8;9636:2;9631:3;9627:12;9620:30;9676:2;9671:3;9667:12;9660:19;;9461:224;;;:::o;9691:326::-;;9854:67;9918:2;9913:3;9854:67;:::i;:::-;9847:74;;9951:30;9947:1;9942:3;9938:11;9931:51;10008:2;10003:3;9999:12;9992:19;;9837:180;;;:::o;10023:365::-;;10186:67;10250:2;10245:3;10186:67;:::i;:::-;10179:74;;10283:34;10279:1;10274:3;10270:11;10263:55;10349:3;10344:2;10339:3;10335:12;10328:25;10379:2;10374:3;10370:12;10363:19;;10169:219;;;:::o;10394:368::-;;10557:67;10621:2;10616:3;10557:67;:::i;:::-;10550:74;;10654:34;10650:1;10645:3;10641:11;10634:55;10720:6;10715:2;10710:3;10706:12;10699:28;10753:2;10748:3;10744:12;10737:19;;10540:222;;;:::o;10768:323::-;;10931:67;10995:2;10990:3;10931:67;:::i;:::-;10924:74;;11028:27;11024:1;11019:3;11015:11;11008:48;11082:2;11077:3;11073:12;11066:19;;10914:177;;;:::o;11097:324::-;;11260:67;11324:2;11319:3;11260:67;:::i;:::-;11253:74;;11357:28;11353:1;11348:3;11344:11;11337:49;11412:2;11407:3;11403:12;11396:19;;11243:178;;;:::o;11427:366::-;;11590:67;11654:2;11649:3;11590:67;:::i;:::-;11583:74;;11687:34;11683:1;11678:3;11674:11;11667:55;11753:4;11748:2;11743:3;11739:12;11732:26;11784:2;11779:3;11775:12;11768:19;;11573:220;;;:::o;11799:383::-;;11962:67;12026:2;12021:3;11962:67;:::i;:::-;11955:74;;12059:34;12055:1;12050:3;12046:11;12039:55;12125:21;12120:2;12115:3;12111:12;12104:43;12173:2;12168:3;12164:12;12157:19;;11945:237;;;:::o;12188:376::-;;12351:67;12415:2;12410:3;12351:67;:::i;:::-;12344:74;;12448:34;12444:1;12439:3;12435:11;12428:55;12514:14;12509:2;12504:3;12500:12;12493:36;12555:2;12550:3;12546:12;12539:19;;12334:230;;;:::o;12570:388::-;;12733:67;12797:2;12792:3;12733:67;:::i;:::-;12726:74;;12830:34;12826:1;12821:3;12817:11;12810:55;12896:26;12891:2;12886:3;12882:12;12875:48;12949:2;12944:3;12940:12;12933:19;;12716:242;;;:::o;12964:374::-;;13127:67;13191:2;13186:3;13127:67;:::i;:::-;13120:74;;13224:34;13220:1;13215:3;13211:11;13204:55;13290:12;13285:2;13280:3;13276:12;13269:34;13329:2;13324:3;13320:12;13313:19;;13110:228;;;:::o;13344:373::-;;13507:67;13571:2;13566:3;13507:67;:::i;:::-;13500:74;;13604:34;13600:1;13595:3;13591:11;13584:55;13670:11;13665:2;13660:3;13656:12;13649:33;13708:2;13703:3;13699:12;13692:19;;13490:227;;;:::o;13723:320::-;;13886:67;13950:2;13945:3;13886:67;:::i;:::-;13879:74;;13983:24;13979:1;13974:3;13970:11;13963:45;14034:2;14029:3;14025:12;14018:19;;13869:174;;;:::o;14049:330::-;;14212:67;14276:2;14271:3;14212:67;:::i;:::-;14205:74;;14309:34;14305:1;14300:3;14296:11;14289:55;14370:2;14365:3;14361:12;14354:19;;14195:184;;;:::o;14385:376::-;;14548:67;14612:2;14607:3;14548:67;:::i;:::-;14541:74;;14645:34;14641:1;14636:3;14632:11;14625:55;14711:14;14706:2;14701:3;14697:12;14690:36;14752:2;14747:3;14743:12;14736:19;;14531:230;;;:::o;14767:330::-;;14930:67;14994:2;14989:3;14930:67;:::i;:::-;14923:74;;15027:34;15023:1;15018:3;15014:11;15007:55;15088:2;15083:3;15079:12;15072:19;;14913:184;;;:::o;15103:373::-;;15266:67;15330:2;15325:3;15266:67;:::i;:::-;15259:74;;15363:34;15359:1;15354:3;15350:11;15343:55;15429:11;15424:2;15419:3;15415:12;15408:33;15467:2;15462:3;15458:12;15451:19;;15249:227;;;:::o;15482:379::-;;15645:67;15709:2;15704:3;15645:67;:::i;:::-;15638:74;;15742:34;15738:1;15733:3;15729:11;15722:55;15808:17;15803:2;15798:3;15794:12;15787:39;15852:2;15847:3;15843:12;15836:19;;15628:233;;;:::o;15867:365::-;;16030:67;16094:2;16089:3;16030:67;:::i;:::-;16023:74;;16127:34;16123:1;16118:3;16114:11;16107:55;16193:3;16188:2;16183:3;16179:12;16172:25;16223:2;16218:3;16214:12;16207:19;;16013:219;;;:::o;16238:381::-;;16401:67;16465:2;16460:3;16401:67;:::i;:::-;16394:74;;16498:34;16494:1;16489:3;16485:11;16478:55;16564:19;16559:2;16554:3;16550:12;16543:41;16610:2;16605:3;16601:12;16594:19;;16384:235;;;:::o;16625:376::-;;16788:67;16852:2;16847:3;16788:67;:::i;:::-;16781:74;;16885:34;16881:1;16876:3;16872:11;16865:55;16951:14;16946:2;16941:3;16937:12;16930:36;16992:2;16987:3;16983:12;16976:19;;16771:230;;;:::o;17007:118::-;17094:24;17112:5;17094:24;:::i;:::-;17089:3;17082:37;17072:53;;:::o;17131:435::-;;17333:95;17424:3;17415:6;17333:95;:::i;:::-;17326:102;;17445:95;17536:3;17527:6;17445:95;:::i;:::-;17438:102;;17557:3;17550:10;;17315:251;;;;;:::o;17572:222::-;;17703:2;17692:9;17688:18;17680:26;;17716:71;17784:1;17773:9;17769:17;17760:6;17716:71;:::i;:::-;17670:124;;;;:::o;17800:640::-;;18033:3;18022:9;18018:19;18010:27;;18047:71;18115:1;18104:9;18100:17;18091:6;18047:71;:::i;:::-;18128:72;18196:2;18185:9;18181:18;18172:6;18128:72;:::i;:::-;18210;18278:2;18267:9;18263:18;18254:6;18210:72;:::i;:::-;18329:9;18323:4;18319:20;18314:2;18303:9;18299:18;18292:48;18357:76;18428:4;18419:6;18357:76;:::i;:::-;18349:84;;18000:440;;;;;;;:::o;18446:210::-;;18571:2;18560:9;18556:18;18548:26;;18584:65;18646:1;18635:9;18631:17;18622:6;18584:65;:::i;:::-;18538:118;;;;:::o;18662:313::-;;18813:2;18802:9;18798:18;18790:26;;18862:9;18856:4;18852:20;18848:1;18837:9;18833:17;18826:47;18890:78;18963:4;18954:6;18890:78;:::i;:::-;18882:86;;18780:195;;;;:::o;18981:419::-;;19185:2;19174:9;19170:18;19162:26;;19234:9;19228:4;19224:20;19220:1;19209:9;19205:17;19198:47;19262:131;19388:4;19262:131;:::i;:::-;19254:139;;19152:248;;;:::o;19406:419::-;;19610:2;19599:9;19595:18;19587:26;;19659:9;19653:4;19649:20;19645:1;19634:9;19630:17;19623:47;19687:131;19813:4;19687:131;:::i;:::-;19679:139;;19577:248;;;:::o;19831:419::-;;20035:2;20024:9;20020:18;20012:26;;20084:9;20078:4;20074:20;20070:1;20059:9;20055:17;20048:47;20112:131;20238:4;20112:131;:::i;:::-;20104:139;;20002:248;;;:::o;20256:419::-;;20460:2;20449:9;20445:18;20437:26;;20509:9;20503:4;20499:20;20495:1;20484:9;20480:17;20473:47;20537:131;20663:4;20537:131;:::i;:::-;20529:139;;20427:248;;;:::o;20681:419::-;;20885:2;20874:9;20870:18;20862:26;;20934:9;20928:4;20924:20;20920:1;20909:9;20905:17;20898:47;20962:131;21088:4;20962:131;:::i;:::-;20954:139;;20852:248;;;:::o;21106:419::-;;21310:2;21299:9;21295:18;21287:26;;21359:9;21353:4;21349:20;21345:1;21334:9;21330:17;21323:47;21387:131;21513:4;21387:131;:::i;:::-;21379:139;;21277:248;;;:::o;21531:419::-;;21735:2;21724:9;21720:18;21712:26;;21784:9;21778:4;21774:20;21770:1;21759:9;21755:17;21748:47;21812:131;21938:4;21812:131;:::i;:::-;21804:139;;21702:248;;;:::o;21956:419::-;;22160:2;22149:9;22145:18;22137:26;;22209:9;22203:4;22199:20;22195:1;22184:9;22180:17;22173:47;22237:131;22363:4;22237:131;:::i;:::-;22229:139;;22127:248;;;:::o;22381:419::-;;22585:2;22574:9;22570:18;22562:26;;22634:9;22628:4;22624:20;22620:1;22609:9;22605:17;22598:47;22662:131;22788:4;22662:131;:::i;:::-;22654:139;;22552:248;;;:::o;22806:419::-;;23010:2;22999:9;22995:18;22987:26;;23059:9;23053:4;23049:20;23045:1;23034:9;23030:17;23023:47;23087:131;23213:4;23087:131;:::i;:::-;23079:139;;22977:248;;;:::o;23231:419::-;;23435:2;23424:9;23420:18;23412:26;;23484:9;23478:4;23474:20;23470:1;23459:9;23455:17;23448:47;23512:131;23638:4;23512:131;:::i;:::-;23504:139;;23402:248;;;:::o;23656:419::-;;23860:2;23849:9;23845:18;23837:26;;23909:9;23903:4;23899:20;23895:1;23884:9;23880:17;23873:47;23937:131;24063:4;23937:131;:::i;:::-;23929:139;;23827:248;;;:::o;24081:419::-;;24285:2;24274:9;24270:18;24262:26;;24334:9;24328:4;24324:20;24320:1;24309:9;24305:17;24298:47;24362:131;24488:4;24362:131;:::i;:::-;24354:139;;24252:248;;;:::o;24506:419::-;;24710:2;24699:9;24695:18;24687:26;;24759:9;24753:4;24749:20;24745:1;24734:9;24730:17;24723:47;24787:131;24913:4;24787:131;:::i;:::-;24779:139;;24677:248;;;:::o;24931:419::-;;25135:2;25124:9;25120:18;25112:26;;25184:9;25178:4;25174:20;25170:1;25159:9;25155:17;25148:47;25212:131;25338:4;25212:131;:::i;:::-;25204:139;;25102:248;;;:::o;25356:419::-;;25560:2;25549:9;25545:18;25537:26;;25609:9;25603:4;25599:20;25595:1;25584:9;25580:17;25573:47;25637:131;25763:4;25637:131;:::i;:::-;25629:139;;25527:248;;;:::o;25781:419::-;;25985:2;25974:9;25970:18;25962:26;;26034:9;26028:4;26024:20;26020:1;26009:9;26005:17;25998:47;26062:131;26188:4;26062:131;:::i;:::-;26054:139;;25952:248;;;:::o;26206:419::-;;26410:2;26399:9;26395:18;26387:26;;26459:9;26453:4;26449:20;26445:1;26434:9;26430:17;26423:47;26487:131;26613:4;26487:131;:::i;:::-;26479:139;;26377:248;;;:::o;26631:419::-;;26835:2;26824:9;26820:18;26812:26;;26884:9;26878:4;26874:20;26870:1;26859:9;26855:17;26848:47;26912:131;27038:4;26912:131;:::i;:::-;26904:139;;26802:248;;;:::o;27056:419::-;;27260:2;27249:9;27245:18;27237:26;;27309:9;27303:4;27299:20;27295:1;27284:9;27280:17;27273:47;27337:131;27463:4;27337:131;:::i;:::-;27329:139;;27227:248;;;:::o;27481:419::-;;27685:2;27674:9;27670:18;27662:26;;27734:9;27728:4;27724:20;27720:1;27709:9;27705:17;27698:47;27762:131;27888:4;27762:131;:::i;:::-;27754:139;;27652:248;;;:::o;27906:419::-;;28110:2;28099:9;28095:18;28087:26;;28159:9;28153:4;28149:20;28145:1;28134:9;28130:17;28123:47;28187:131;28313:4;28187:131;:::i;:::-;28179:139;;28077:248;;;:::o;28331:419::-;;28535:2;28524:9;28520:18;28512:26;;28584:9;28578:4;28574:20;28570:1;28559:9;28555:17;28548:47;28612:131;28738:4;28612:131;:::i;:::-;28604:139;;28502:248;;;:::o;28756:419::-;;28960:2;28949:9;28945:18;28937:26;;29009:9;29003:4;28999:20;28995:1;28984:9;28980:17;28973:47;29037:131;29163:4;29037:131;:::i;:::-;29029:139;;28927:248;;;:::o;29181:419::-;;29385:2;29374:9;29370:18;29362:26;;29434:9;29428:4;29424:20;29420:1;29409:9;29405:17;29398:47;29462:131;29588:4;29462:131;:::i;:::-;29454:139;;29352:248;;;:::o;29606:419::-;;29810:2;29799:9;29795:18;29787:26;;29859:9;29853:4;29849:20;29845:1;29834:9;29830:17;29823:47;29887:131;30013:4;29887:131;:::i;:::-;29879:139;;29777:248;;;:::o;30031:222::-;;30162:2;30151:9;30147:18;30139:26;;30175:71;30243:1;30232:9;30228:17;30219:6;30175:71;:::i;:::-;30129:124;;;;:::o;30259:283::-;;30325:2;30319:9;30309:19;;30367:4;30359:6;30355:17;30474:6;30462:10;30459:22;30438:18;30426:10;30423:34;30420:62;30417:2;;;30485:18;;:::i;:::-;30417:2;30525:10;30521:2;30514:22;30299:243;;;;:::o;30548:331::-;;30699:18;30691:6;30688:30;30685:2;;;30721:18;;:::i;:::-;30685:2;30806:4;30802:9;30795:4;30787:6;30783:17;30779:33;30771:41;;30867:4;30861;30857:15;30849:23;;30614:265;;;:::o;30885:332::-;;31037:18;31029:6;31026:30;31023:2;;;31059:18;;:::i;:::-;31023:2;31144:4;31140:9;31133:4;31125:6;31121:17;31117:33;31109:41;;31205:4;31199;31195:15;31187:23;;30952:265;;;:::o;31223:98::-;;31308:5;31302:12;31292:22;;31281:40;;;:::o;31327:99::-;;31413:5;31407:12;31397:22;;31386:40;;;:::o;31432:168::-;;31549:6;31544:3;31537:19;31589:4;31584:3;31580:14;31565:29;;31527:73;;;;:::o;31606:169::-;;31724:6;31719:3;31712:19;31764:4;31759:3;31755:14;31740:29;;31702:73;;;;:::o;31781:148::-;;31920:3;31905:18;;31895:34;;;;:::o;31935:305::-;;31994:20;32012:1;31994:20;:::i;:::-;31989:25;;32028:20;32046:1;32028:20;:::i;:::-;32023:25;;32182:1;32114:66;32110:74;32107:1;32104:81;32101:2;;;32188:18;;:::i;:::-;32101:2;32232:1;32229;32225:9;32218:16;;31979:261;;;;:::o;32246:185::-;;32303:20;32321:1;32303:20;:::i;:::-;32298:25;;32337:20;32355:1;32337:20;:::i;:::-;32332:25;;32376:1;32366:2;;32381:18;;:::i;:::-;32366:2;32423:1;32420;32416:9;32411:14;;32288:143;;;;:::o;32437:348::-;;32500:20;32518:1;32500:20;:::i;:::-;32495:25;;32534:20;32552:1;32534:20;:::i;:::-;32529:25;;32722:1;32654:66;32650:74;32647:1;32644:81;32639:1;32632:9;32625:17;32621:105;32618:2;;;32729:18;;:::i;:::-;32618:2;32777:1;32774;32770:9;32759:20;;32485:300;;;;:::o;32791:191::-;;32851:20;32869:1;32851:20;:::i;:::-;32846:25;;32885:20;32903:1;32885:20;:::i;:::-;32880:25;;32924:1;32921;32918:8;32915:2;;;32929:18;;:::i;:::-;32915:2;32974:1;32971;32967:9;32959:17;;32836:146;;;;:::o;32988:96::-;;33054:24;33072:5;33054:24;:::i;:::-;33043:35;;33033:51;;;:::o;33090:90::-;;33167:5;33160:13;33153:21;33142:32;;33132:48;;;:::o;33186:149::-;;33262:66;33255:5;33251:78;33240:89;;33230:105;;;:::o;33341:126::-;;33418:42;33411:5;33407:54;33396:65;;33386:81;;;:::o;33473:77::-;;33539:5;33528:16;;33518:32;;;:::o;33556:154::-;33640:6;33635:3;33630;33617:30;33702:1;33693:6;33688:3;33684:16;33677:27;33607:103;;;:::o;33716:307::-;33784:1;33794:113;33808:6;33805:1;33802:13;33794:113;;;33893:1;33888:3;33884:11;33878:18;33874:1;33869:3;33865:11;33858:39;33830:2;33827:1;33823:10;33818:15;;33794:113;;;33925:6;33922:1;33919:13;33916:2;;;34005:1;33996:6;33991:3;33987:16;33980:27;33916:2;33765:258;;;;:::o;34029:320::-;;34110:1;34104:4;34100:12;34090:22;;34157:1;34151:4;34147:12;34178:18;34168:2;;34234:4;34226:6;34222:17;34212:27;;34168:2;34296;34288:6;34285:14;34265:18;34262:38;34259:2;;;34315:18;;:::i;:::-;34259:2;34080:269;;;;:::o;34355:233::-;;34417:24;34435:5;34417:24;:::i;:::-;34408:33;;34463:66;34456:5;34453:77;34450:2;;;34533:18;;:::i;:::-;34450:2;34580:1;34573:5;34569:13;34562:20;;34398:190;;;:::o;34594:176::-;;34643:20;34661:1;34643:20;:::i;:::-;34638:25;;34677:20;34695:1;34677:20;:::i;:::-;34672:25;;34716:1;34706:2;;34721:18;;:::i;:::-;34706:2;34762:1;34759;34755:9;34750:14;;34628:142;;;;:::o;34776:180::-;34824:77;34821:1;34814:88;34921:4;34918:1;34911:15;34945:4;34942:1;34935:15;34962:180;35010:77;35007:1;35000:88;35107:4;35104:1;35097:15;35131:4;35128:1;35121:15;35148:180;35196:77;35193:1;35186:88;35293:4;35290:1;35283:15;35317:4;35314:1;35307:15;35334:180;35382:77;35379:1;35372:88;35479:4;35476:1;35469:15;35503:4;35500:1;35493:15;35520:102;;35612:2;35608:7;35603:2;35596:5;35592:14;35588:28;35578:38;;35568:54;;;:::o;35628:122::-;35701:24;35719:5;35701:24;:::i;:::-;35694:5;35691:35;35681:2;;35740:1;35737;35730:12;35681:2;35671:79;:::o;35756:116::-;35826:21;35841:5;35826:21;:::i;:::-;35819:5;35816:32;35806:2;;35862:1;35859;35852:12;35806:2;35796:76;:::o;35878:120::-;35950:23;35967:5;35950:23;:::i;:::-;35943:5;35940:34;35930:2;;35988:1;35985;35978:12;35930:2;35920:78;:::o;36004:122::-;36077:24;36095:5;36077:24;:::i;:::-;36070:5;36067:35;36057:2;;36116:1;36113;36106:12;36057:2;36047:79;:::o

Swarm Source

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