ETH Price: $3,330.96 (-4.37%)
Gas: 3 Gwei

Token

idotdotdot (idotdotdot)
 

Overview

Max Total Supply

2,187 idotdotdot

Holders

548

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
4t2.eth
Balance
3 idotdotdot
0x910417b896ae06fd115af55e54dcd657397bb607
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:
idotdotdot

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-06
*/

/**
 *Submitted for verification at Etherscan.io on 2021-09-02
*/

// SPDX-License-Identifier: MIT

/*
 *  _     _       _      _       _      _       _   
 * (_)   | |     | |    | |     | |    | |     | |  
 *  _  __| | ___ | |_ __| | ___ | |_ __| | ___ | |_ 
 * | |/ _` |/ _ \| __/ _` |/ _ \| __/ _` |/ _ \| __|
 * | | (_| | (_) | || (_| | (_) | || (_| | (_) | |_ 
 * |_|\__,_|\___/ \__\__,_|\___/ \__\__,_|\___/ \__|
 */

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

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

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

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


pragma solidity ^0.8.0;

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


pragma solidity ^0.8.0;

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
      * @dev Safely transfers `tokenId` token from `from` to `to`.
      *
      * Requirements:
      *
      * - `from` cannot be the zero address.
      * - `to` cannot be the zero address.
      * - `tokenId` token must exist and be owned by `from`.
      * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
      * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
      *
      * Emits a {Transfer} event.
      */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
}

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}




pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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


pragma solidity ^0.8.0;

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

        _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, true);

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

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

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

    function _burnSave(address owner, uint256 tokenId) internal virtual {

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

        // 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, true);

        // 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, bool isDelete) internal virtual { }
}

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, bool isDelete) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId, isDelete);

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;


contract idotdotdot is ERC721Enumerable, Ownable{
    using SafeMath for uint256;
    using Address for address;
    using Strings for uint256;


    uint256 public constant NFT_PRICE = 50000000000000000; // 0.05 ETH
    uint public constant MAX_NFT_PURCHASE = 5;
    uint256 public MAX_SUPPLY = 4360;
    bool public saleIsActive = true;

    uint256 public startingIndex;
    uint256 public startingIndexBlock;

    string private _baseURIExtended;
    mapping (uint256 => string) _tokenURIs;

    constructor() ERC721("idotdotdot","idotdotdot"){
         
    }


    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function reserveTokens(uint256 num) public onlyOwner {
        uint supply = totalSupply();
        uint i;
        for (i = 0; i < num; i++) {
            _safeMint(msg.sender, supply + i);
        }

        if (startingIndexBlock == 0) {
            startingIndexBlock = block.number;
        }
    }

    function setMaxTokenSupply(uint256 maxSupply) public onlyOwner {
        MAX_SUPPLY = maxSupply;
    }
    
    function getPrice(uint256 quantity) public view returns (uint256) {
        require(quantity <= MAX_SUPPLY);
        return quantity.mul(NFT_PRICE);
    }


    function mint(uint numberOfTokensMax5) public payable {
        require(saleIsActive, "Sale is not active at the moment");
        require(numberOfTokensMax5 > 0, "Number of tokens can not be less than or equal to 0");
        require(totalSupply().add(numberOfTokensMax5) <= MAX_SUPPLY, "Purchase would exceed max supply");
        require(numberOfTokensMax5 <= MAX_NFT_PURCHASE,"Can only mint up to 5 per purchase");
        
        uint256 price = getPrice(numberOfTokensMax5);

        // Ensure enough ETH
        require(msg.value >= price, "Not enough ETH sent");

        for (uint i = 0; i < numberOfTokensMax5; i++) {
            _safeMint(msg.sender, totalSupply());
        }
        
        // Return any remaining ether after the buy
        uint256 remaining = msg.value.sub(price);

        // Dont worry if you sent extra, We will return you the change.
        if (remaining > 0) {
            (bool success, ) = msg.sender.call{value: remaining}("");
            require(success);
        }
    }


    function calcStartingIndex() public onlyOwner {
        require(startingIndex == 0, "Starting index has already been set");
        require(startingIndexBlock != 0, "Starting index has not been set yet");

        startingIndex = uint(blockhash(startingIndexBlock)) % MAX_SUPPLY;
        // Just a sanity case in the worst case if this function is called late (EVM only stores last 256 block hashes)
        if(block.number.sub(startingIndexBlock) > 255) {
            startingIndex = uint(blockhash(block.number - 1)) % MAX_SUPPLY;
        }

        // To prevent original sequence
        if (startingIndex == 0) {
            startingIndex = startingIndex.add(1);
        }
    }

    function emergencySetStartingIndexBlock() public onlyOwner {
        require(startingIndex == 0, "Starting index is already set");
        startingIndexBlock = block.number;
    }

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

    // Sets base URI for all tokens, only able to be called by contract owner
    function setBaseURI(string memory baseURI_) external onlyOwner {
        _baseURIExtended = baseURI_;
    }

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(base, tokenId.toString()));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_NFT_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","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":[],"name":"calcStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emergencySetStartingIndexBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","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":"quantity","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokensMax5","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"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":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"name":"setMaxTokenSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"nonpayable","type":"function"}]

6080604052611108600b556001600c60006101000a81548160ff0219169083151502179055503480156200003257600080fd5b506040518060400160405280600a81526020017f69646f74646f74646f74000000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f69646f74646f74646f74000000000000000000000000000000000000000000008152508160009080519060200190620000b792919062000192565b508060019080519060200190620000d092919062000192565b5050506000620000e56200018a60201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620002a7565b600033905090565b828054620001a09062000242565b90600052602060002090601f016020900481019282620001c4576000855562000210565b82601f10620001df57805160ff191683800117855562000210565b8280016001018555821562000210579182015b828111156200020f578251825591602001919060010190620001f2565b5b5090506200021f919062000223565b5090565b5b808211156200023e57600081600090555060010162000224565b5090565b600060028204905060018216806200025b57607f821691505b6020821081141562000272576200027162000278565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61461c80620002b76000396000f3fe6080604052600436106101f95760003560e01c8063715018a61161010d578063c87b56dd116100a0578063e36d64981161006f578063e36d6498146106d8578063e757223014610703578063e985e9c514610740578063eb8d24441461077d578063f2fde38b146107a8576101f9565b8063c87b56dd14610630578063cb774d471461066d578063d031370b14610698578063e13f351a146106c1576101f9565b8063a0712d68116100dc578063a0712d6814610599578063a22cb465146105b5578063b07ed982146105de578063b88d4fde14610607576101f9565b8063715018a6146105155780637d17fcbe1461052c5780638da5cb5b1461054357806395d89b411461056e576101f9565b806332cb6b0c116101905780634f6ccce71161015f5780634f6ccce71461040a57806355f804b3146104475780636352211e14610470578063676dd563146104ad57806370a08231146104d8576101f9565b806332cb6b0c1461038857806334918dfd146103b35780633ccfd60b146103ca57806342842e0e146103e1576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce57806318160ddd146102f757806323b872dd146103225780632f745c591461034b576101f9565b806301ffc9a7146101fe578063020b39cc1461023b57806306fdde0314610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b506102256004803603810190610220919061325d565b6107d1565b6040516102329190613dcf565b60405180910390f35b34801561024757600080fd5b5061025061084b565b60405161025d919061414c565b60405180910390f35b34801561027257600080fd5b5061027b610850565b6040516102889190613dea565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b391906132f0565b6108e2565b6040516102c59190613d68565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f09190613221565b610967565b005b34801561030357600080fd5b5061030c610a7f565b604051610319919061414c565b60405180910390f35b34801561032e57600080fd5b506103496004803603810190610344919061311b565b610a8c565b005b34801561035757600080fd5b50610372600480360381019061036d9190613221565b610aec565b60405161037f919061414c565b60405180910390f35b34801561039457600080fd5b5061039d610b91565b6040516103aa919061414c565b60405180910390f35b3480156103bf57600080fd5b506103c8610b97565b005b3480156103d657600080fd5b506103df610c3f565b005b3480156103ed57600080fd5b506104086004803603810190610403919061311b565b610d0a565b005b34801561041657600080fd5b50610431600480360381019061042c91906132f0565b610d2a565b60405161043e919061414c565b60405180910390f35b34801561045357600080fd5b5061046e600480360381019061046991906132af565b610dc1565b005b34801561047c57600080fd5b50610497600480360381019061049291906132f0565b610e57565b6040516104a49190613d68565b60405180910390f35b3480156104b957600080fd5b506104c2610f09565b6040516104cf919061414c565b60405180910390f35b3480156104e457600080fd5b506104ff60048036038101906104fa91906130b6565b610f14565b60405161050c919061414c565b60405180910390f35b34801561052157600080fd5b5061052a610fcc565b005b34801561053857600080fd5b50610541611109565b005b34801561054f57600080fd5b506105586111d3565b6040516105659190613d68565b60405180910390f35b34801561057a57600080fd5b506105836111fd565b6040516105909190613dea565b60405180910390f35b6105b360048036038101906105ae91906132f0565b61128f565b005b3480156105c157600080fd5b506105dc60048036038101906105d791906131e5565b6114e0565b005b3480156105ea57600080fd5b50610605600480360381019061060091906132f0565b611661565b005b34801561061357600080fd5b5061062e6004803603810190610629919061316a565b6116e7565b005b34801561063c57600080fd5b50610657600480360381019061065291906132f0565b611749565b6040516106649190613dea565b60405180910390f35b34801561067957600080fd5b506106826118bc565b60405161068f919061414c565b60405180910390f35b3480156106a457600080fd5b506106bf60048036038101906106ba91906132f0565b6118c2565b005b3480156106cd57600080fd5b506106d6611995565b005b3480156106e457600080fd5b506106ed611b22565b6040516106fa919061414c565b60405180910390f35b34801561070f57600080fd5b5061072a600480360381019061072591906132f0565b611b28565b604051610737919061414c565b60405180910390f35b34801561074c57600080fd5b50610767600480360381019061076291906130df565b611b5a565b6040516107749190613dcf565b60405180910390f35b34801561078957600080fd5b50610792611bee565b60405161079f9190613dcf565b60405180910390f35b3480156107b457600080fd5b506107cf60048036038101906107ca91906130b6565b611c01565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610844575061084382611dad565b5b9050919050565b600581565b60606000805461085f90614411565b80601f016020809104026020016040519081016040528092919081815260200182805461088b90614411565b80156108d85780601f106108ad576101008083540402835291602001916108d8565b820191906000526020600020905b8154815290600101906020018083116108bb57829003601f168201915b5050505050905090565b60006108ed82611e8f565b61092c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109239061400c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097282610e57565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109da906140ac565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a02611efb565b73ffffffffffffffffffffffffffffffffffffffff161480610a315750610a3081610a2b611efb565b611b5a565b5b610a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6790613f6c565b60405180910390fd5b610a7a8383611f03565b505050565b6000600880549050905090565b610a9d610a97611efb565b82611fbc565b610adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad3906140cc565b60405180910390fd5b610ae783838361209a565b505050565b6000610af783610f14565b8210610b38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2f90613e4c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600b5481565b610b9f611efb565b73ffffffffffffffffffffffffffffffffffffffff16610bbd6111d3565b73ffffffffffffffffffffffffffffffffffffffff1614610c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0a9061402c565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b610c47611efb565b73ffffffffffffffffffffffffffffffffffffffff16610c656111d3565b73ffffffffffffffffffffffffffffffffffffffff1614610cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb29061402c565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d06573d6000803e3d6000fd5b5050565b610d25838383604051806020016040528060008152506116e7565b505050565b6000610d34610a7f565b8210610d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6c906140ec565b60405180910390fd5b60088281548110610daf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610dc9611efb565b73ffffffffffffffffffffffffffffffffffffffff16610de76111d3565b73ffffffffffffffffffffffffffffffffffffffff1614610e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e349061402c565b60405180910390fd5b80600f9080519060200190610e53929190612eda565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef790613fac565b60405180910390fd5b80915050919050565b66b1a2bc2ec5000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c90613f8c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fd4611efb565b73ffffffffffffffffffffffffffffffffffffffff16610ff26111d3565b73ffffffffffffffffffffffffffffffffffffffff1614611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f9061402c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611111611efb565b73ffffffffffffffffffffffffffffffffffffffff1661112f6111d3565b73ffffffffffffffffffffffffffffffffffffffff1614611185576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117c9061402c565b60405180910390fd5b6000600d54146111ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c190613f4c565b60405180910390fd5b43600e81905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461120c90614411565b80601f016020809104026020016040519081016040528092919081815260200182805461123890614411565b80156112855780601f1061125a57610100808354040283529160200191611285565b820191906000526020600020905b81548152906001019060200180831161126857829003601f168201915b5050505050905090565b600c60009054906101000a900460ff166112de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d59061412c565b60405180910390fd5b60008111611321576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131890613e2c565b60405180910390fd5b600b5461133e82611330610a7f565b6122f890919063ffffffff16565b111561137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137690613fcc565b60405180910390fd5b60058111156113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba90613ecc565b60405180910390fd5b60006113ce82611b28565b905080341015611413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140a9061408c565b60405180910390fd5b60005b828110156114425761142f3361142a610a7f565b61230e565b808061143a90614443565b915050611416565b506000611458823461232c90919063ffffffff16565b905060008111156114db5760003373ffffffffffffffffffffffffffffffffffffffff168260405161148990613d53565b60006040518083038185875af1925050503d80600081146114c6576040519150601f19603f3d011682016040523d82523d6000602084013e6114cb565b606091505b50509050806114d957600080fd5b505b505050565b6114e8611efb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154d90613f0c565b60405180910390fd5b8060056000611563611efb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611610611efb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116559190613dcf565b60405180910390a35050565b611669611efb565b73ffffffffffffffffffffffffffffffffffffffff166116876111d3565b73ffffffffffffffffffffffffffffffffffffffff16146116dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d49061402c565b60405180910390fd5b80600b8190555050565b6116f86116f2611efb565b83611fbc565b611737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172e906140cc565b60405180910390fd5b61174384848484612342565b50505050565b606061175482611e8f565b611793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178a9061406c565b60405180910390fd5b60006010600084815260200190815260200160002080546117b390614411565b80601f01602080910402602001604051908101604052809291908181526020018280546117df90614411565b801561182c5780601f106118015761010080835404028352916020019161182c565b820191906000526020600020905b81548152906001019060200180831161180f57829003601f168201915b50505050509050600061183d61239e565b90506000815114156118535781925050506118b7565b600082511115611888578082604051602001611870929190613d2f565b604051602081830303815290604052925050506118b7565b8061189285612430565b6040516020016118a3929190613d2f565b604051602081830303815290604052925050505b919050565b600d5481565b6118ca611efb565b73ffffffffffffffffffffffffffffffffffffffff166118e86111d3565b73ffffffffffffffffffffffffffffffffffffffff161461193e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119359061402c565b60405180910390fd5b6000611948610a7f565b905060005b8281101561197d5761196a3382846119659190614246565b61230e565b808061197590614443565b91505061194d565b6000600e5414156119905743600e819055505b505050565b61199d611efb565b73ffffffffffffffffffffffffffffffffffffffff166119bb6111d3565b73ffffffffffffffffffffffffffffffffffffffff1614611a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a089061402c565b60405180910390fd5b6000600d5414611a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4d9061410c565b60405180910390fd5b6000600e541415611a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9390613e0c565b60405180910390fd5b600b54600e544060001c611ab0919061448c565b600d8190555060ff611acd600e544361232c90919063ffffffff16565b1115611af857600b54600143611ae39190614327565b4060001c611af1919061448c565b600d819055505b6000600d541415611b2057611b196001600d546122f890919063ffffffff16565b600d819055505b565b600e5481565b6000600b54821115611b3957600080fd5b611b5366b1a2bc2ec50000836125dd90919063ffffffff16565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c60009054906101000a900460ff1681565b611c09611efb565b73ffffffffffffffffffffffffffffffffffffffff16611c276111d3565b73ffffffffffffffffffffffffffffffffffffffff1614611c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c749061402c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce490613e8c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e7857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e885750611e87826125f3565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f7683610e57565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611fc782611e8f565b612006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffd90613f2c565b60405180910390fd5b600061201183610e57565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061208057508373ffffffffffffffffffffffffffffffffffffffff16612068846108e2565b73ffffffffffffffffffffffffffffffffffffffff16145b8061209157506120908185611b5a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166120ba82610e57565b73ffffffffffffffffffffffffffffffffffffffff1614612110576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121079061404c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217790613eec565b60405180910390fd5b61218d838383600161265d565b612198600082611f03565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121e89190614327565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461223f9190614246565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081836123069190614246565b905092915050565b612328828260405180602001604052806000815250612787565b5050565b6000818361233a9190614327565b905092915050565b61234d84848461209a565b612359848484846127e2565b612398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238f90613e6c565b60405180910390fd5b50505050565b6060600f80546123ad90614411565b80601f01602080910402602001604051908101604052809291908181526020018280546123d990614411565b80156124265780601f106123fb57610100808354040283529160200191612426565b820191906000526020600020905b81548152906001019060200180831161240957829003601f168201915b5050505050905090565b60606000821415612478576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125d8565b600082905060005b600082146124aa57808061249390614443565b915050600a826124a3919061429c565b9150612480565b60008167ffffffffffffffff8111156124ec577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561251e5781602001600182028036833780820191505090505b5090505b600085146125d1576001826125379190614327565b9150600a85612546919061448c565b60306125529190614246565b60f81b81838151811061258e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125ca919061429c565b9450612522565b8093505050505b919050565b600081836125eb91906142cd565b905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61266984848484612979565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156126ac576126a78261297f565b6126eb565b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146126ea576126e984836129c8565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156127245750805b156127375761273282612b35565b612781565b8373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156127705750805b156127805761277f8383612c78565b5b5b50505050565b6127918383612cf7565b61279e60008484846127e2565b6127dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d490613e6c565b60405180910390fd5b505050565b60006128038473ffffffffffffffffffffffffffffffffffffffff16612ec7565b1561296c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261282c611efb565b8786866040518563ffffffff1660e01b815260040161284e9493929190613d83565b602060405180830381600087803b15801561286857600080fd5b505af192505050801561289957506040513d601f19601f820116820180604052508101906128969190613286565b60015b61291c573d80600081146128c9576040519150601f19603f3d011682016040523d82523d6000602084013e6128ce565b606091505b50600081511415612914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290b90613e6c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612971565b600190505b949350505050565b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016129d584610f14565b6129df9190614327565b9050600060076000848152602001908152602001600020549050818114612ac4576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612b499190614327565b9050600060096000848152602001908152602001600020549050600060088381548110612b9f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612be7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612c5c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612c8383610f14565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5e90613fec565b60405180910390fd5b612d7081611e8f565b15612db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da790613eac565b60405180910390fd5b612dbe60008383600161265d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e0e9190614246565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612ee690614411565b90600052602060002090601f016020900481019282612f085760008555612f4f565b82601f10612f2157805160ff1916838001178555612f4f565b82800160010185558215612f4f579182015b82811115612f4e578251825591602001919060010190612f33565b5b509050612f5c9190612f60565b5090565b5b80821115612f79576000816000905550600101612f61565b5090565b6000612f90612f8b84614198565b614167565b905082815260208101848484011115612fa857600080fd5b612fb38482856143cf565b509392505050565b6000612fce612fc9846141c8565b614167565b905082815260208101848484011115612fe657600080fd5b612ff18482856143cf565b509392505050565b6000813590506130088161458a565b92915050565b60008135905061301d816145a1565b92915050565b600081359050613032816145b8565b92915050565b600081519050613047816145b8565b92915050565b600082601f83011261305e57600080fd5b813561306e848260208601612f7d565b91505092915050565b600082601f83011261308857600080fd5b8135613098848260208601612fbb565b91505092915050565b6000813590506130b0816145cf565b92915050565b6000602082840312156130c857600080fd5b60006130d684828501612ff9565b91505092915050565b600080604083850312156130f257600080fd5b600061310085828601612ff9565b925050602061311185828601612ff9565b9150509250929050565b60008060006060848603121561313057600080fd5b600061313e86828701612ff9565b935050602061314f86828701612ff9565b9250506040613160868287016130a1565b9150509250925092565b6000806000806080858703121561318057600080fd5b600061318e87828801612ff9565b945050602061319f87828801612ff9565b93505060406131b0878288016130a1565b925050606085013567ffffffffffffffff8111156131cd57600080fd5b6131d98782880161304d565b91505092959194509250565b600080604083850312156131f857600080fd5b600061320685828601612ff9565b92505060206132178582860161300e565b9150509250929050565b6000806040838503121561323457600080fd5b600061324285828601612ff9565b9250506020613253858286016130a1565b9150509250929050565b60006020828403121561326f57600080fd5b600061327d84828501613023565b91505092915050565b60006020828403121561329857600080fd5b60006132a684828501613038565b91505092915050565b6000602082840312156132c157600080fd5b600082013567ffffffffffffffff8111156132db57600080fd5b6132e784828501613077565b91505092915050565b60006020828403121561330257600080fd5b6000613310848285016130a1565b91505092915050565b6133228161435b565b82525050565b6133318161436d565b82525050565b6000613342826141f8565b61334c818561420e565b935061335c8185602086016143de565b61336581614579565b840191505092915050565b600061337b82614203565b613385818561422a565b93506133958185602086016143de565b61339e81614579565b840191505092915050565b60006133b482614203565b6133be818561423b565b93506133ce8185602086016143de565b80840191505092915050565b60006133e760238361422a565b91507f5374617274696e6720696e64657820686173206e6f74206265656e207365742060008301527f79657400000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061344d60338361422a565b91507f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c65737360008301527f207468616e206f7220657175616c20746f2030000000000000000000000000006020830152604082019050919050565b60006134b3602b8361422a565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b600061351960328361422a565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061357f60268361422a565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006135e5601c8361422a565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061362560228361422a565b91507f43616e206f6e6c79206d696e7420757020746f2035207065722070757263686160008301527f73650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061368b60248361422a565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006136f160198361422a565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613731602c8361422a565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613797601d8361422a565b91507f5374617274696e6720696e64657820697320616c7265616479207365740000006000830152602082019050919050565b60006137d760388361422a565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061383d602a8361422a565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006138a360298361422a565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061390960208361422a565b91507f507572636861736520776f756c6420657863656564206d617820737570706c796000830152602082019050919050565b600061394960208361422a565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613989602c8361422a565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006139ef60208361422a565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613a2f60298361422a565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a95602f8361422a565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613afb60138361422a565b91507f4e6f7420656e6f756768204554482073656e74000000000000000000000000006000830152602082019050919050565b6000613b3b60218361422a565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ba160008361421f565b9150600082019050919050565b6000613bbb60318361422a565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613c21602c8361422a565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000613c8760238361422a565b91507f5374617274696e6720696e6465782068617320616c7265616479206265656e2060008301527f73657400000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ced60208361422a565b91507f53616c65206973206e6f742061637469766520617420746865206d6f6d656e746000830152602082019050919050565b613d29816143c5565b82525050565b6000613d3b82856133a9565b9150613d4782846133a9565b91508190509392505050565b6000613d5e82613b94565b9150819050919050565b6000602082019050613d7d6000830184613319565b92915050565b6000608082019050613d986000830187613319565b613da56020830186613319565b613db26040830185613d20565b8181036060830152613dc48184613337565b905095945050505050565b6000602082019050613de46000830184613328565b92915050565b60006020820190508181036000830152613e048184613370565b905092915050565b60006020820190508181036000830152613e25816133da565b9050919050565b60006020820190508181036000830152613e4581613440565b9050919050565b60006020820190508181036000830152613e65816134a6565b9050919050565b60006020820190508181036000830152613e858161350c565b9050919050565b60006020820190508181036000830152613ea581613572565b9050919050565b60006020820190508181036000830152613ec5816135d8565b9050919050565b60006020820190508181036000830152613ee581613618565b9050919050565b60006020820190508181036000830152613f058161367e565b9050919050565b60006020820190508181036000830152613f25816136e4565b9050919050565b60006020820190508181036000830152613f4581613724565b9050919050565b60006020820190508181036000830152613f658161378a565b9050919050565b60006020820190508181036000830152613f85816137ca565b9050919050565b60006020820190508181036000830152613fa581613830565b9050919050565b60006020820190508181036000830152613fc581613896565b9050919050565b60006020820190508181036000830152613fe5816138fc565b9050919050565b600060208201905081810360008301526140058161393c565b9050919050565b600060208201905081810360008301526140258161397c565b9050919050565b60006020820190508181036000830152614045816139e2565b9050919050565b6000602082019050818103600083015261406581613a22565b9050919050565b6000602082019050818103600083015261408581613a88565b9050919050565b600060208201905081810360008301526140a581613aee565b9050919050565b600060208201905081810360008301526140c581613b2e565b9050919050565b600060208201905081810360008301526140e581613bae565b9050919050565b6000602082019050818103600083015261410581613c14565b9050919050565b6000602082019050818103600083015261412581613c7a565b9050919050565b6000602082019050818103600083015261414581613ce0565b9050919050565b60006020820190506141616000830184613d20565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561418e5761418d61454a565b5b8060405250919050565b600067ffffffffffffffff8211156141b3576141b261454a565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156141e3576141e261454a565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614251826143c5565b915061425c836143c5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614291576142906144bd565b5b828201905092915050565b60006142a7826143c5565b91506142b2836143c5565b9250826142c2576142c16144ec565b5b828204905092915050565b60006142d8826143c5565b91506142e3836143c5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561431c5761431b6144bd565b5b828202905092915050565b6000614332826143c5565b915061433d836143c5565b9250828210156143505761434f6144bd565b5b828203905092915050565b6000614366826143a5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156143fc5780820151818401526020810190506143e1565b8381111561440b576000848401525b50505050565b6000600282049050600182168061442957607f821691505b6020821081141561443d5761443c61451b565b5b50919050565b600061444e826143c5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614481576144806144bd565b5b600182019050919050565b6000614497826143c5565b91506144a2836143c5565b9250826144b2576144b16144ec565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6145938161435b565b811461459e57600080fd5b50565b6145aa8161436d565b81146145b557600080fd5b50565b6145c181614379565b81146145cc57600080fd5b50565b6145d8816143c5565b81146145e357600080fd5b5056fea2646970667358221220abe50b6fcd7cb0b1d91ec30932274763fcdd5a5cbe9809d60bd939edd7b7058a64736f6c63430008000033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c8063715018a61161010d578063c87b56dd116100a0578063e36d64981161006f578063e36d6498146106d8578063e757223014610703578063e985e9c514610740578063eb8d24441461077d578063f2fde38b146107a8576101f9565b8063c87b56dd14610630578063cb774d471461066d578063d031370b14610698578063e13f351a146106c1576101f9565b8063a0712d68116100dc578063a0712d6814610599578063a22cb465146105b5578063b07ed982146105de578063b88d4fde14610607576101f9565b8063715018a6146105155780637d17fcbe1461052c5780638da5cb5b1461054357806395d89b411461056e576101f9565b806332cb6b0c116101905780634f6ccce71161015f5780634f6ccce71461040a57806355f804b3146104475780636352211e14610470578063676dd563146104ad57806370a08231146104d8576101f9565b806332cb6b0c1461038857806334918dfd146103b35780633ccfd60b146103ca57806342842e0e146103e1576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce57806318160ddd146102f757806323b872dd146103225780632f745c591461034b576101f9565b806301ffc9a7146101fe578063020b39cc1461023b57806306fdde0314610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b506102256004803603810190610220919061325d565b6107d1565b6040516102329190613dcf565b60405180910390f35b34801561024757600080fd5b5061025061084b565b60405161025d919061414c565b60405180910390f35b34801561027257600080fd5b5061027b610850565b6040516102889190613dea565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b391906132f0565b6108e2565b6040516102c59190613d68565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f09190613221565b610967565b005b34801561030357600080fd5b5061030c610a7f565b604051610319919061414c565b60405180910390f35b34801561032e57600080fd5b506103496004803603810190610344919061311b565b610a8c565b005b34801561035757600080fd5b50610372600480360381019061036d9190613221565b610aec565b60405161037f919061414c565b60405180910390f35b34801561039457600080fd5b5061039d610b91565b6040516103aa919061414c565b60405180910390f35b3480156103bf57600080fd5b506103c8610b97565b005b3480156103d657600080fd5b506103df610c3f565b005b3480156103ed57600080fd5b506104086004803603810190610403919061311b565b610d0a565b005b34801561041657600080fd5b50610431600480360381019061042c91906132f0565b610d2a565b60405161043e919061414c565b60405180910390f35b34801561045357600080fd5b5061046e600480360381019061046991906132af565b610dc1565b005b34801561047c57600080fd5b50610497600480360381019061049291906132f0565b610e57565b6040516104a49190613d68565b60405180910390f35b3480156104b957600080fd5b506104c2610f09565b6040516104cf919061414c565b60405180910390f35b3480156104e457600080fd5b506104ff60048036038101906104fa91906130b6565b610f14565b60405161050c919061414c565b60405180910390f35b34801561052157600080fd5b5061052a610fcc565b005b34801561053857600080fd5b50610541611109565b005b34801561054f57600080fd5b506105586111d3565b6040516105659190613d68565b60405180910390f35b34801561057a57600080fd5b506105836111fd565b6040516105909190613dea565b60405180910390f35b6105b360048036038101906105ae91906132f0565b61128f565b005b3480156105c157600080fd5b506105dc60048036038101906105d791906131e5565b6114e0565b005b3480156105ea57600080fd5b50610605600480360381019061060091906132f0565b611661565b005b34801561061357600080fd5b5061062e6004803603810190610629919061316a565b6116e7565b005b34801561063c57600080fd5b50610657600480360381019061065291906132f0565b611749565b6040516106649190613dea565b60405180910390f35b34801561067957600080fd5b506106826118bc565b60405161068f919061414c565b60405180910390f35b3480156106a457600080fd5b506106bf60048036038101906106ba91906132f0565b6118c2565b005b3480156106cd57600080fd5b506106d6611995565b005b3480156106e457600080fd5b506106ed611b22565b6040516106fa919061414c565b60405180910390f35b34801561070f57600080fd5b5061072a600480360381019061072591906132f0565b611b28565b604051610737919061414c565b60405180910390f35b34801561074c57600080fd5b50610767600480360381019061076291906130df565b611b5a565b6040516107749190613dcf565b60405180910390f35b34801561078957600080fd5b50610792611bee565b60405161079f9190613dcf565b60405180910390f35b3480156107b457600080fd5b506107cf60048036038101906107ca91906130b6565b611c01565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610844575061084382611dad565b5b9050919050565b600581565b60606000805461085f90614411565b80601f016020809104026020016040519081016040528092919081815260200182805461088b90614411565b80156108d85780601f106108ad576101008083540402835291602001916108d8565b820191906000526020600020905b8154815290600101906020018083116108bb57829003601f168201915b5050505050905090565b60006108ed82611e8f565b61092c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109239061400c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097282610e57565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109da906140ac565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a02611efb565b73ffffffffffffffffffffffffffffffffffffffff161480610a315750610a3081610a2b611efb565b611b5a565b5b610a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6790613f6c565b60405180910390fd5b610a7a8383611f03565b505050565b6000600880549050905090565b610a9d610a97611efb565b82611fbc565b610adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad3906140cc565b60405180910390fd5b610ae783838361209a565b505050565b6000610af783610f14565b8210610b38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2f90613e4c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600b5481565b610b9f611efb565b73ffffffffffffffffffffffffffffffffffffffff16610bbd6111d3565b73ffffffffffffffffffffffffffffffffffffffff1614610c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0a9061402c565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b610c47611efb565b73ffffffffffffffffffffffffffffffffffffffff16610c656111d3565b73ffffffffffffffffffffffffffffffffffffffff1614610cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb29061402c565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d06573d6000803e3d6000fd5b5050565b610d25838383604051806020016040528060008152506116e7565b505050565b6000610d34610a7f565b8210610d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6c906140ec565b60405180910390fd5b60088281548110610daf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610dc9611efb565b73ffffffffffffffffffffffffffffffffffffffff16610de76111d3565b73ffffffffffffffffffffffffffffffffffffffff1614610e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e349061402c565b60405180910390fd5b80600f9080519060200190610e53929190612eda565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef790613fac565b60405180910390fd5b80915050919050565b66b1a2bc2ec5000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c90613f8c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fd4611efb565b73ffffffffffffffffffffffffffffffffffffffff16610ff26111d3565b73ffffffffffffffffffffffffffffffffffffffff1614611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f9061402c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611111611efb565b73ffffffffffffffffffffffffffffffffffffffff1661112f6111d3565b73ffffffffffffffffffffffffffffffffffffffff1614611185576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117c9061402c565b60405180910390fd5b6000600d54146111ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c190613f4c565b60405180910390fd5b43600e81905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461120c90614411565b80601f016020809104026020016040519081016040528092919081815260200182805461123890614411565b80156112855780601f1061125a57610100808354040283529160200191611285565b820191906000526020600020905b81548152906001019060200180831161126857829003601f168201915b5050505050905090565b600c60009054906101000a900460ff166112de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d59061412c565b60405180910390fd5b60008111611321576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131890613e2c565b60405180910390fd5b600b5461133e82611330610a7f565b6122f890919063ffffffff16565b111561137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137690613fcc565b60405180910390fd5b60058111156113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba90613ecc565b60405180910390fd5b60006113ce82611b28565b905080341015611413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140a9061408c565b60405180910390fd5b60005b828110156114425761142f3361142a610a7f565b61230e565b808061143a90614443565b915050611416565b506000611458823461232c90919063ffffffff16565b905060008111156114db5760003373ffffffffffffffffffffffffffffffffffffffff168260405161148990613d53565b60006040518083038185875af1925050503d80600081146114c6576040519150601f19603f3d011682016040523d82523d6000602084013e6114cb565b606091505b50509050806114d957600080fd5b505b505050565b6114e8611efb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154d90613f0c565b60405180910390fd5b8060056000611563611efb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611610611efb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116559190613dcf565b60405180910390a35050565b611669611efb565b73ffffffffffffffffffffffffffffffffffffffff166116876111d3565b73ffffffffffffffffffffffffffffffffffffffff16146116dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d49061402c565b60405180910390fd5b80600b8190555050565b6116f86116f2611efb565b83611fbc565b611737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172e906140cc565b60405180910390fd5b61174384848484612342565b50505050565b606061175482611e8f565b611793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178a9061406c565b60405180910390fd5b60006010600084815260200190815260200160002080546117b390614411565b80601f01602080910402602001604051908101604052809291908181526020018280546117df90614411565b801561182c5780601f106118015761010080835404028352916020019161182c565b820191906000526020600020905b81548152906001019060200180831161180f57829003601f168201915b50505050509050600061183d61239e565b90506000815114156118535781925050506118b7565b600082511115611888578082604051602001611870929190613d2f565b604051602081830303815290604052925050506118b7565b8061189285612430565b6040516020016118a3929190613d2f565b604051602081830303815290604052925050505b919050565b600d5481565b6118ca611efb565b73ffffffffffffffffffffffffffffffffffffffff166118e86111d3565b73ffffffffffffffffffffffffffffffffffffffff161461193e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119359061402c565b60405180910390fd5b6000611948610a7f565b905060005b8281101561197d5761196a3382846119659190614246565b61230e565b808061197590614443565b91505061194d565b6000600e5414156119905743600e819055505b505050565b61199d611efb565b73ffffffffffffffffffffffffffffffffffffffff166119bb6111d3565b73ffffffffffffffffffffffffffffffffffffffff1614611a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a089061402c565b60405180910390fd5b6000600d5414611a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4d9061410c565b60405180910390fd5b6000600e541415611a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9390613e0c565b60405180910390fd5b600b54600e544060001c611ab0919061448c565b600d8190555060ff611acd600e544361232c90919063ffffffff16565b1115611af857600b54600143611ae39190614327565b4060001c611af1919061448c565b600d819055505b6000600d541415611b2057611b196001600d546122f890919063ffffffff16565b600d819055505b565b600e5481565b6000600b54821115611b3957600080fd5b611b5366b1a2bc2ec50000836125dd90919063ffffffff16565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c60009054906101000a900460ff1681565b611c09611efb565b73ffffffffffffffffffffffffffffffffffffffff16611c276111d3565b73ffffffffffffffffffffffffffffffffffffffff1614611c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c749061402c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce490613e8c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e7857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e885750611e87826125f3565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f7683610e57565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611fc782611e8f565b612006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffd90613f2c565b60405180910390fd5b600061201183610e57565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061208057508373ffffffffffffffffffffffffffffffffffffffff16612068846108e2565b73ffffffffffffffffffffffffffffffffffffffff16145b8061209157506120908185611b5a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166120ba82610e57565b73ffffffffffffffffffffffffffffffffffffffff1614612110576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121079061404c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217790613eec565b60405180910390fd5b61218d838383600161265d565b612198600082611f03565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121e89190614327565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461223f9190614246565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081836123069190614246565b905092915050565b612328828260405180602001604052806000815250612787565b5050565b6000818361233a9190614327565b905092915050565b61234d84848461209a565b612359848484846127e2565b612398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238f90613e6c565b60405180910390fd5b50505050565b6060600f80546123ad90614411565b80601f01602080910402602001604051908101604052809291908181526020018280546123d990614411565b80156124265780601f106123fb57610100808354040283529160200191612426565b820191906000526020600020905b81548152906001019060200180831161240957829003601f168201915b5050505050905090565b60606000821415612478576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125d8565b600082905060005b600082146124aa57808061249390614443565b915050600a826124a3919061429c565b9150612480565b60008167ffffffffffffffff8111156124ec577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561251e5781602001600182028036833780820191505090505b5090505b600085146125d1576001826125379190614327565b9150600a85612546919061448c565b60306125529190614246565b60f81b81838151811061258e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125ca919061429c565b9450612522565b8093505050505b919050565b600081836125eb91906142cd565b905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61266984848484612979565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156126ac576126a78261297f565b6126eb565b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146126ea576126e984836129c8565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156127245750805b156127375761273282612b35565b612781565b8373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156127705750805b156127805761277f8383612c78565b5b5b50505050565b6127918383612cf7565b61279e60008484846127e2565b6127dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d490613e6c565b60405180910390fd5b505050565b60006128038473ffffffffffffffffffffffffffffffffffffffff16612ec7565b1561296c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261282c611efb565b8786866040518563ffffffff1660e01b815260040161284e9493929190613d83565b602060405180830381600087803b15801561286857600080fd5b505af192505050801561289957506040513d601f19601f820116820180604052508101906128969190613286565b60015b61291c573d80600081146128c9576040519150601f19603f3d011682016040523d82523d6000602084013e6128ce565b606091505b50600081511415612914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290b90613e6c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612971565b600190505b949350505050565b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016129d584610f14565b6129df9190614327565b9050600060076000848152602001908152602001600020549050818114612ac4576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612b499190614327565b9050600060096000848152602001908152602001600020549050600060088381548110612b9f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612be7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612c5c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612c8383610f14565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5e90613fec565b60405180910390fd5b612d7081611e8f565b15612db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da790613eac565b60405180910390fd5b612dbe60008383600161265d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e0e9190614246565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612ee690614411565b90600052602060002090601f016020900481019282612f085760008555612f4f565b82601f10612f2157805160ff1916838001178555612f4f565b82800160010185558215612f4f579182015b82811115612f4e578251825591602001919060010190612f33565b5b509050612f5c9190612f60565b5090565b5b80821115612f79576000816000905550600101612f61565b5090565b6000612f90612f8b84614198565b614167565b905082815260208101848484011115612fa857600080fd5b612fb38482856143cf565b509392505050565b6000612fce612fc9846141c8565b614167565b905082815260208101848484011115612fe657600080fd5b612ff18482856143cf565b509392505050565b6000813590506130088161458a565b92915050565b60008135905061301d816145a1565b92915050565b600081359050613032816145b8565b92915050565b600081519050613047816145b8565b92915050565b600082601f83011261305e57600080fd5b813561306e848260208601612f7d565b91505092915050565b600082601f83011261308857600080fd5b8135613098848260208601612fbb565b91505092915050565b6000813590506130b0816145cf565b92915050565b6000602082840312156130c857600080fd5b60006130d684828501612ff9565b91505092915050565b600080604083850312156130f257600080fd5b600061310085828601612ff9565b925050602061311185828601612ff9565b9150509250929050565b60008060006060848603121561313057600080fd5b600061313e86828701612ff9565b935050602061314f86828701612ff9565b9250506040613160868287016130a1565b9150509250925092565b6000806000806080858703121561318057600080fd5b600061318e87828801612ff9565b945050602061319f87828801612ff9565b93505060406131b0878288016130a1565b925050606085013567ffffffffffffffff8111156131cd57600080fd5b6131d98782880161304d565b91505092959194509250565b600080604083850312156131f857600080fd5b600061320685828601612ff9565b92505060206132178582860161300e565b9150509250929050565b6000806040838503121561323457600080fd5b600061324285828601612ff9565b9250506020613253858286016130a1565b9150509250929050565b60006020828403121561326f57600080fd5b600061327d84828501613023565b91505092915050565b60006020828403121561329857600080fd5b60006132a684828501613038565b91505092915050565b6000602082840312156132c157600080fd5b600082013567ffffffffffffffff8111156132db57600080fd5b6132e784828501613077565b91505092915050565b60006020828403121561330257600080fd5b6000613310848285016130a1565b91505092915050565b6133228161435b565b82525050565b6133318161436d565b82525050565b6000613342826141f8565b61334c818561420e565b935061335c8185602086016143de565b61336581614579565b840191505092915050565b600061337b82614203565b613385818561422a565b93506133958185602086016143de565b61339e81614579565b840191505092915050565b60006133b482614203565b6133be818561423b565b93506133ce8185602086016143de565b80840191505092915050565b60006133e760238361422a565b91507f5374617274696e6720696e64657820686173206e6f74206265656e207365742060008301527f79657400000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061344d60338361422a565b91507f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c65737360008301527f207468616e206f7220657175616c20746f2030000000000000000000000000006020830152604082019050919050565b60006134b3602b8361422a565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b600061351960328361422a565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061357f60268361422a565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006135e5601c8361422a565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061362560228361422a565b91507f43616e206f6e6c79206d696e7420757020746f2035207065722070757263686160008301527f73650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061368b60248361422a565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006136f160198361422a565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613731602c8361422a565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613797601d8361422a565b91507f5374617274696e6720696e64657820697320616c7265616479207365740000006000830152602082019050919050565b60006137d760388361422a565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061383d602a8361422a565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006138a360298361422a565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061390960208361422a565b91507f507572636861736520776f756c6420657863656564206d617820737570706c796000830152602082019050919050565b600061394960208361422a565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613989602c8361422a565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006139ef60208361422a565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613a2f60298361422a565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a95602f8361422a565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613afb60138361422a565b91507f4e6f7420656e6f756768204554482073656e74000000000000000000000000006000830152602082019050919050565b6000613b3b60218361422a565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ba160008361421f565b9150600082019050919050565b6000613bbb60318361422a565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613c21602c8361422a565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000613c8760238361422a565b91507f5374617274696e6720696e6465782068617320616c7265616479206265656e2060008301527f73657400000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ced60208361422a565b91507f53616c65206973206e6f742061637469766520617420746865206d6f6d656e746000830152602082019050919050565b613d29816143c5565b82525050565b6000613d3b82856133a9565b9150613d4782846133a9565b91508190509392505050565b6000613d5e82613b94565b9150819050919050565b6000602082019050613d7d6000830184613319565b92915050565b6000608082019050613d986000830187613319565b613da56020830186613319565b613db26040830185613d20565b8181036060830152613dc48184613337565b905095945050505050565b6000602082019050613de46000830184613328565b92915050565b60006020820190508181036000830152613e048184613370565b905092915050565b60006020820190508181036000830152613e25816133da565b9050919050565b60006020820190508181036000830152613e4581613440565b9050919050565b60006020820190508181036000830152613e65816134a6565b9050919050565b60006020820190508181036000830152613e858161350c565b9050919050565b60006020820190508181036000830152613ea581613572565b9050919050565b60006020820190508181036000830152613ec5816135d8565b9050919050565b60006020820190508181036000830152613ee581613618565b9050919050565b60006020820190508181036000830152613f058161367e565b9050919050565b60006020820190508181036000830152613f25816136e4565b9050919050565b60006020820190508181036000830152613f4581613724565b9050919050565b60006020820190508181036000830152613f658161378a565b9050919050565b60006020820190508181036000830152613f85816137ca565b9050919050565b60006020820190508181036000830152613fa581613830565b9050919050565b60006020820190508181036000830152613fc581613896565b9050919050565b60006020820190508181036000830152613fe5816138fc565b9050919050565b600060208201905081810360008301526140058161393c565b9050919050565b600060208201905081810360008301526140258161397c565b9050919050565b60006020820190508181036000830152614045816139e2565b9050919050565b6000602082019050818103600083015261406581613a22565b9050919050565b6000602082019050818103600083015261408581613a88565b9050919050565b600060208201905081810360008301526140a581613aee565b9050919050565b600060208201905081810360008301526140c581613b2e565b9050919050565b600060208201905081810360008301526140e581613bae565b9050919050565b6000602082019050818103600083015261410581613c14565b9050919050565b6000602082019050818103600083015261412581613c7a565b9050919050565b6000602082019050818103600083015261414581613ce0565b9050919050565b60006020820190506141616000830184613d20565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561418e5761418d61454a565b5b8060405250919050565b600067ffffffffffffffff8211156141b3576141b261454a565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156141e3576141e261454a565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614251826143c5565b915061425c836143c5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614291576142906144bd565b5b828201905092915050565b60006142a7826143c5565b91506142b2836143c5565b9250826142c2576142c16144ec565b5b828204905092915050565b60006142d8826143c5565b91506142e3836143c5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561431c5761431b6144bd565b5b828202905092915050565b6000614332826143c5565b915061433d836143c5565b9250828210156143505761434f6144bd565b5b828203905092915050565b6000614366826143a5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156143fc5780820151818401526020810190506143e1565b8381111561440b576000848401525b50505050565b6000600282049050600182168061442957607f821691505b6020821081141561443d5761443c61451b565b5b50919050565b600061444e826143c5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614481576144806144bd565b5b600182019050919050565b6000614497826143c5565b91506144a2836143c5565b9250826144b2576144b16144ec565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6145938161435b565b811461459e57600080fd5b50565b6145aa8161436d565b81146145b557600080fd5b50565b6145c181614379565b81146145cc57600080fd5b50565b6145d8816143c5565b81146145e357600080fd5b5056fea2646970667358221220abe50b6fcd7cb0b1d91ec30932274763fcdd5a5cbe9809d60bd939edd7b7058a64736f6c63430008000033

Deployed Bytecode Sourcemap

49614:4504:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43413:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49842:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31335:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32787:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32324:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44062:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33677:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43730:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49890:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50207:89;;;;;;;;;;;;;:::i;:::-;;50304:140;;;;;;;;;;;;;:::i;:::-;;34053:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44252:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53205:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31029:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49770:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30759:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28595:148;;;;;;;;;;;;;:::i;:::-;;52811:182;;;;;;;;;;;;;:::i;:::-;;27944:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31504:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51056:1040;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33080:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50773:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34275:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53322:793;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49969:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50452:313;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52106:697;;;;;;;;;;;;;:::i;:::-;;50004:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50889:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33446:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49929:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28898:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43413:233;43515:4;43554:35;43539:50;;;:11;:50;;;;:99;;;;43602:36;43626:11;43602:23;:36::i;:::-;43539:99;43532:106;;43413:233;;;:::o;49842:41::-;49882:1;49842:41;:::o;31335:100::-;31389:13;31422:5;31415:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31335:100;:::o;32787:221::-;32863:7;32891:16;32899:7;32891;:16::i;:::-;32883:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;32976:15;:24;32992:7;32976:24;;;;;;;;;;;;;;;;;;;;;32969:31;;32787:221;;;:::o;32324:397::-;32405:13;32421:23;32436:7;32421:14;:23::i;:::-;32405:39;;32469:5;32463:11;;:2;:11;;;;32455:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;32549:5;32533:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;32558:37;32575:5;32582:12;:10;:12::i;:::-;32558:16;:37::i;:::-;32533:62;32525:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32692:21;32701:2;32705:7;32692:8;:21::i;:::-;32324:397;;;:::o;44062:113::-;44123:7;44150:10;:17;;;;44143:24;;44062:113;:::o;33677:305::-;33838:41;33857:12;:10;:12::i;:::-;33871:7;33838:18;:41::i;:::-;33830:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;33946:28;33956:4;33962:2;33966:7;33946:9;:28::i;:::-;33677:305;;;:::o;43730:256::-;43827:7;43863:23;43880:5;43863:16;:23::i;:::-;43855:5;:31;43847:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;43952:12;:19;43965:5;43952:19;;;;;;;;;;;;;;;:26;43972:5;43952:26;;;;;;;;;;;;43945:33;;43730:256;;;;:::o;49890:32::-;;;;:::o;50207:89::-;28175:12;:10;:12::i;:::-;28164:23;;:7;:5;:7::i;:::-;:23;;;28156:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50276:12:::1;;;;;;;;;;;50275:13;50260:12;;:28;;;;;;;;;;;;;;;;;;50207:89::o:0;50304:140::-;28175:12;:10;:12::i;:::-;28164:23;;:7;:5;:7::i;:::-;:23;;;28156:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50352:12:::1;50367:21;50352:36;;50407:10;50399:28;;:37;50428:7;50399:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;28235:1;50304:140::o:0;34053:151::-;34157:39;34174:4;34180:2;34184:7;34157:39;;;;;;;;;;;;:16;:39::i;:::-;34053:151;;;:::o;44252:233::-;44327:7;44363:30;:28;:30::i;:::-;44355:5;:38;44347:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;44460:10;44471:5;44460:17;;;;;;;;;;;;;;;;;;;;;;;;44453:24;;44252:233;;;:::o;53205:109::-;28175:12;:10;:12::i;:::-;28164:23;;:7;:5;:7::i;:::-;:23;;;28156:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53298:8:::1;53279:16;:27;;;;;;;;;;;;:::i;:::-;;53205:109:::0;:::o;31029:239::-;31101:7;31121:13;31137:7;:16;31145:7;31137:16;;;;;;;;;;;;;;;;;;;;;31121:32;;31189:1;31172:19;;:5;:19;;;;31164:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31255:5;31248:12;;;31029:239;;;:::o;49770:53::-;49806:17;49770:53;:::o;30759:208::-;30831:7;30876:1;30859:19;;:5;:19;;;;30851:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;30943:9;:16;30953:5;30943:16;;;;;;;;;;;;;;;;30936:23;;30759:208;;;:::o;28595:148::-;28175:12;:10;:12::i;:::-;28164:23;;:7;:5;:7::i;:::-;:23;;;28156:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28702:1:::1;28665:40;;28686:6;;;;;;;;;;;28665:40;;;;;;;;;;;;28733:1;28716:6;;:19;;;;;;;;;;;;;;;;;;28595:148::o:0;52811:182::-;28175:12;:10;:12::i;:::-;28164:23;;:7;:5;:7::i;:::-;:23;;;28156:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52906:1:::1;52889:13;;:18;52881:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;52973:12;52952:18;:33;;;;52811:182::o:0;27944:87::-;27990:7;28017:6;;;;;;;;;;;28010:13;;27944:87;:::o;31504:104::-;31560:13;31593:7;31586:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31504:104;:::o;51056:1040::-;51129:12;;;;;;;;;;;51121:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;51218:1;51197:18;:22;51189:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;51335:10;;51294:37;51312:18;51294:13;:11;:13::i;:::-;:17;;:37;;;;:::i;:::-;:51;;51286:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;49882:1;51401:18;:38;;51393:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;51498:13;51514:28;51523:18;51514:8;:28::i;:::-;51498:44;;51606:5;51593:9;:18;;51585:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;51653:6;51648:109;51669:18;51665:1;:22;51648:109;;;51709:36;51719:10;51731:13;:11;:13::i;:::-;51709:9;:36::i;:::-;51689:3;;;;;:::i;:::-;;;;51648:109;;;;51830:17;51850:20;51864:5;51850:9;:13;;:20;;;;:::i;:::-;51830:40;;51972:1;51960:9;:13;51956:133;;;51991:12;52009:10;:15;;52032:9;52009:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51990:56;;;52069:7;52061:16;;;;;;51956:133;;51056:1040;;;:::o;33080:295::-;33195:12;:10;:12::i;:::-;33183:24;;:8;:24;;;;33175:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;33295:8;33250:18;:32;33269:12;:10;:12::i;:::-;33250:32;;;;;;;;;;;;;;;:42;33283:8;33250:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33348:8;33319:48;;33334:12;:10;:12::i;:::-;33319:48;;;33358:8;33319:48;;;;;;:::i;:::-;;;;;;;;33080:295;;:::o;50773:104::-;28175:12;:10;:12::i;:::-;28164:23;;:7;:5;:7::i;:::-;:23;;;28156:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50860:9:::1;50847:10;:22;;;;50773:104:::0;:::o;34275:285::-;34407:41;34426:12;:10;:12::i;:::-;34440:7;34407:18;:41::i;:::-;34399:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;34513:39;34527:4;34533:2;34537:7;34546:5;34513:13;:39::i;:::-;34275:285;;;;:::o;53322:793::-;53395:13;53429:16;53437:7;53429;:16::i;:::-;53421:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;53510:23;53536:10;:19;53547:7;53536:19;;;;;;;;;;;53510:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53566:18;53587:10;:8;:10::i;:::-;53566:31;;53695:1;53679:4;53673:18;:23;53669:72;;;53720:9;53713:16;;;;;;53669:72;53871:1;53851:9;53845:23;:27;53841:108;;;53920:4;53926:9;53903:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53889:48;;;;;;53841:108;54081:4;54087:18;:7;:16;:18::i;:::-;54064:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54050:57;;;;53322:793;;;;:::o;49969:28::-;;;;:::o;50452:313::-;28175:12;:10;:12::i;:::-;28164:23;;:7;:5;:7::i;:::-;:23;;;28156:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50516:11:::1;50530:13;:11;:13::i;:::-;50516:27;;50554:6;50571:86;50587:3;50583:1;:7;50571:86;;;50612:33;50622:10;50643:1;50634:6;:10;;;;:::i;:::-;50612:9;:33::i;:::-;50592:3;;;;;:::i;:::-;;;;50571:86;;;50695:1;50673:18;;:23;50669:89;;;50734:12;50713:18;:33;;;;50669:89;28235:1;;50452:313:::0;:::o;52106:697::-;28175:12;:10;:12::i;:::-;28164:23;;:7;:5;:7::i;:::-;:23;;;28156:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52188:1:::1;52171:13;;:18;52163:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;52270:1;52248:18;;:23;;52240:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;52378:10;;52355:18;;52345:29;52340:35;;:48;;;;:::i;:::-;52324:13;:64;;;;52562:3;52523:36;52540:18;;52523:12;:16;;:36;;;;:::i;:::-;:42;52520:136;;;52634:10;;52628:1;52613:12;:16;;;;:::i;:::-;52603:27;52598:33;;:46;;;;:::i;:::-;52582:13;:62;;;;52520:136;52730:1;52713:13;;:18;52709:87;;;52764:20;52782:1;52764:13;;:17;;:20;;;;:::i;:::-;52748:13;:36;;;;52709:87;52106:697::o:0;50004:33::-;;;;:::o;50889:157::-;50946:7;50986:10;;50974:8;:22;;50966:31;;;;;;51015:23;49806:17;51015:8;:12;;:23;;;;:::i;:::-;51008:30;;50889:157;;;:::o;33446:164::-;33543:4;33567:18;:25;33586:5;33567:25;;;;;;;;;;;;;;;:35;33593:8;33567:35;;;;;;;;;;;;;;;;;;;;;;;;;33560:42;;33446:164;;;;:::o;49929:31::-;;;;;;;;;;;;;:::o;28898:244::-;28175:12;:10;:12::i;:::-;28164:23;;:7;:5;:7::i;:::-;:23;;;28156:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29007:1:::1;28987:22;;:8;:22;;;;28979:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29097:8;29068:38;;29089:6;;;;;;;;;;;29068:38;;;;;;;;;;;;29126:8;29117:6;;:17;;;;;;;;;;;;;;;;;;28898:244:::0;:::o;30411:284::-;30513:4;30552:25;30537:40;;;:11;:40;;;;:101;;;;30605:33;30590:48;;;:11;:48;;;;30537:101;:150;;;;30651:36;30675:11;30651:23;:36::i;:::-;30537:150;30530:157;;30411:284;;;:::o;36027:127::-;36092:4;36144:1;36116:30;;:7;:16;36124:7;36116:16;;;;;;;;;;;;;;;;;;;;;:30;;;;36109:37;;36027:127;;;:::o;26561:98::-;26614:7;26641:10;26634:17;;26561:98;:::o;40266:174::-;40368:2;40341:15;:24;40357:7;40341:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;40424:7;40420:2;40386:46;;40395:23;40410:7;40395:14;:23::i;:::-;40386:46;;;;;;;;;;;;40266:174;;:::o;36321:348::-;36414:4;36439:16;36447:7;36439;:16::i;:::-;36431:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36515:13;36531:23;36546:7;36531:14;:23::i;:::-;36515:39;;36584:5;36573:16;;:7;:16;;;:51;;;;36617:7;36593:31;;:20;36605:7;36593:11;:20::i;:::-;:31;;;36573:51;:87;;;;36628:32;36645:5;36652:7;36628:16;:32::i;:::-;36573:87;36565:96;;;36321:348;;;;:::o;39598:550::-;39723:4;39696:31;;:23;39711:7;39696:14;:23::i;:::-;:31;;;39688:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;39806:1;39792:16;;:2;:16;;;;39784:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;39862:45;39883:4;39889:2;39893:7;39902:4;39862:20;:45::i;:::-;39972:29;39989:1;39993:7;39972:8;:29::i;:::-;40033:1;40014:9;:15;40024:4;40014:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;40062:1;40045:9;:13;40055:2;40045:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;40093:2;40074:7;:16;40082:7;40074:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;40132:7;40128:2;40113:27;;40122:4;40113:27;;;;;;;;;;;;39598:550;;;:::o;3065:98::-;3123:7;3154:1;3150;:5;;;;:::i;:::-;3143:12;;3065:98;;;;:::o;37011:110::-;37087:26;37097:2;37101:7;37087:26;;;;;;;;;;;;:9;:26::i;:::-;37011:110;;:::o;3446:98::-;3504:7;3535:1;3531;:5;;;;:::i;:::-;3524:12;;3446:98;;;;:::o;35442:272::-;35556:28;35566:4;35572:2;35576:7;35556:9;:28::i;:::-;35603:48;35626:4;35632:2;35636:7;35645:5;35603:22;:48::i;:::-;35595:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;35442:272;;;;:::o;53001:117::-;53061:13;53094:16;53087:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53001:117;:::o;7558:723::-;7614:13;7844:1;7835:5;:10;7831:53;;;7862:10;;;;;;;;;;;;;;;;;;;;;7831:53;7894:12;7909:5;7894:20;;7925:14;7950:78;7965:1;7957:4;:9;7950:78;;7983:8;;;;;:::i;:::-;;;;8014:2;8006:10;;;;;:::i;:::-;;;7950:78;;;8038:19;8070:6;8060:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8038:39;;8088:154;8104:1;8095:5;:10;8088:154;;8132:1;8122:11;;;;;:::i;:::-;;;8199:2;8191:5;:10;;;;:::i;:::-;8178:2;:24;;;;:::i;:::-;8165:39;;8148:6;8155;8148:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;8228:2;8219:11;;;;;:::i;:::-;;;8088:154;;;8266:6;8252:21;;;;;7558:723;;;;:::o;3803:98::-;3861:7;3892:1;3888;:5;;;;:::i;:::-;3881:12;;3803:98;;;;:::o;19634:157::-;19719:4;19758:25;19743:40;;;:11;:40;;;;19736:47;;19634:157;;;:::o;45098:604::-;45223:55;45250:4;45256:2;45260:7;45269:8;45223:26;:55::i;:::-;45311:1;45295:18;;:4;:18;;;45291:187;;;45330:40;45362:7;45330:31;:40::i;:::-;45291:187;;;45400:2;45392:10;;:4;:10;;;45388:90;;45419:47;45452:4;45458:7;45419:32;:47::i;:::-;45388:90;45291:187;45506:1;45492:16;;:2;:16;;;:28;;;;;45512:8;45492:28;45488:207;;;45537:45;45574:7;45537:36;:45::i;:::-;45488:207;;;45610:4;45604:10;;:2;:10;;;;:22;;;;;45618:8;45604:22;45600:95;;;45643:40;45671:2;45675:7;45643:27;:40::i;:::-;45600:95;45488:207;45098:604;;;;:::o;37348:250::-;37444:18;37450:2;37454:7;37444:5;:18::i;:::-;37481:54;37512:1;37516:2;37520:7;37529:5;37481:22;:54::i;:::-;37473:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;37348:250;;;:::o;41005:839::-;41122:4;41148:15;:2;:13;;;:15::i;:::-;41144:693;;;41200:2;41184:36;;;41221:12;:10;:12::i;:::-;41235:4;41241:7;41250:5;41184:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41180:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41447:1;41430:6;:13;:18;41426:341;;;41473:60;;;;;;;;;;:::i;:::-;;;;;;;;41426:341;41717:6;41711:13;41702:6;41698:2;41694:15;41687:38;41180:602;41317:45;;;41307:55;;;:6;:55;;;;41300:62;;;;;41144:693;41821:4;41814:11;;41005:839;;;;;;;:::o;42457:108::-;;;;;:::o;46425:164::-;46529:10;:17;;;;46502:15;:24;46518:7;46502:24;;;;;;;;;;;:44;;;;46557:10;46573:7;46557:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46425:164;:::o;47216:988::-;47482:22;47532:1;47507:22;47524:4;47507:16;:22::i;:::-;:26;;;;:::i;:::-;47482:51;;47544:18;47565:17;:26;47583:7;47565:26;;;;;;;;;;;;47544:47;;47712:14;47698:10;:28;47694:328;;47743:19;47765:12;:18;47778:4;47765:18;;;;;;;;;;;;;;;:34;47784:14;47765:34;;;;;;;;;;;;47743:56;;47849:11;47816:12;:18;47829:4;47816:18;;;;;;;;;;;;;;;:30;47835:10;47816:30;;;;;;;;;;;:44;;;;47966:10;47933:17;:30;47951:11;47933:30;;;;;;;;;;;:43;;;;47694:328;;48118:17;:26;48136:7;48118:26;;;;;;;;;;;48111:33;;;48162:12;:18;48175:4;48162:18;;;;;;;;;;;;;;;:34;48181:14;48162:34;;;;;;;;;;;48155:41;;;47216:988;;;;:::o;48499:1079::-;48752:22;48797:1;48777:10;:17;;;;:21;;;;:::i;:::-;48752:46;;48809:18;48830:15;:24;48846:7;48830:24;;;;;;;;;;;;48809:45;;49181:19;49203:10;49214:14;49203:26;;;;;;;;;;;;;;;;;;;;;;;;49181:48;;49267:11;49242:10;49253;49242:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;49378:10;49347:15;:28;49363:11;49347:28;;;;;;;;;;;:41;;;;49519:15;:24;49535:7;49519:24;;;;;;;;;;;49512:31;;;49554:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48499:1079;;;;:::o;46003:221::-;46088:14;46105:20;46122:2;46105:16;:20::i;:::-;46088:37;;46163:7;46136:12;:16;46149:2;46136:16;;;;;;;;;;;;;;;:24;46153:6;46136:24;;;;;;;;;;;:34;;;;46210:6;46181:17;:26;46199:7;46181:26;;;;;;;;;;;:35;;;;46003:221;;;:::o;37934:388::-;38028:1;38014:16;;:2;:16;;;;38006:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;38087:16;38095:7;38087;:16::i;:::-;38086:17;38078:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;38149:51;38178:1;38182:2;38186:7;38195:4;38149:20;:51::i;:::-;38230:1;38213:9;:13;38223:2;38213:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;38261:2;38242:7;:16;38250:7;38242:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;38306:7;38302:2;38281:33;;38298:1;38281:33;;;;;;;;;;;;37934:388;;:::o;10023:422::-;10083:4;10291:12;10402:7;10390:20;10382:28;;10436:1;10429:4;:8;10422:15;;;10023: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:367::-;;7605:67;7669:2;7664:3;7605:67;:::i;:::-;7598:74;;7702:34;7698:1;7693:3;7689:11;7682:55;7768:5;7763:2;7758:3;7754:12;7747:27;7800:2;7795:3;7791:12;7784:19;;7588:221;;;:::o;7815:383::-;;7978:67;8042:2;8037:3;7978:67;:::i;:::-;7971:74;;8075:34;8071:1;8066:3;8062:11;8055:55;8141:21;8136:2;8131:3;8127:12;8120:43;8189:2;8184:3;8180:12;8173:19;;7961:237;;;:::o;8204:375::-;;8367:67;8431:2;8426:3;8367:67;:::i;:::-;8360:74;;8464:34;8460:1;8455:3;8451:11;8444:55;8530:13;8525:2;8520:3;8516:12;8509:35;8570:2;8565:3;8561:12;8554:19;;8350:229;;;:::o;8585:382::-;;8748:67;8812:2;8807:3;8748:67;:::i;:::-;8741:74;;8845:34;8841:1;8836:3;8832:11;8825:55;8911:20;8906:2;8901:3;8897:12;8890:42;8958:2;8953:3;8949:12;8942:19;;8731:236;;;:::o;8973:370::-;;9136:67;9200:2;9195:3;9136:67;:::i;:::-;9129:74;;9233:34;9229:1;9224:3;9220:11;9213:55;9299:8;9294:2;9289:3;9285:12;9278:30;9334:2;9329:3;9325:12;9318:19;;9119:224;;;:::o;9349:326::-;;9512:67;9576:2;9571:3;9512:67;:::i;:::-;9505:74;;9609:30;9605:1;9600:3;9596:11;9589:51;9666:2;9661:3;9657:12;9650:19;;9495:180;;;:::o;9681:366::-;;9844:67;9908:2;9903:3;9844:67;:::i;:::-;9837:74;;9941:34;9937:1;9932:3;9928:11;9921:55;10007:4;10002:2;9997:3;9993:12;9986:26;10038:2;10033:3;10029:12;10022:19;;9827:220;;;:::o;10053:368::-;;10216:67;10280:2;10275:3;10216:67;:::i;:::-;10209:74;;10313:34;10309:1;10304:3;10300:11;10293:55;10379:6;10374:2;10369:3;10365:12;10358:28;10412:2;10407:3;10403:12;10396:19;;10199:222;;;:::o;10427:323::-;;10590:67;10654:2;10649:3;10590:67;:::i;:::-;10583:74;;10687:27;10683:1;10678:3;10674:11;10667:48;10741:2;10736:3;10732:12;10725:19;;10573:177;;;:::o;10756:376::-;;10919:67;10983:2;10978:3;10919:67;:::i;:::-;10912:74;;11016:34;11012:1;11007:3;11003:11;10996:55;11082:14;11077:2;11072:3;11068:12;11061:36;11123:2;11118:3;11114:12;11107:19;;10902:230;;;:::o;11138:327::-;;11301:67;11365:2;11360:3;11301:67;:::i;:::-;11294:74;;11398:31;11394:1;11389:3;11385:11;11378:52;11456:2;11451:3;11447:12;11440:19;;11284:181;;;:::o;11471:388::-;;11634:67;11698:2;11693:3;11634:67;:::i;:::-;11627:74;;11731:34;11727:1;11722:3;11718:11;11711:55;11797:26;11792:2;11787:3;11783:12;11776:48;11850:2;11845:3;11841:12;11834:19;;11617:242;;;:::o;11865:374::-;;12028:67;12092:2;12087:3;12028:67;:::i;:::-;12021:74;;12125:34;12121:1;12116:3;12112:11;12105:55;12191:12;12186:2;12181:3;12177:12;12170:34;12230:2;12225:3;12221:12;12214:19;;12011:228;;;:::o;12245:373::-;;12408:67;12472:2;12467:3;12408:67;:::i;:::-;12401:74;;12505:34;12501:1;12496:3;12492:11;12485:55;12571:11;12566:2;12561:3;12557:12;12550:33;12609:2;12604:3;12600:12;12593:19;;12391:227;;;:::o;12624:330::-;;12787:67;12851:2;12846:3;12787:67;:::i;:::-;12780:74;;12884:34;12880:1;12875:3;12871:11;12864:55;12945:2;12940:3;12936:12;12929:19;;12770:184;;;:::o;12960:330::-;;13123:67;13187:2;13182:3;13123:67;:::i;:::-;13116:74;;13220:34;13216:1;13211:3;13207:11;13200:55;13281:2;13276:3;13272:12;13265:19;;13106:184;;;:::o;13296:376::-;;13459:67;13523:2;13518:3;13459:67;:::i;:::-;13452:74;;13556:34;13552:1;13547:3;13543:11;13536:55;13622:14;13617:2;13612:3;13608:12;13601:36;13663:2;13658:3;13654:12;13647:19;;13442:230;;;:::o;13678:330::-;;13841:67;13905:2;13900:3;13841:67;:::i;:::-;13834:74;;13938:34;13934:1;13929:3;13925:11;13918:55;13999:2;13994:3;13990:12;13983:19;;13824:184;;;:::o;14014:373::-;;14177:67;14241:2;14236:3;14177:67;:::i;:::-;14170:74;;14274:34;14270:1;14265:3;14261:11;14254:55;14340:11;14335:2;14330:3;14326:12;14319:33;14378:2;14373:3;14369:12;14362:19;;14160:227;;;:::o;14393:379::-;;14556:67;14620:2;14615:3;14556:67;:::i;:::-;14549:74;;14653:34;14649:1;14644:3;14640:11;14633:55;14719:17;14714:2;14709:3;14705:12;14698:39;14763:2;14758:3;14754:12;14747:19;;14539:233;;;:::o;14778:317::-;;14941:67;15005:2;15000:3;14941:67;:::i;:::-;14934:74;;15038:21;15034:1;15029:3;15025:11;15018:42;15086:2;15081:3;15077:12;15070:19;;14924:171;;;:::o;15101:365::-;;15264:67;15328:2;15323:3;15264:67;:::i;:::-;15257:74;;15361:34;15357:1;15352:3;15348:11;15341:55;15427:3;15422:2;15417:3;15413:12;15406:25;15457:2;15452:3;15448:12;15441:19;;15247:219;;;:::o;15472:297::-;;15652:83;15733:1;15728:3;15652:83;:::i;:::-;15645:90;;15761:1;15756:3;15752:11;15745:18;;15635:134;;;:::o;15775:381::-;;15938:67;16002:2;15997:3;15938:67;:::i;:::-;15931:74;;16035:34;16031:1;16026:3;16022:11;16015:55;16101:19;16096:2;16091:3;16087:12;16080:41;16147:2;16142:3;16138:12;16131:19;;15921:235;;;:::o;16162:376::-;;16325:67;16389:2;16384:3;16325:67;:::i;:::-;16318:74;;16422:34;16418:1;16413:3;16409:11;16402:55;16488:14;16483:2;16478:3;16474:12;16467:36;16529:2;16524:3;16520:12;16513:19;;16308:230;;;:::o;16544:367::-;;16707:67;16771:2;16766:3;16707:67;:::i;:::-;16700:74;;16804:34;16800:1;16795:3;16791:11;16784:55;16870:5;16865:2;16860:3;16856:12;16849:27;16902:2;16897:3;16893:12;16886:19;;16690:221;;;:::o;16917:330::-;;17080:67;17144:2;17139:3;17080:67;:::i;:::-;17073:74;;17177:34;17173:1;17168:3;17164:11;17157:55;17238:2;17233:3;17229:12;17222:19;;17063:184;;;:::o;17253:118::-;17340:24;17358:5;17340:24;:::i;:::-;17335:3;17328:37;17318:53;;:::o;17377:435::-;;17579:95;17670:3;17661:6;17579:95;:::i;:::-;17572:102;;17691:95;17782:3;17773:6;17691:95;:::i;:::-;17684:102;;17803:3;17796:10;;17561:251;;;;;:::o;17818:379::-;;18024:147;18167:3;18024:147;:::i;:::-;18017:154;;18188:3;18181:10;;18006:191;;;:::o;18203:222::-;;18334:2;18323:9;18319:18;18311:26;;18347:71;18415:1;18404:9;18400:17;18391:6;18347:71;:::i;:::-;18301:124;;;;:::o;18431:640::-;;18664:3;18653:9;18649:19;18641:27;;18678:71;18746:1;18735:9;18731:17;18722:6;18678:71;:::i;:::-;18759:72;18827:2;18816:9;18812:18;18803:6;18759:72;:::i;:::-;18841;18909:2;18898:9;18894:18;18885:6;18841:72;:::i;:::-;18960:9;18954:4;18950:20;18945:2;18934:9;18930:18;18923:48;18988:76;19059:4;19050:6;18988:76;:::i;:::-;18980:84;;18631:440;;;;;;;:::o;19077:210::-;;19202:2;19191:9;19187:18;19179:26;;19215:65;19277:1;19266:9;19262:17;19253:6;19215:65;:::i;:::-;19169:118;;;;:::o;19293:313::-;;19444:2;19433:9;19429:18;19421:26;;19493:9;19487:4;19483:20;19479:1;19468:9;19464:17;19457:47;19521:78;19594:4;19585:6;19521:78;:::i;:::-;19513:86;;19411:195;;;;:::o;19612:419::-;;19816:2;19805:9;19801:18;19793:26;;19865:9;19859:4;19855:20;19851:1;19840:9;19836:17;19829:47;19893:131;20019:4;19893:131;:::i;:::-;19885:139;;19783:248;;;:::o;20037:419::-;;20241:2;20230:9;20226:18;20218:26;;20290:9;20284:4;20280:20;20276:1;20265:9;20261:17;20254:47;20318:131;20444:4;20318:131;:::i;:::-;20310:139;;20208:248;;;:::o;20462:419::-;;20666:2;20655:9;20651:18;20643:26;;20715:9;20709:4;20705:20;20701:1;20690:9;20686:17;20679:47;20743:131;20869:4;20743:131;:::i;:::-;20735:139;;20633:248;;;:::o;20887:419::-;;21091:2;21080:9;21076:18;21068:26;;21140:9;21134:4;21130:20;21126:1;21115:9;21111:17;21104:47;21168:131;21294:4;21168:131;:::i;:::-;21160:139;;21058:248;;;:::o;21312:419::-;;21516:2;21505:9;21501:18;21493:26;;21565:9;21559:4;21555:20;21551:1;21540:9;21536:17;21529:47;21593:131;21719:4;21593:131;:::i;:::-;21585:139;;21483:248;;;:::o;21737:419::-;;21941:2;21930:9;21926:18;21918:26;;21990:9;21984:4;21980:20;21976:1;21965:9;21961:17;21954:47;22018:131;22144:4;22018:131;:::i;:::-;22010:139;;21908:248;;;:::o;22162:419::-;;22366:2;22355:9;22351:18;22343:26;;22415:9;22409:4;22405:20;22401:1;22390:9;22386:17;22379:47;22443:131;22569:4;22443:131;:::i;:::-;22435:139;;22333:248;;;:::o;22587:419::-;;22791:2;22780:9;22776:18;22768:26;;22840:9;22834:4;22830:20;22826:1;22815:9;22811:17;22804:47;22868:131;22994:4;22868:131;:::i;:::-;22860:139;;22758:248;;;:::o;23012:419::-;;23216:2;23205:9;23201:18;23193:26;;23265:9;23259:4;23255:20;23251:1;23240:9;23236:17;23229:47;23293:131;23419:4;23293:131;:::i;:::-;23285:139;;23183:248;;;:::o;23437:419::-;;23641:2;23630:9;23626:18;23618:26;;23690:9;23684:4;23680:20;23676:1;23665:9;23661:17;23654:47;23718:131;23844:4;23718:131;:::i;:::-;23710:139;;23608:248;;;:::o;23862:419::-;;24066:2;24055:9;24051:18;24043:26;;24115:9;24109:4;24105:20;24101:1;24090:9;24086:17;24079:47;24143:131;24269:4;24143:131;:::i;:::-;24135:139;;24033:248;;;:::o;24287:419::-;;24491:2;24480:9;24476:18;24468:26;;24540:9;24534:4;24530:20;24526:1;24515:9;24511:17;24504:47;24568:131;24694:4;24568:131;:::i;:::-;24560:139;;24458:248;;;:::o;24712:419::-;;24916:2;24905:9;24901:18;24893:26;;24965:9;24959:4;24955:20;24951:1;24940:9;24936:17;24929:47;24993:131;25119:4;24993:131;:::i;:::-;24985:139;;24883:248;;;:::o;25137:419::-;;25341:2;25330:9;25326:18;25318:26;;25390:9;25384:4;25380:20;25376:1;25365:9;25361:17;25354:47;25418:131;25544:4;25418:131;:::i;:::-;25410:139;;25308:248;;;:::o;25562:419::-;;25766:2;25755:9;25751:18;25743:26;;25815:9;25809:4;25805:20;25801:1;25790:9;25786:17;25779:47;25843:131;25969:4;25843:131;:::i;:::-;25835:139;;25733:248;;;:::o;25987:419::-;;26191:2;26180:9;26176:18;26168:26;;26240:9;26234:4;26230:20;26226:1;26215:9;26211:17;26204:47;26268:131;26394:4;26268:131;:::i;:::-;26260:139;;26158:248;;;:::o;26412:419::-;;26616:2;26605:9;26601:18;26593:26;;26665:9;26659:4;26655:20;26651:1;26640:9;26636:17;26629:47;26693:131;26819:4;26693:131;:::i;:::-;26685:139;;26583:248;;;:::o;26837:419::-;;27041:2;27030:9;27026:18;27018:26;;27090:9;27084:4;27080:20;27076:1;27065:9;27061:17;27054:47;27118:131;27244:4;27118:131;:::i;:::-;27110:139;;27008:248;;;:::o;27262:419::-;;27466:2;27455:9;27451:18;27443:26;;27515:9;27509:4;27505:20;27501:1;27490:9;27486:17;27479:47;27543:131;27669:4;27543:131;:::i;:::-;27535:139;;27433:248;;;:::o;27687:419::-;;27891:2;27880:9;27876:18;27868:26;;27940:9;27934:4;27930:20;27926:1;27915:9;27911:17;27904:47;27968:131;28094:4;27968:131;:::i;:::-;27960:139;;27858:248;;;:::o;28112:419::-;;28316:2;28305:9;28301:18;28293:26;;28365:9;28359:4;28355:20;28351:1;28340:9;28336:17;28329:47;28393:131;28519:4;28393:131;:::i;:::-;28385:139;;28283:248;;;:::o;28537:419::-;;28741:2;28730:9;28726:18;28718:26;;28790:9;28784:4;28780:20;28776:1;28765:9;28761:17;28754:47;28818:131;28944:4;28818:131;:::i;:::-;28810:139;;28708:248;;;:::o;28962:419::-;;29166:2;29155:9;29151:18;29143:26;;29215:9;29209:4;29205:20;29201:1;29190:9;29186:17;29179:47;29243:131;29369:4;29243:131;:::i;:::-;29235:139;;29133:248;;;:::o;29387:419::-;;29591:2;29580:9;29576:18;29568:26;;29640:9;29634:4;29630:20;29626:1;29615:9;29611:17;29604:47;29668:131;29794:4;29668:131;:::i;:::-;29660:139;;29558:248;;;:::o;29812:419::-;;30016:2;30005:9;30001:18;29993:26;;30065:9;30059:4;30055:20;30051:1;30040:9;30036:17;30029:47;30093:131;30219:4;30093:131;:::i;:::-;30085:139;;29983:248;;;:::o;30237:419::-;;30441:2;30430:9;30426:18;30418:26;;30490:9;30484:4;30480:20;30476:1;30465:9;30461:17;30454:47;30518:131;30644:4;30518:131;:::i;:::-;30510:139;;30408:248;;;:::o;30662:222::-;;30793:2;30782:9;30778:18;30770:26;;30806:71;30874:1;30863:9;30859:17;30850:6;30806:71;:::i;:::-;30760:124;;;;:::o;30890:283::-;;30956:2;30950:9;30940:19;;30998:4;30990:6;30986:17;31105:6;31093:10;31090:22;31069:18;31057:10;31054:34;31051:62;31048:2;;;31116:18;;:::i;:::-;31048:2;31156:10;31152:2;31145:22;30930:243;;;;:::o;31179:331::-;;31330:18;31322:6;31319:30;31316:2;;;31352:18;;:::i;:::-;31316:2;31437:4;31433:9;31426:4;31418:6;31414:17;31410:33;31402:41;;31498:4;31492;31488:15;31480:23;;31245:265;;;:::o;31516:332::-;;31668:18;31660:6;31657:30;31654:2;;;31690:18;;:::i;:::-;31654:2;31775:4;31771:9;31764:4;31756:6;31752:17;31748:33;31740:41;;31836:4;31830;31826:15;31818:23;;31583:265;;;:::o;31854:98::-;;31939:5;31933:12;31923:22;;31912:40;;;:::o;31958:99::-;;32044:5;32038:12;32028:22;;32017:40;;;:::o;32063:168::-;;32180:6;32175:3;32168:19;32220:4;32215:3;32211:14;32196:29;;32158:73;;;;:::o;32237:147::-;;32375:3;32360:18;;32350:34;;;;:::o;32390:169::-;;32508:6;32503:3;32496:19;32548:4;32543:3;32539:14;32524:29;;32486:73;;;;:::o;32565:148::-;;32704:3;32689:18;;32679:34;;;;:::o;32719:305::-;;32778:20;32796:1;32778:20;:::i;:::-;32773:25;;32812:20;32830:1;32812:20;:::i;:::-;32807:25;;32966:1;32898:66;32894:74;32891:1;32888:81;32885:2;;;32972:18;;:::i;:::-;32885:2;33016:1;33013;33009:9;33002:16;;32763:261;;;;:::o;33030:185::-;;33087:20;33105:1;33087:20;:::i;:::-;33082:25;;33121:20;33139:1;33121:20;:::i;:::-;33116:25;;33160:1;33150:2;;33165:18;;:::i;:::-;33150:2;33207:1;33204;33200:9;33195:14;;33072:143;;;;:::o;33221:348::-;;33284:20;33302:1;33284:20;:::i;:::-;33279:25;;33318:20;33336:1;33318:20;:::i;:::-;33313:25;;33506:1;33438:66;33434:74;33431:1;33428:81;33423:1;33416:9;33409:17;33405:105;33402:2;;;33513:18;;:::i;:::-;33402:2;33561:1;33558;33554:9;33543:20;;33269:300;;;;:::o;33575:191::-;;33635:20;33653:1;33635:20;:::i;:::-;33630:25;;33669:20;33687:1;33669:20;:::i;:::-;33664:25;;33708:1;33705;33702:8;33699:2;;;33713:18;;:::i;:::-;33699:2;33758:1;33755;33751:9;33743:17;;33620:146;;;;:::o;33772:96::-;;33838:24;33856:5;33838:24;:::i;:::-;33827:35;;33817:51;;;:::o;33874:90::-;;33951:5;33944:13;33937:21;33926:32;;33916:48;;;:::o;33970:149::-;;34046:66;34039:5;34035:78;34024:89;;34014:105;;;:::o;34125:126::-;;34202:42;34195:5;34191:54;34180:65;;34170:81;;;:::o;34257:77::-;;34323:5;34312:16;;34302:32;;;:::o;34340:154::-;34424:6;34419:3;34414;34401:30;34486:1;34477:6;34472:3;34468:16;34461:27;34391:103;;;:::o;34500:307::-;34568:1;34578:113;34592:6;34589:1;34586:13;34578:113;;;34677:1;34672:3;34668:11;34662:18;34658:1;34653:3;34649:11;34642:39;34614:2;34611:1;34607:10;34602:15;;34578:113;;;34709:6;34706:1;34703:13;34700:2;;;34789:1;34780:6;34775:3;34771:16;34764:27;34700:2;34549:258;;;;:::o;34813:320::-;;34894:1;34888:4;34884:12;34874:22;;34941:1;34935:4;34931:12;34962:18;34952:2;;35018:4;35010:6;35006:17;34996:27;;34952:2;35080;35072:6;35069:14;35049:18;35046:38;35043:2;;;35099:18;;:::i;:::-;35043:2;34864:269;;;;:::o;35139:233::-;;35201:24;35219:5;35201:24;:::i;:::-;35192:33;;35247:66;35240:5;35237:77;35234:2;;;35317:18;;:::i;:::-;35234:2;35364:1;35357:5;35353:13;35346:20;;35182:190;;;:::o;35378:176::-;;35427:20;35445:1;35427:20;:::i;:::-;35422:25;;35461:20;35479:1;35461:20;:::i;:::-;35456:25;;35500:1;35490:2;;35505:18;;:::i;:::-;35490:2;35546:1;35543;35539:9;35534:14;;35412:142;;;;:::o;35560:180::-;35608:77;35605:1;35598:88;35705:4;35702:1;35695:15;35729:4;35726:1;35719:15;35746:180;35794:77;35791:1;35784:88;35891:4;35888:1;35881:15;35915:4;35912:1;35905:15;35932:180;35980:77;35977:1;35970:88;36077:4;36074:1;36067:15;36101:4;36098:1;36091:15;36118:180;36166:77;36163:1;36156:88;36263:4;36260:1;36253:15;36287:4;36284:1;36277:15;36304:102;;36396:2;36392:7;36387:2;36380:5;36376:14;36372:28;36362:38;;36352:54;;;:::o;36412:122::-;36485:24;36503:5;36485:24;:::i;:::-;36478:5;36475:35;36465:2;;36524:1;36521;36514:12;36465:2;36455:79;:::o;36540:116::-;36610:21;36625:5;36610:21;:::i;:::-;36603:5;36600:32;36590:2;;36646:1;36643;36636:12;36590:2;36580:76;:::o;36662:120::-;36734:23;36751:5;36734:23;:::i;:::-;36727:5;36724:34;36714:2;;36772:1;36769;36762:12;36714:2;36704:78;:::o;36788:122::-;36861:24;36879:5;36861:24;:::i;:::-;36854:5;36851:35;36841:2;;36900:1;36897;36890:12;36841:2;36831:79;:::o

Swarm Source

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