ETH Price: $3,355.60 (-1.79%)
Gas: 6 Gwei

Token

MOONDOGS ODYSSEY (WIENERS)
 

Overview

Max Total Supply

5,000 WIENERS

Holders

1,955

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
kiwi.eth
Balance
6 WIENERS
0x08D816526BdC9d077DD685Bd9FA49F58A5Ab8e48
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Moon Colonies were a technical success, but a lonely place to live... Until now! We are sending 5000 dogs to the moon! Join us on this Odyssey and adopt a Moondog today. ***SOLD OUT*** https://moondogs.dog/

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MOONDOGS

Compiler Version
v0.7.5+commit.eb77ed08

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// BIG SHOUTOUT TO THOSE THAT CAME BEFORE - BAYC, GAN, BORING BANANAS CO, KITTIES, EVERY 10K PROJECT EVER, PUNKS ETC.

// MOONDOGS ODYSSEY Contract starts at line 1890

// Look at you reading the solidity contract! Good on you... 

// However, the Moondogs themselves look better than the code - so head back to the website or OpenSea and add one to your collection!
 
// File: @openzeppelin/contracts/utils/Context.sol

pragma solidity >=0.6.0 <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 GSN 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 payable) {
        return msg.sender;
    }

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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



pragma solidity >=0.6.2 <0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity >=0.6.2 <0.8.0;


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

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

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

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

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



pragma solidity >=0.6.2 <0.8.0;


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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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



pragma solidity >=0.6.0 <0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () internal {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

// File: @openzeppelin/contracts/math/SafeMath.sol



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
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) {
        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) {
        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) {
        // 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) {
        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) {
        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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        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) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @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. 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) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        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) {
        require(b > 0, "SafeMath: modulo by zero");
        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) {
        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.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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) {
        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) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

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



pragma solidity >=0.6.2 <0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

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



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing an enumerable variant of Solidity's
 * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
 * type.
 *
 * Maps have the following properties:
 *
 * - Entries are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Entries are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableMap for EnumerableMap.UintToAddressMap;
 *
 *     // Declare a set state variable
 *     EnumerableMap.UintToAddressMap private myMap;
 * }
 * ```
 *
 * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
 * supported.
 */
library EnumerableMap {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Map type with
    // bytes32 keys and values.
    // The Map implementation uses private functions, and user-facing
    // implementations (such as Uint256ToAddressMap) are just wrappers around
    // the underlying Map.
    // This means that we can only create new EnumerableMaps for types that fit
    // in bytes32.

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

    struct Map {
        // Storage of map keys and values
        MapEntry[] _entries;

        // Position of the entry defined by a key in the `entries` array, plus 1
        // because index 0 means a key is not in the map.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex == 0) { // Equivalent to !contains(map, key)
            map._entries.push(MapEntry({ _key: key, _value: value }));
            // The entry is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            map._indexes[key] = map._entries.length;
            return true;
        } else {
            map._entries[keyIndex - 1]._value = value;
            return false;
        }
    }

    /**
     * @dev Removes a key-value pair from a map. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function _remove(Map storage map, bytes32 key) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex != 0) { // Equivalent to contains(map, key)
            // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
            // in the array, and then remove the last entry (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = keyIndex - 1;
            uint256 lastIndex = map._entries.length - 1;

            // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            MapEntry storage lastEntry = map._entries[lastIndex];

            // Move the last entry to the index where the entry to delete is
            map._entries[toDeleteIndex] = lastEntry;
            // Update the index for the moved entry
            map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved entry was stored
            map._entries.pop();

            // Delete the index for the deleted slot
            delete map._indexes[key];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function _contains(Map storage map, bytes32 key) private view returns (bool) {
        return map._indexes[key] != 0;
    }

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private view returns (uint256) {
        return map._entries.length;
    }

   /**
    * @dev Returns the key-value pair stored at position `index` in the map. O(1).
    *
    * Note that there are no guarantees on the ordering of entries inside the
    * array, and it may change when more entries are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) {
        require(map._entries.length > index, "EnumerableMap: index out of bounds");

        MapEntry storage entry = map._entries[index];
        return (entry._key, entry._value);
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     */
    function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) {
        uint256 keyIndex = map._indexes[key];
        if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key)
        return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function _get(Map storage map, bytes32 key) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {_tryGet}.
     */
    function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) {
        return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) {
        return _remove(map._inner, bytes32(key));
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) {
        return _contains(map._inner, bytes32(key));
    }

    /**
     * @dev Returns the number of elements in the map. O(1).
     */
    function length(UintToAddressMap storage map) internal view returns (uint256) {
        return _length(map._inner);
    }

   /**
    * @dev Returns the element stored at position `index` in the set. O(1).
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) {
        (bytes32 key, bytes32 value) = _at(map._inner, index);
        return (uint256(key), address(uint160(uint256(value))));
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     *
     * _Available since v3.4._
     */
    function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) {
        (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key));
        return (success, address(uint160(uint256(value))));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(UintToAddressMap storage map, uint256 key) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key)))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryGet}.
     */
    function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage))));
    }
}

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



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    /**
     * @dev Converts a `uint256` to its ASCII `string` 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);
        uint256 index = digits - 1;
        temp = value;
        while (temp != 0) {
            buffer[index--] = bytes1(uint8(48 + temp % 10));
            temp /= 10;
        }
        return string(buffer);
    }
}

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



pragma solidity >=0.6.0 <0.8.0;

/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
 
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using SafeMath for uint256;
    using Address for address;
    using EnumerableSet for EnumerableSet.UintSet;
    using EnumerableMap for EnumerableMap.UintToAddressMap;
    using Strings for uint256;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

    // Mapping from holder address to their (enumerable) set of owned tokens
    mapping (address => EnumerableSet.UintSet) private _holderTokens;

    // Enumerable mapping from token ids to their owners
    EnumerableMap.UintToAddressMap private _tokenOwners;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Optional mapping for token URIs
    mapping (uint256 => string) private _tokenURIs;

    // Base URI
    string private _baseURI;

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor (string memory name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

    /**
     * @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 _holderTokens[owner].length();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token");
    }

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

    /**
    * @dev Returns the base URI set via {_setBaseURI}. This will be
    * automatically added as a prefix in {tokenURI} to each token's URI, or
    * to the token ID if no specific URI is set for that token ID.
    */
    function baseURI() public view virtual returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        return _holderTokens[owner].at(index);
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
        return _tokenOwners.length();
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        (uint256 tokenId, ) = _tokenOwners.at(index);
        return tokenId;
    }

    /**
     * @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 || ERC721.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 _tokenOwners.contains(tokenId);
    }

    /**
     * @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 || ERC721.isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     d*
     * - `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);

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(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); // internal owner

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

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

        // Clear metadata (if any)
        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(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"); // internal owner
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _holderTokens[from].remove(tokenId);
        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function _setBaseURI(string memory baseURI_) internal virtual {
        _baseURI = baseURI_;
    }

    /**
     * @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()) {
            return true;
        }
        bytes memory returndata = to.functionCall(abi.encodeWithSelector(
            IERC721Receiver(to).onERC721Received.selector,
            _msgSender(),
            from,
            tokenId,
            _data
        ), "ERC721: transfer to non ERC721Receiver implementer");
        bytes4 retval = abi.decode(returndata, (bytes4));
        return (retval == _ERC721_RECEIVED);
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { }
}

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



pragma solidity >=0.6.0 <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 () internal {
        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;
    }
}


// The Moon Colonies were a technical success, but a lonely place to live… Until now! 
// We are sending 5000 dogs to the moon! 

// Join us on this Odyssey and adopt a Moondog today.

// Website - https://www.moondogs.dog/

// PS @beaniemaxi - if you're reading this contract, sorry that it doesn't live up to your high standards

// #ShowUsYourWieners ! 

pragma solidity ^0.7.0;
pragma abicoder v2;

contract MOONDOGS is ERC721, Ownable {
    
    using SafeMath for uint256;

    string public MOONDOGS_PROVENANCE = ""; // DEV to add our hash, as well as the seed used to generate Moondogs

    uint256 public MOONDOGSPRICE = 25000000000000000; // 0.025 ETH

    uint public constant MAXMOONDOGSPURCHASE = 20;

    uint256 public constant MAX_MOONDOGS = 5000;

    bool public saleIsActive = false;

     // withdraw addresses
    address t1 = 0x91BBC6DCFef7A30505106bf887528218cBDa3f83;
    address t2 = 0x8323cc95c6fc88C832086e38869cFe1d834A4980;
    
    // Reserve up to 100 MOONDOGS for team - Giveaways/Prizes/New Members etc
    uint public MOONDOGSRESERVE = 100;

    constructor() ERC721("MOONDOGS ODYSSEY", "WIENERS") { }
    
    function withdraw() public onlyOwner {
        uint256 _each = address(this).balance / 2;
        require(payable(t1).send(_each));
        require(payable(t2).send(_each));
    }
    
    function RESERVEMOONDOGS(address _to, uint256 _reserveAmount) public onlyOwner {        
        uint supply = totalSupply();
        require(_reserveAmount > 0 && _reserveAmount <= MOONDOGSRESERVE, "NOPE");
        for (uint i = 0; i < _reserveAmount; i++) {
            _safeMint(_to, supply + i);
        }
        MOONDOGSRESERVE = MOONDOGSRESERVE.sub(_reserveAmount);
    }


    function setMoondogsPrice(uint256 NewMoondogsPrice) public onlyOwner {
        MOONDOGSPRICE = NewMoondogsPrice;
    }

    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        MOONDOGS_PROVENANCE = provenanceHash;
    }

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


    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }
    
    
    function tokensOfOwner(address _owner) external view returns(uint256[] memory ) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }
    
    function MINTMOONDOGS(uint numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint a Moondog");
        require(numberOfTokens > 0 && numberOfTokens <= MAXMOONDOGSPURCHASE, "You can only mint 20 tokens at a time");
        require(totalSupply().add(numberOfTokens) <= MAX_MOONDOGS, "Purchase would exceed max supply of Moondogs");
        require(msg.value >= MOONDOGSPRICE.mul(numberOfTokens), "Ether value sent is not correct");
        
        for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = totalSupply();
            if (totalSupply() < MAX_MOONDOGS) {
                _safeMint(msg.sender, mintIndex);
            }
        }

    } 
    
}

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":"MAXMOONDOGSPURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MOONDOGS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"MINTMOONDOGS","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"MOONDOGSPRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MOONDOGSRESERVE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MOONDOGS_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"RESERVEMOONDOGS","outputs":[],"stateMutability":"nonpayable","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"NewMoondogsPrice","type":"uint256"}],"name":"setMoondogsPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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"}]

608060405260405180602001604052806000815250600b90805190602001906200002b929190620003a6565b506658d15e17628000600c556000600d60006101000a81548160ff0219169083151502179055507391bbc6dcfef7a30505106bf887528218cbda3f83600d60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550738323cc95c6fc88c832086e38869cfe1d834a4980600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506064600f553480156200010e57600080fd5b506040518060400160405280601081526020017f4d4f4f4e444f4753204f445953534559000000000000000000000000000000008152506040518060400160405280600781526020017f5749454e45525300000000000000000000000000000000000000000000000000815250620001936301ffc9a760e01b620002c660201b60201c565b8160069080519060200190620001ab929190620003a6565b508060079080519060200190620001c4929190620003a6565b50620001dd6380ac58cd60e01b620002c660201b60201c565b620001f5635b5e139f60e01b620002c660201b60201c565b6200020d63780e9d6360e01b620002c660201b60201c565b50506000620002216200039e60201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620004d1565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916141562000332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000329906200049e565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620003de57600085556200042a565b82601f10620003f957805160ff19168380011785556200042a565b828001600101855582156200042a579182015b82811115620004295782518255916020019190600101906200040c565b5b5090506200043991906200043d565b5090565b5b80821115620004585760008160009055506001016200043e565b5090565b60006200046b601c83620004c0565b91507f4552433136353a20696e76616c696420696e74657266616365206964000000006000830152602082019050919050565b60006020820190508181036000830152620004b9816200045c565b9050919050565b600082825260208201905092915050565b61446c80620004e16000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063acbf15d8116100a0578063d056e30a1161006f578063d056e30a14610712578063d99b11881461073d578063e985e9c514610766578063eb8d2444146107a3578063f2fde38b146107ce576101f9565b8063acbf15d814610658578063b88d4fde14610683578063c16c469b146106ac578063c87b56dd146106d5576101f9565b80638462151c116100dc5780638462151c1461059c5780638da5cb5b146105d957806395d89b4114610604578063a22cb4651461062f576101f9565b806370a08231146104f2578063715018a61461052f578063718f235b146105465780637fc0125414610571576101f9565b80632f745c591161019057806342842e0e1161015f57806342842e0e146103fb5780634f6ccce71461042457806355f804b3146104615780636352211e1461048a5780636c0360eb146104c7576101f9565b80632f745c591461037457806334918dfd146103b15780633ccfd60b146103c85780633d4c1f4a146103df576101f9565b806310969523116101cc57806310969523146102cc57806318160ddd146102f557806323b872dd1461032057806325f03ff914610349576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190613153565b6107f7565b6040516102329190613dd4565b60405180910390f35b34801561024757600080fd5b5061025061085e565b60405161025d9190613def565b60405180910390f35b34801561027257600080fd5b5061028d600480360381019061028891906131e6565b610900565b60405161029a9190613d4b565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190613117565b610985565b005b3480156102d857600080fd5b506102f360048036038101906102ee91906131a5565b610a9d565b005b34801561030157600080fd5b5061030a610b33565b6040516103179190614171565b60405180910390f35b34801561032c57600080fd5b5061034760048036038101906103429190613011565b610b44565b005b34801561035557600080fd5b5061035e610ba4565b60405161036b9190614171565b60405180910390f35b34801561038057600080fd5b5061039b60048036038101906103969190613117565b610baa565b6040516103a89190614171565b60405180910390f35b3480156103bd57600080fd5b506103c6610c05565b005b3480156103d457600080fd5b506103dd610cad565b005b6103f960048036038101906103f491906131e6565b610dfb565b005b34801561040757600080fd5b50610422600480360381019061041d9190613011565b610f94565b005b34801561043057600080fd5b5061044b600480360381019061044691906131e6565b610fb4565b6040516104589190614171565b60405180910390f35b34801561046d57600080fd5b50610488600480360381019061048391906131a5565b610fd7565b005b34801561049657600080fd5b506104b160048036038101906104ac91906131e6565b61105f565b6040516104be9190613d4b565b60405180910390f35b3480156104d357600080fd5b506104dc611096565b6040516104e99190613def565b60405180910390f35b3480156104fe57600080fd5b5061051960048036038101906105149190612fac565b611138565b6040516105269190614171565b60405180910390f35b34801561053b57600080fd5b506105446111f7565b005b34801561055257600080fd5b5061055b611334565b6040516105689190613def565b60405180910390f35b34801561057d57600080fd5b506105866113d2565b6040516105939190614171565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be9190612fac565b6113d7565b6040516105d09190613db2565b60405180910390f35b3480156105e557600080fd5b506105ee6114d0565b6040516105fb9190613d4b565b60405180910390f35b34801561061057600080fd5b506106196114fa565b6040516106269190613def565b60405180910390f35b34801561063b57600080fd5b50610656600480360381019061065191906130db565b61159c565b005b34801561066457600080fd5b5061066d61171d565b60405161067a9190614171565b60405180910390f35b34801561068f57600080fd5b506106aa60048036038101906106a59190613060565b611723565b005b3480156106b857600080fd5b506106d360048036038101906106ce9190613117565b611785565b005b3480156106e157600080fd5b506106fc60048036038101906106f791906131e6565b6118a3565b6040516107099190613def565b60405180910390f35b34801561071e57600080fd5b50610727611a26565b6040516107349190614171565b60405180910390f35b34801561074957600080fd5b50610764600480360381019061075f91906131e6565b611a2c565b005b34801561077257600080fd5b5061078d60048036038101906107889190612fd5565b611ab2565b60405161079a9190613dd4565b60405180910390f35b3480156107af57600080fd5b506107b8611b46565b6040516107c59190613dd4565b60405180910390f35b3480156107da57600080fd5b506107f560048036038101906107f09190612fac565b611b59565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156108f65780601f106108cb576101008083540402835291602001916108f6565b820191906000526020600020905b8154815290600101906020018083116108d957829003601f168201915b5050505050905090565b600061090b82611d05565b61094a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094190614071565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109908261105f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f8906140f1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a20611d22565b73ffffffffffffffffffffffffffffffffffffffff161480610a4f5750610a4e81610a49611d22565b611ab2565b5b610a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8590613fd1565b60405180910390fd5b610a988383611d2a565b505050565b610aa5611d22565b73ffffffffffffffffffffffffffffffffffffffff16610ac36114d0565b73ffffffffffffffffffffffffffffffffffffffff1614610b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1090614091565b60405180910390fd5b80600b9080519060200190610b2f929190612df0565b5050565b6000610b3f6002611de3565b905090565b610b55610b4f611d22565b82611df8565b610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b90614111565b60405180910390fd5b610b9f838383611ed6565b505050565b61138881565b6000610bfd82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206120ed90919063ffffffff16565b905092915050565b610c0d611d22565b73ffffffffffffffffffffffffffffffffffffffff16610c2b6114d0565b73ffffffffffffffffffffffffffffffffffffffff1614610c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7890614091565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b610cb5611d22565b73ffffffffffffffffffffffffffffffffffffffff16610cd36114d0565b73ffffffffffffffffffffffffffffffffffffffff1614610d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2090614091565b60405180910390fd5b600060024781610d3557fe5b049050600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610d9857600080fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610df857600080fd5b50565b600d60009054906101000a900460ff16610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4190613e91565b60405180910390fd5b600081118015610e5b575060148111155b610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9190613eb1565b60405180910390fd5b611388610eb782610ea9610b33565b61210790919063ffffffff16565b1115610ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eef90613fb1565b60405180910390fd5b610f0d81600c5461215c90919063ffffffff16565b341015610f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4690613f31565b60405180910390fd5b60005b81811015610f90576000610f64610b33565b9050611388610f71610b33565b1015610f8257610f8133826121cc565b5b508080600101915050610f52565b5050565b610faf83838360405180602001604052806000815250611723565b505050565b600080610fcb8360026121ea90919063ffffffff16565b50905080915050919050565b610fdf611d22565b73ffffffffffffffffffffffffffffffffffffffff16610ffd6114d0565b73ffffffffffffffffffffffffffffffffffffffff1614611053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104a90614091565b60405180910390fd5b61105c81612216565b50565b600061108f8260405180606001604052806029815260200161440e6029913960026122309092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561112e5780601f106111035761010080835404028352916020019161112e565b820191906000526020600020905b81548152906001019060200180831161111157829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a090613ff1565b60405180910390fd5b6111f0600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061224f565b9050919050565b6111ff611d22565b73ffffffffffffffffffffffffffffffffffffffff1661121d6114d0565b73ffffffffffffffffffffffffffffffffffffffff1614611273576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126a90614091565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113ca5780601f1061139f576101008083540402835291602001916113ca565b820191906000526020600020905b8154815290600101906020018083116113ad57829003601f168201915b505050505081565b601481565b606060006113e483611138565b9050600081141561143f57600067ffffffffffffffff8111801561140757600080fd5b506040519080825280602002602001820160405280156114365781602001602082028036833780820191505090505b509150506114cb565b60608167ffffffffffffffff8111801561145857600080fd5b506040519080825280602002602001820160405280156114875781602001602082028036833780820191505090505b50905060005b828110156114c45761149f8582610baa565b8282815181106114ab57fe5b602002602001018181525050808060010191505061148d565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156115925780601f1061156757610100808354040283529160200191611592565b820191906000526020600020905b81548152906001019060200180831161157557829003601f168201915b5050505050905090565b6115a4611d22565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160990613f11565b60405180910390fd5b806005600061161f611d22565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116cc611d22565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117119190613dd4565b60405180910390a35050565b600c5481565b61173461172e611d22565b83611df8565b611773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176a90614111565b60405180910390fd5b61177f84848484612264565b50505050565b61178d611d22565b73ffffffffffffffffffffffffffffffffffffffff166117ab6114d0565b73ffffffffffffffffffffffffffffffffffffffff1614611801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f890614091565b60405180910390fd5b600061180b610b33565b905060008211801561181f5750600f548211155b61185e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185590614151565b60405180910390fd5b60005b8281101561188257611875848284016121cc565b8080600101915050611861565b5061189882600f546122c090919063ffffffff16565b600f81905550505050565b60606118ae82611d05565b6118ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e4906140d1565b60405180910390fd5b6060600860008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156119965780601f1061196b57610100808354040283529160200191611996565b820191906000526020600020905b81548152906001019060200180831161197957829003601f168201915b5050505050905060606119a7611096565b90506000815114156119bd578192505050611a21565b6000825111156119f25780826040516020016119da929190613d27565b60405160208183030381529060405292505050611a21565b806119fc85612310565b604051602001611a0d929190613d27565b604051602081830303815290604052925050505b919050565b600f5481565b611a34611d22565b73ffffffffffffffffffffffffffffffffffffffff16611a526114d0565b73ffffffffffffffffffffffffffffffffffffffff1614611aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9f90614091565b60405180910390fd5b80600c8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60009054906101000a900460ff1681565b611b61611d22565b73ffffffffffffffffffffffffffffffffffffffff16611b7f6114d0565b73ffffffffffffffffffffffffffffffffffffffff1614611bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcc90614091565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3c90613e51565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611d1b82600261245790919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d9d8361105f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611df182600001612471565b9050919050565b6000611e0382611d05565b611e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3990613f91565b60405180910390fd5b6000611e4d8361105f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ebc57508373ffffffffffffffffffffffffffffffffffffffff16611ea484610900565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ecd5750611ecc8185611ab2565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ef68261105f565b73ffffffffffffffffffffffffffffffffffffffff1614611f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f43906140b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb390613ef1565b60405180910390fd5b611fc7838383612482565b611fd2600082611d2a565b61202381600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061248790919063ffffffff16565b5061207581600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206124a190919063ffffffff16565b5061208c818360026124bb9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006120fc83600001836124f0565b60001c905092915050565b600080828401905083811015612152576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214990613ed1565b60405180910390fd5b8091505092915050565b60008083141561216f57600090506121c6565b600082840290508284828161218057fe5b04146121c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b890614051565b60405180910390fd5b809150505b92915050565b6121e682826040518060200160405280600081525061255d565b5050565b6000806000806121fd86600001866125b8565b915091508160001c8160001c9350935050509250929050565b806009908051906020019061222c929190612df0565b5050565b6000612243846000018460001b8461263b565b60001c90509392505050565b600061225d826000016126cc565b9050919050565b61226f848484611ed6565b61227b848484846126dd565b6122ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b190613e31565b60405180910390fd5b50505050565b600082821115612305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fc90613f51565b60405180910390fd5b818303905092915050565b60606000821415612358576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612452565b600082905060005b60008214612382578080600101915050600a828161237a57fe5b049150612360565b60608167ffffffffffffffff8111801561239b57600080fd5b506040519080825280601f01601f1916602001820160405280156123ce5781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461244a57600a84816123ef57fe5b0660300160f81b8282806001900393508151811061240957fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161244257fe5b0493506123dd565b819450505050505b919050565b6000612469836000018360001b612841565b905092915050565b600081600001805490509050919050565b505050565b6000612499836000018360001b612864565b905092915050565b60006124b3836000018360001b61294c565b905092915050565b60006124e7846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b6129bc565b90509392505050565b60008183600001805490501161253b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253290613e11565b60405180910390fd5b82600001828154811061254a57fe5b9060005260206000200154905092915050565b6125678383612a98565b61257460008484846126dd565b6125b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125aa90613e31565b60405180910390fd5b505050565b60008082846000018054905011612604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fb90614011565b60405180910390fd5b600084600001848154811061261557fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b6000808460010160008581526020019081526020016000205490506000811415839061269d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126949190613def565b60405180910390fd5b508460000160018203815481106126b057fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b60006126fe8473ffffffffffffffffffffffffffffffffffffffff16612c26565b61270b5760019050612839565b60606127d263150b7a0260e01b612720611d22565b8887876040516024016127369493929190613d66565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040518060600160405280603281526020016143dc603291398773ffffffffffffffffffffffffffffffffffffffff16612c399092919063ffffffff16565b90506000818060200190518101906127ea919061317c565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b6000808360010160008481526020019081526020016000205490506000811461294057600060018203905060006001866000018054905003905060008660000182815481106128af57fe5b90600052602060002001549050808760000184815481106128cc57fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061290457fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612946565b60009150505b92915050565b60006129588383612c51565b6129b15782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506129b6565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415612a6357846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050612a91565b82856000016001830381548110612a7657fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aff90614031565b60405180910390fd5b612b1181611d05565b15612b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4890613e71565b60405180910390fd5b612b5d60008383612482565b612bae81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206124a190919063ffffffff16565b50612bc5818360026124bb9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060612c488484600085612c74565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015612cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb090613f71565b60405180910390fd5b612cc285612c26565b612d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf890614131565b60405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff168587604051612d2b9190613d10565b60006040518083038185875af1925050503d8060008114612d68576040519150601f19603f3d011682016040523d82523d6000602084013e612d6d565b606091505b5091509150612d7d828286612d89565b92505050949350505050565b60608315612d9957829050612de9565b600083511115612dac5782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de09190613def565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282612e265760008555612e6d565b82601f10612e3f57805160ff1916838001178555612e6d565b82800160010185558215612e6d579182015b82811115612e6c578251825591602001919060010190612e51565b5b509050612e7a9190612e7e565b5090565b5b80821115612e97576000816000905550600101612e7f565b5090565b600081359050612eaa8161437f565b92915050565b600081359050612ebf81614396565b92915050565b600081359050612ed4816143ad565b92915050565b600081519050612ee9816143ad565b92915050565b600082601f830112612f0057600080fd5b8135612f13612f0e826141bd565b61418c565b91508082526020830160208301858383011115612f2f57600080fd5b612f3a83828461432a565b50505092915050565b600082601f830112612f5457600080fd5b8135612f67612f62826141ed565b61418c565b91508082526020830160208301858383011115612f8357600080fd5b612f8e83828461432a565b50505092915050565b600081359050612fa6816143c4565b92915050565b600060208284031215612fbe57600080fd5b6000612fcc84828501612e9b565b91505092915050565b60008060408385031215612fe857600080fd5b6000612ff685828601612e9b565b925050602061300785828601612e9b565b9150509250929050565b60008060006060848603121561302657600080fd5b600061303486828701612e9b565b935050602061304586828701612e9b565b925050604061305686828701612f97565b9150509250925092565b6000806000806080858703121561307657600080fd5b600061308487828801612e9b565b945050602061309587828801612e9b565b93505060406130a687828801612f97565b925050606085013567ffffffffffffffff8111156130c357600080fd5b6130cf87828801612eef565b91505092959194509250565b600080604083850312156130ee57600080fd5b60006130fc85828601612e9b565b925050602061310d85828601612eb0565b9150509250929050565b6000806040838503121561312a57600080fd5b600061313885828601612e9b565b925050602061314985828601612f97565b9150509250929050565b60006020828403121561316557600080fd5b600061317384828501612ec5565b91505092915050565b60006020828403121561318e57600080fd5b600061319c84828501612eda565b91505092915050565b6000602082840312156131b757600080fd5b600082013567ffffffffffffffff8111156131d157600080fd5b6131dd84828501612f43565b91505092915050565b6000602082840312156131f857600080fd5b600061320684828501612f97565b91505092915050565b600061321b8383613cf2565b60208301905092915050565b613230816142b6565b82525050565b61323f816142a4565b82525050565b60006132508261422d565b61325a818561425b565b93506132658361421d565b8060005b8381101561329657815161327d888261320f565b97506132888361424e565b925050600181019050613269565b5085935050505092915050565b6132ac816142c8565b82525050565b60006132bd82614238565b6132c7818561426c565b93506132d7818560208601614339565b6132e08161436e565b840191505092915050565b60006132f682614238565b613300818561427d565b9350613310818560208601614339565b80840191505092915050565b600061332782614243565b6133318185614288565b9350613341818560208601614339565b61334a8161436e565b840191505092915050565b600061336082614243565b61336a8185614299565b935061337a818560208601614339565b80840191505092915050565b6000613393602283614288565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006133f9603283614288565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061345f602683614288565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134c5601c83614288565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613505602583614288565b91507f53616c65206d7573742062652061637469766520746f206d696e742061204d6f60008301527f6f6e646f670000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061356b602583614288565b91507f596f752063616e206f6e6c79206d696e7420323020746f6b656e73206174206160008301527f2074696d650000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006135d1601b83614288565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000613611602483614288565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613677601983614288565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006136b7601f83614288565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b60006136f7601e83614288565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000613737602683614288565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061379d602c83614288565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613803602c83614288565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f66204d6f6f6e646f677300000000000000000000000000000000000000006020830152604082019050919050565b6000613869603883614288565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006138cf602a83614288565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613935602283614288565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061399b602083614288565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006139db602183614288565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a41602c83614288565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613aa7602083614288565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613ae7602983614288565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b4d602f83614288565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613bb3602183614288565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c19603183614288565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613c7f601d83614288565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b6000613cbf600483614288565b91507f4e4f5045000000000000000000000000000000000000000000000000000000006000830152602082019050919050565b613cfb81614320565b82525050565b613d0a81614320565b82525050565b6000613d1c82846132eb565b915081905092915050565b6000613d338285613355565b9150613d3f8284613355565b91508190509392505050565b6000602082019050613d606000830184613236565b92915050565b6000608082019050613d7b6000830187613227565b613d886020830186613236565b613d956040830185613d01565b8181036060830152613da781846132b2565b905095945050505050565b60006020820190508181036000830152613dcc8184613245565b905092915050565b6000602082019050613de960008301846132a3565b92915050565b60006020820190508181036000830152613e09818461331c565b905092915050565b60006020820190508181036000830152613e2a81613386565b9050919050565b60006020820190508181036000830152613e4a816133ec565b9050919050565b60006020820190508181036000830152613e6a81613452565b9050919050565b60006020820190508181036000830152613e8a816134b8565b9050919050565b60006020820190508181036000830152613eaa816134f8565b9050919050565b60006020820190508181036000830152613eca8161355e565b9050919050565b60006020820190508181036000830152613eea816135c4565b9050919050565b60006020820190508181036000830152613f0a81613604565b9050919050565b60006020820190508181036000830152613f2a8161366a565b9050919050565b60006020820190508181036000830152613f4a816136aa565b9050919050565b60006020820190508181036000830152613f6a816136ea565b9050919050565b60006020820190508181036000830152613f8a8161372a565b9050919050565b60006020820190508181036000830152613faa81613790565b9050919050565b60006020820190508181036000830152613fca816137f6565b9050919050565b60006020820190508181036000830152613fea8161385c565b9050919050565b6000602082019050818103600083015261400a816138c2565b9050919050565b6000602082019050818103600083015261402a81613928565b9050919050565b6000602082019050818103600083015261404a8161398e565b9050919050565b6000602082019050818103600083015261406a816139ce565b9050919050565b6000602082019050818103600083015261408a81613a34565b9050919050565b600060208201905081810360008301526140aa81613a9a565b9050919050565b600060208201905081810360008301526140ca81613ada565b9050919050565b600060208201905081810360008301526140ea81613b40565b9050919050565b6000602082019050818103600083015261410a81613ba6565b9050919050565b6000602082019050818103600083015261412a81613c0c565b9050919050565b6000602082019050818103600083015261414a81613c72565b9050919050565b6000602082019050818103600083015261416a81613cb2565b9050919050565b60006020820190506141866000830184613d01565b92915050565b6000604051905081810181811067ffffffffffffffff821117156141b3576141b261436c565b5b8060405250919050565b600067ffffffffffffffff8211156141d8576141d761436c565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156142085761420761436c565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006142af82614300565b9050919050565b60006142c182614300565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561435757808201518184015260208101905061433c565b83811115614366576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b614388816142a4565b811461439357600080fd5b50565b61439f816142c8565b81146143aa57600080fd5b50565b6143b6816142d4565b81146143c157600080fd5b50565b6143cd81614320565b81146143d857600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220d86e0a48525da9cb26218919369c6871cc7ff1f9d09acf5039a6db2c48489e0664736f6c63430007050033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806370a082311161010d578063acbf15d8116100a0578063d056e30a1161006f578063d056e30a14610712578063d99b11881461073d578063e985e9c514610766578063eb8d2444146107a3578063f2fde38b146107ce576101f9565b8063acbf15d814610658578063b88d4fde14610683578063c16c469b146106ac578063c87b56dd146106d5576101f9565b80638462151c116100dc5780638462151c1461059c5780638da5cb5b146105d957806395d89b4114610604578063a22cb4651461062f576101f9565b806370a08231146104f2578063715018a61461052f578063718f235b146105465780637fc0125414610571576101f9565b80632f745c591161019057806342842e0e1161015f57806342842e0e146103fb5780634f6ccce71461042457806355f804b3146104615780636352211e1461048a5780636c0360eb146104c7576101f9565b80632f745c591461037457806334918dfd146103b15780633ccfd60b146103c85780633d4c1f4a146103df576101f9565b806310969523116101cc57806310969523146102cc57806318160ddd146102f557806323b872dd1461032057806325f03ff914610349576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190613153565b6107f7565b6040516102329190613dd4565b60405180910390f35b34801561024757600080fd5b5061025061085e565b60405161025d9190613def565b60405180910390f35b34801561027257600080fd5b5061028d600480360381019061028891906131e6565b610900565b60405161029a9190613d4b565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190613117565b610985565b005b3480156102d857600080fd5b506102f360048036038101906102ee91906131a5565b610a9d565b005b34801561030157600080fd5b5061030a610b33565b6040516103179190614171565b60405180910390f35b34801561032c57600080fd5b5061034760048036038101906103429190613011565b610b44565b005b34801561035557600080fd5b5061035e610ba4565b60405161036b9190614171565b60405180910390f35b34801561038057600080fd5b5061039b60048036038101906103969190613117565b610baa565b6040516103a89190614171565b60405180910390f35b3480156103bd57600080fd5b506103c6610c05565b005b3480156103d457600080fd5b506103dd610cad565b005b6103f960048036038101906103f491906131e6565b610dfb565b005b34801561040757600080fd5b50610422600480360381019061041d9190613011565b610f94565b005b34801561043057600080fd5b5061044b600480360381019061044691906131e6565b610fb4565b6040516104589190614171565b60405180910390f35b34801561046d57600080fd5b50610488600480360381019061048391906131a5565b610fd7565b005b34801561049657600080fd5b506104b160048036038101906104ac91906131e6565b61105f565b6040516104be9190613d4b565b60405180910390f35b3480156104d357600080fd5b506104dc611096565b6040516104e99190613def565b60405180910390f35b3480156104fe57600080fd5b5061051960048036038101906105149190612fac565b611138565b6040516105269190614171565b60405180910390f35b34801561053b57600080fd5b506105446111f7565b005b34801561055257600080fd5b5061055b611334565b6040516105689190613def565b60405180910390f35b34801561057d57600080fd5b506105866113d2565b6040516105939190614171565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be9190612fac565b6113d7565b6040516105d09190613db2565b60405180910390f35b3480156105e557600080fd5b506105ee6114d0565b6040516105fb9190613d4b565b60405180910390f35b34801561061057600080fd5b506106196114fa565b6040516106269190613def565b60405180910390f35b34801561063b57600080fd5b50610656600480360381019061065191906130db565b61159c565b005b34801561066457600080fd5b5061066d61171d565b60405161067a9190614171565b60405180910390f35b34801561068f57600080fd5b506106aa60048036038101906106a59190613060565b611723565b005b3480156106b857600080fd5b506106d360048036038101906106ce9190613117565b611785565b005b3480156106e157600080fd5b506106fc60048036038101906106f791906131e6565b6118a3565b6040516107099190613def565b60405180910390f35b34801561071e57600080fd5b50610727611a26565b6040516107349190614171565b60405180910390f35b34801561074957600080fd5b50610764600480360381019061075f91906131e6565b611a2c565b005b34801561077257600080fd5b5061078d60048036038101906107889190612fd5565b611ab2565b60405161079a9190613dd4565b60405180910390f35b3480156107af57600080fd5b506107b8611b46565b6040516107c59190613dd4565b60405180910390f35b3480156107da57600080fd5b506107f560048036038101906107f09190612fac565b611b59565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156108f65780601f106108cb576101008083540402835291602001916108f6565b820191906000526020600020905b8154815290600101906020018083116108d957829003601f168201915b5050505050905090565b600061090b82611d05565b61094a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094190614071565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109908261105f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f8906140f1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a20611d22565b73ffffffffffffffffffffffffffffffffffffffff161480610a4f5750610a4e81610a49611d22565b611ab2565b5b610a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8590613fd1565b60405180910390fd5b610a988383611d2a565b505050565b610aa5611d22565b73ffffffffffffffffffffffffffffffffffffffff16610ac36114d0565b73ffffffffffffffffffffffffffffffffffffffff1614610b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1090614091565b60405180910390fd5b80600b9080519060200190610b2f929190612df0565b5050565b6000610b3f6002611de3565b905090565b610b55610b4f611d22565b82611df8565b610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b90614111565b60405180910390fd5b610b9f838383611ed6565b505050565b61138881565b6000610bfd82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206120ed90919063ffffffff16565b905092915050565b610c0d611d22565b73ffffffffffffffffffffffffffffffffffffffff16610c2b6114d0565b73ffffffffffffffffffffffffffffffffffffffff1614610c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7890614091565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b610cb5611d22565b73ffffffffffffffffffffffffffffffffffffffff16610cd36114d0565b73ffffffffffffffffffffffffffffffffffffffff1614610d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2090614091565b60405180910390fd5b600060024781610d3557fe5b049050600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610d9857600080fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610df857600080fd5b50565b600d60009054906101000a900460ff16610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4190613e91565b60405180910390fd5b600081118015610e5b575060148111155b610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9190613eb1565b60405180910390fd5b611388610eb782610ea9610b33565b61210790919063ffffffff16565b1115610ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eef90613fb1565b60405180910390fd5b610f0d81600c5461215c90919063ffffffff16565b341015610f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4690613f31565b60405180910390fd5b60005b81811015610f90576000610f64610b33565b9050611388610f71610b33565b1015610f8257610f8133826121cc565b5b508080600101915050610f52565b5050565b610faf83838360405180602001604052806000815250611723565b505050565b600080610fcb8360026121ea90919063ffffffff16565b50905080915050919050565b610fdf611d22565b73ffffffffffffffffffffffffffffffffffffffff16610ffd6114d0565b73ffffffffffffffffffffffffffffffffffffffff1614611053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104a90614091565b60405180910390fd5b61105c81612216565b50565b600061108f8260405180606001604052806029815260200161440e6029913960026122309092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561112e5780601f106111035761010080835404028352916020019161112e565b820191906000526020600020905b81548152906001019060200180831161111157829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a090613ff1565b60405180910390fd5b6111f0600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061224f565b9050919050565b6111ff611d22565b73ffffffffffffffffffffffffffffffffffffffff1661121d6114d0565b73ffffffffffffffffffffffffffffffffffffffff1614611273576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126a90614091565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113ca5780601f1061139f576101008083540402835291602001916113ca565b820191906000526020600020905b8154815290600101906020018083116113ad57829003601f168201915b505050505081565b601481565b606060006113e483611138565b9050600081141561143f57600067ffffffffffffffff8111801561140757600080fd5b506040519080825280602002602001820160405280156114365781602001602082028036833780820191505090505b509150506114cb565b60608167ffffffffffffffff8111801561145857600080fd5b506040519080825280602002602001820160405280156114875781602001602082028036833780820191505090505b50905060005b828110156114c45761149f8582610baa565b8282815181106114ab57fe5b602002602001018181525050808060010191505061148d565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156115925780601f1061156757610100808354040283529160200191611592565b820191906000526020600020905b81548152906001019060200180831161157557829003601f168201915b5050505050905090565b6115a4611d22565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160990613f11565b60405180910390fd5b806005600061161f611d22565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116cc611d22565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117119190613dd4565b60405180910390a35050565b600c5481565b61173461172e611d22565b83611df8565b611773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176a90614111565b60405180910390fd5b61177f84848484612264565b50505050565b61178d611d22565b73ffffffffffffffffffffffffffffffffffffffff166117ab6114d0565b73ffffffffffffffffffffffffffffffffffffffff1614611801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f890614091565b60405180910390fd5b600061180b610b33565b905060008211801561181f5750600f548211155b61185e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185590614151565b60405180910390fd5b60005b8281101561188257611875848284016121cc565b8080600101915050611861565b5061189882600f546122c090919063ffffffff16565b600f81905550505050565b60606118ae82611d05565b6118ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e4906140d1565b60405180910390fd5b6060600860008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156119965780601f1061196b57610100808354040283529160200191611996565b820191906000526020600020905b81548152906001019060200180831161197957829003601f168201915b5050505050905060606119a7611096565b90506000815114156119bd578192505050611a21565b6000825111156119f25780826040516020016119da929190613d27565b60405160208183030381529060405292505050611a21565b806119fc85612310565b604051602001611a0d929190613d27565b604051602081830303815290604052925050505b919050565b600f5481565b611a34611d22565b73ffffffffffffffffffffffffffffffffffffffff16611a526114d0565b73ffffffffffffffffffffffffffffffffffffffff1614611aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9f90614091565b60405180910390fd5b80600c8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60009054906101000a900460ff1681565b611b61611d22565b73ffffffffffffffffffffffffffffffffffffffff16611b7f6114d0565b73ffffffffffffffffffffffffffffffffffffffff1614611bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcc90614091565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3c90613e51565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611d1b82600261245790919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d9d8361105f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611df182600001612471565b9050919050565b6000611e0382611d05565b611e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3990613f91565b60405180910390fd5b6000611e4d8361105f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ebc57508373ffffffffffffffffffffffffffffffffffffffff16611ea484610900565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ecd5750611ecc8185611ab2565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ef68261105f565b73ffffffffffffffffffffffffffffffffffffffff1614611f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f43906140b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb390613ef1565b60405180910390fd5b611fc7838383612482565b611fd2600082611d2a565b61202381600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061248790919063ffffffff16565b5061207581600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206124a190919063ffffffff16565b5061208c818360026124bb9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006120fc83600001836124f0565b60001c905092915050565b600080828401905083811015612152576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214990613ed1565b60405180910390fd5b8091505092915050565b60008083141561216f57600090506121c6565b600082840290508284828161218057fe5b04146121c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b890614051565b60405180910390fd5b809150505b92915050565b6121e682826040518060200160405280600081525061255d565b5050565b6000806000806121fd86600001866125b8565b915091508160001c8160001c9350935050509250929050565b806009908051906020019061222c929190612df0565b5050565b6000612243846000018460001b8461263b565b60001c90509392505050565b600061225d826000016126cc565b9050919050565b61226f848484611ed6565b61227b848484846126dd565b6122ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b190613e31565b60405180910390fd5b50505050565b600082821115612305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fc90613f51565b60405180910390fd5b818303905092915050565b60606000821415612358576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612452565b600082905060005b60008214612382578080600101915050600a828161237a57fe5b049150612360565b60608167ffffffffffffffff8111801561239b57600080fd5b506040519080825280601f01601f1916602001820160405280156123ce5781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461244a57600a84816123ef57fe5b0660300160f81b8282806001900393508151811061240957fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161244257fe5b0493506123dd565b819450505050505b919050565b6000612469836000018360001b612841565b905092915050565b600081600001805490509050919050565b505050565b6000612499836000018360001b612864565b905092915050565b60006124b3836000018360001b61294c565b905092915050565b60006124e7846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b6129bc565b90509392505050565b60008183600001805490501161253b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253290613e11565b60405180910390fd5b82600001828154811061254a57fe5b9060005260206000200154905092915050565b6125678383612a98565b61257460008484846126dd565b6125b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125aa90613e31565b60405180910390fd5b505050565b60008082846000018054905011612604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fb90614011565b60405180910390fd5b600084600001848154811061261557fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b6000808460010160008581526020019081526020016000205490506000811415839061269d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126949190613def565b60405180910390fd5b508460000160018203815481106126b057fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b60006126fe8473ffffffffffffffffffffffffffffffffffffffff16612c26565b61270b5760019050612839565b60606127d263150b7a0260e01b612720611d22565b8887876040516024016127369493929190613d66565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040518060600160405280603281526020016143dc603291398773ffffffffffffffffffffffffffffffffffffffff16612c399092919063ffffffff16565b90506000818060200190518101906127ea919061317c565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b6000808360010160008481526020019081526020016000205490506000811461294057600060018203905060006001866000018054905003905060008660000182815481106128af57fe5b90600052602060002001549050808760000184815481106128cc57fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061290457fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612946565b60009150505b92915050565b60006129588383612c51565b6129b15782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506129b6565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415612a6357846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050612a91565b82856000016001830381548110612a7657fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aff90614031565b60405180910390fd5b612b1181611d05565b15612b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4890613e71565b60405180910390fd5b612b5d60008383612482565b612bae81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206124a190919063ffffffff16565b50612bc5818360026124bb9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060612c488484600085612c74565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015612cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb090613f71565b60405180910390fd5b612cc285612c26565b612d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf890614131565b60405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff168587604051612d2b9190613d10565b60006040518083038185875af1925050503d8060008114612d68576040519150601f19603f3d011682016040523d82523d6000602084013e612d6d565b606091505b5091509150612d7d828286612d89565b92505050949350505050565b60608315612d9957829050612de9565b600083511115612dac5782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de09190613def565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282612e265760008555612e6d565b82601f10612e3f57805160ff1916838001178555612e6d565b82800160010185558215612e6d579182015b82811115612e6c578251825591602001919060010190612e51565b5b509050612e7a9190612e7e565b5090565b5b80821115612e97576000816000905550600101612e7f565b5090565b600081359050612eaa8161437f565b92915050565b600081359050612ebf81614396565b92915050565b600081359050612ed4816143ad565b92915050565b600081519050612ee9816143ad565b92915050565b600082601f830112612f0057600080fd5b8135612f13612f0e826141bd565b61418c565b91508082526020830160208301858383011115612f2f57600080fd5b612f3a83828461432a565b50505092915050565b600082601f830112612f5457600080fd5b8135612f67612f62826141ed565b61418c565b91508082526020830160208301858383011115612f8357600080fd5b612f8e83828461432a565b50505092915050565b600081359050612fa6816143c4565b92915050565b600060208284031215612fbe57600080fd5b6000612fcc84828501612e9b565b91505092915050565b60008060408385031215612fe857600080fd5b6000612ff685828601612e9b565b925050602061300785828601612e9b565b9150509250929050565b60008060006060848603121561302657600080fd5b600061303486828701612e9b565b935050602061304586828701612e9b565b925050604061305686828701612f97565b9150509250925092565b6000806000806080858703121561307657600080fd5b600061308487828801612e9b565b945050602061309587828801612e9b565b93505060406130a687828801612f97565b925050606085013567ffffffffffffffff8111156130c357600080fd5b6130cf87828801612eef565b91505092959194509250565b600080604083850312156130ee57600080fd5b60006130fc85828601612e9b565b925050602061310d85828601612eb0565b9150509250929050565b6000806040838503121561312a57600080fd5b600061313885828601612e9b565b925050602061314985828601612f97565b9150509250929050565b60006020828403121561316557600080fd5b600061317384828501612ec5565b91505092915050565b60006020828403121561318e57600080fd5b600061319c84828501612eda565b91505092915050565b6000602082840312156131b757600080fd5b600082013567ffffffffffffffff8111156131d157600080fd5b6131dd84828501612f43565b91505092915050565b6000602082840312156131f857600080fd5b600061320684828501612f97565b91505092915050565b600061321b8383613cf2565b60208301905092915050565b613230816142b6565b82525050565b61323f816142a4565b82525050565b60006132508261422d565b61325a818561425b565b93506132658361421d565b8060005b8381101561329657815161327d888261320f565b97506132888361424e565b925050600181019050613269565b5085935050505092915050565b6132ac816142c8565b82525050565b60006132bd82614238565b6132c7818561426c565b93506132d7818560208601614339565b6132e08161436e565b840191505092915050565b60006132f682614238565b613300818561427d565b9350613310818560208601614339565b80840191505092915050565b600061332782614243565b6133318185614288565b9350613341818560208601614339565b61334a8161436e565b840191505092915050565b600061336082614243565b61336a8185614299565b935061337a818560208601614339565b80840191505092915050565b6000613393602283614288565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006133f9603283614288565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061345f602683614288565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134c5601c83614288565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613505602583614288565b91507f53616c65206d7573742062652061637469766520746f206d696e742061204d6f60008301527f6f6e646f670000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061356b602583614288565b91507f596f752063616e206f6e6c79206d696e7420323020746f6b656e73206174206160008301527f2074696d650000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006135d1601b83614288565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000613611602483614288565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613677601983614288565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006136b7601f83614288565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b60006136f7601e83614288565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000613737602683614288565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061379d602c83614288565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613803602c83614288565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f66204d6f6f6e646f677300000000000000000000000000000000000000006020830152604082019050919050565b6000613869603883614288565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006138cf602a83614288565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613935602283614288565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061399b602083614288565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006139db602183614288565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a41602c83614288565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613aa7602083614288565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613ae7602983614288565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b4d602f83614288565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613bb3602183614288565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c19603183614288565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613c7f601d83614288565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b6000613cbf600483614288565b91507f4e4f5045000000000000000000000000000000000000000000000000000000006000830152602082019050919050565b613cfb81614320565b82525050565b613d0a81614320565b82525050565b6000613d1c82846132eb565b915081905092915050565b6000613d338285613355565b9150613d3f8284613355565b91508190509392505050565b6000602082019050613d606000830184613236565b92915050565b6000608082019050613d7b6000830187613227565b613d886020830186613236565b613d956040830185613d01565b8181036060830152613da781846132b2565b905095945050505050565b60006020820190508181036000830152613dcc8184613245565b905092915050565b6000602082019050613de960008301846132a3565b92915050565b60006020820190508181036000830152613e09818461331c565b905092915050565b60006020820190508181036000830152613e2a81613386565b9050919050565b60006020820190508181036000830152613e4a816133ec565b9050919050565b60006020820190508181036000830152613e6a81613452565b9050919050565b60006020820190508181036000830152613e8a816134b8565b9050919050565b60006020820190508181036000830152613eaa816134f8565b9050919050565b60006020820190508181036000830152613eca8161355e565b9050919050565b60006020820190508181036000830152613eea816135c4565b9050919050565b60006020820190508181036000830152613f0a81613604565b9050919050565b60006020820190508181036000830152613f2a8161366a565b9050919050565b60006020820190508181036000830152613f4a816136aa565b9050919050565b60006020820190508181036000830152613f6a816136ea565b9050919050565b60006020820190508181036000830152613f8a8161372a565b9050919050565b60006020820190508181036000830152613faa81613790565b9050919050565b60006020820190508181036000830152613fca816137f6565b9050919050565b60006020820190508181036000830152613fea8161385c565b9050919050565b6000602082019050818103600083015261400a816138c2565b9050919050565b6000602082019050818103600083015261402a81613928565b9050919050565b6000602082019050818103600083015261404a8161398e565b9050919050565b6000602082019050818103600083015261406a816139ce565b9050919050565b6000602082019050818103600083015261408a81613a34565b9050919050565b600060208201905081810360008301526140aa81613a9a565b9050919050565b600060208201905081810360008301526140ca81613ada565b9050919050565b600060208201905081810360008301526140ea81613b40565b9050919050565b6000602082019050818103600083015261410a81613ba6565b9050919050565b6000602082019050818103600083015261412a81613c0c565b9050919050565b6000602082019050818103600083015261414a81613c72565b9050919050565b6000602082019050818103600083015261416a81613cb2565b9050919050565b60006020820190506141866000830184613d01565b92915050565b6000604051905081810181811067ffffffffffffffff821117156141b3576141b261436c565b5b8060405250919050565b600067ffffffffffffffff8211156141d8576141d761436c565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156142085761420761436c565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006142af82614300565b9050919050565b60006142c182614300565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561435757808201518184015260208101905061433c565b83811115614366576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b614388816142a4565b811461439357600080fd5b50565b61439f816142c8565b81146143aa57600080fd5b50565b6143b6816142d4565b81146143c157600080fd5b50565b6143cd81614320565b81146143d857600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220d86e0a48525da9cb26218919369c6871cc7ff1f9d09acf5039a6db2c48489e0664736f6c63430007050033

Deployed Bytecode Sourcemap

67583:3110:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10612:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51897:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54683:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54213:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69066:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53691:211;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55573:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67909:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53453:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69312:89;;;;;;;;;;;;;:::i;:::-;;68348:183;;;;;;;;;;;;;:::i;:::-;;69971:712;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55949:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53979:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69203:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51653:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53272:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51370:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66608:148;;;;;;;;;;;;;:::i;:::-;;67668:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67855:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69419:540;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65957:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52066:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54976:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67785:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56171:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68543:385;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52241:792;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68239:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68938:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55342:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67961:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66911:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10612:150;10697:4;10721:20;:33;10742:11;10721:33;;;;;;;;;;;;;;;;;;;;;;;;;;;10714:40;;10612:150;;;:::o;51897:100::-;51951:13;51984:5;51977:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51897:100;:::o;54683:221::-;54759:7;54787:16;54795:7;54787;:16::i;:::-;54779:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54872:15;:24;54888:7;54872:24;;;;;;;;;;;;;;;;;;;;;54865:31;;54683:221;;;:::o;54213:404::-;54294:13;54310:23;54325:7;54310:14;:23::i;:::-;54294:39;;54358:5;54352:11;;:2;:11;;;;54344:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;54438:5;54422:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;54447:44;54471:5;54478:12;:10;:12::i;:::-;54447:23;:44::i;:::-;54422:69;54414:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;54588:21;54597:2;54601:7;54588:8;:21::i;:::-;54213:404;;;:::o;69066:129::-;66188:12;:10;:12::i;:::-;66177:23;;:7;:5;:7::i;:::-;:23;;;66169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69173:14:::1;69151:19;:36;;;;;;;;;;;;:::i;:::-;;69066:129:::0;:::o;53691:211::-;53752:7;53873:21;:12;:19;:21::i;:::-;53866:28;;53691:211;:::o;55573:305::-;55734:41;55753:12;:10;:12::i;:::-;55767:7;55734:18;:41::i;:::-;55726:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;55842:28;55852:4;55858:2;55862:7;55842:9;:28::i;:::-;55573:305;;;:::o;67909:43::-;67948:4;67909:43;:::o;53453:162::-;53550:7;53577:30;53601:5;53577:13;:20;53591:5;53577:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;53570:37;;53453:162;;;;:::o;69312:89::-;66188:12;:10;:12::i;:::-;66177:23;;:7;:5;:7::i;:::-;:23;;;66169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69381:12:::1;;;;;;;;;;;69380:13;69365:12;;:28;;;;;;;;;;;;;;;;;;69312:89::o:0;68348:183::-;66188:12;:10;:12::i;:::-;66177:23;;:7;:5;:7::i;:::-;:23;;;66169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68396:13:::1;68436:1;68412:21;:25;;;;;;68396:41;;68464:2;;;;;;;;;;;68456:16;;:23;68473:5;68456:23;;;;;;;;;;;;;;;;;;;;;;;68448:32;;;::::0;::::1;;68507:2;;;;;;;;;;;68499:16;;:23;68516:5;68499:23;;;;;;;;;;;;;;;;;;;;;;;68491:32;;;::::0;::::1;;66248:1;68348:183::o:0;69971:712::-;70048:12;;;;;;;;;;;70040:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;70138:1;70121:14;:18;:59;;;;;67898:2;70143:14;:37;;70121:59;70113:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;67948:4;70241:33;70259:14;70241:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:49;;70233:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;70371:33;70389:14;70371:13;;:17;;:33;;;;:::i;:::-;70358:9;:46;;70350:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;70465:6;70461:213;70481:14;70477:1;:18;70461:213;;;70517:14;70534:13;:11;:13::i;:::-;70517:30;;67948:4;70566:13;:11;:13::i;:::-;:28;70562:101;;;70615:32;70625:10;70637:9;70615;:32::i;:::-;70562:101;70461:213;70497:3;;;;;;;70461:213;;;;69971:712;:::o;55949:151::-;56053:39;56070:4;56076:2;56080:7;56053:39;;;;;;;;;;;;:16;:39::i;:::-;55949:151;;;:::o;53979:172::-;54054:7;54075:15;54096:22;54112:5;54096:12;:15;;:22;;;;:::i;:::-;54074:44;;;54136:7;54129:14;;;53979:172;;;:::o;69203:99::-;66188:12;:10;:12::i;:::-;66177:23;;:7;:5;:7::i;:::-;:23;;;66169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69274:20:::1;69286:7;69274:11;:20::i;:::-;69203:99:::0;:::o;51653:177::-;51725:7;51752:70;51769:7;51752:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;51745:77;;51653:177;;;:::o;53272:97::-;53320:13;53353:8;53346:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53272:97;:::o;51370:221::-;51442:7;51487:1;51470:19;;:5;:19;;;;51462:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;51554:29;:13;:20;51568:5;51554:20;;;;;;;;;;;;;;;:27;:29::i;:::-;51547:36;;51370:221;;;:::o;66608:148::-;66188:12;:10;:12::i;:::-;66177:23;;:7;:5;:7::i;:::-;:23;;;66169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66715:1:::1;66678:40;;66699:6;;;;;;;;;;;66678:40;;;;;;;;;;;;66746:1;66729:6;;:19;;;;;;;;;;;;;;;;;;66608:148::o:0;67668:38::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;67855:45::-;67898:2;67855:45;:::o;69419:540::-;69480:16;69510:18;69531:17;69541:6;69531:9;:17::i;:::-;69510:38;;69577:1;69563:10;:15;69559:393;;;69654:1;69640:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69633:23;;;;;69559:393;69689:23;69729:10;69715:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69689:51;;69755:13;69783:130;69807:10;69799:5;:18;69783:130;;;69863:34;69883:6;69891:5;69863:19;:34::i;:::-;69847:6;69854:5;69847:13;;;;;;;;;;;;;:50;;;;;69819:7;;;;;;;69783:130;;;69934:6;69927:13;;;;;69419:540;;;;:::o;65957:87::-;66003:7;66030:6;;;;;;;;;;;66023:13;;65957:87;:::o;52066:104::-;52122:13;52155:7;52148:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52066:104;:::o;54976:295::-;55091:12;:10;:12::i;:::-;55079:24;;:8;:24;;;;55071:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;55191:8;55146:18;:32;55165:12;:10;:12::i;:::-;55146:32;;;;;;;;;;;;;;;:42;55179:8;55146:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;55244:8;55215:48;;55230:12;:10;:12::i;:::-;55215:48;;;55254:8;55215:48;;;;;;:::i;:::-;;;;;;;;54976:295;;:::o;67785:48::-;;;;:::o;56171:285::-;56303:41;56322:12;:10;:12::i;:::-;56336:7;56303:18;:41::i;:::-;56295:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;56409:39;56423:4;56429:2;56433:7;56442:5;56409:13;:39::i;:::-;56171:285;;;;:::o;68543:385::-;66188:12;:10;:12::i;:::-;66177:23;;:7;:5;:7::i;:::-;:23;;;66169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68641:11:::1;68655:13;:11;:13::i;:::-;68641:27;;68704:1;68687:14;:18;:55;;;;;68727:15;;68709:14;:33;;68687:55;68679:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;68767:6;68762:95;68783:14;68779:1;:18;68762:95;;;68819:26;68829:3;68843:1;68834:6;:10;68819:9;:26::i;:::-;68799:3;;;;;;;68762:95;;;;68885:35;68905:14;68885:15;;:19;;:35;;;;:::i;:::-;68867:15;:53;;;;66248:1;68543:385:::0;;:::o;52241:792::-;52314:13;52348:16;52356:7;52348;:16::i;:::-;52340:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;52429:23;52455:10;:19;52466:7;52455:19;;;;;;;;;;;52429:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52485:18;52506:9;:7;:9::i;:::-;52485:30;;52613:1;52597:4;52591:18;:23;52587:72;;;52638:9;52631:16;;;;;;52587:72;52789:1;52769:9;52763:23;:27;52759:108;;;52838:4;52844:9;52821:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52807:48;;;;;;52759:108;52999:4;53005:18;:7;:16;:18::i;:::-;52982:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52968:57;;;;52241:792;;;;:::o;68239:33::-;;;;:::o;68938:120::-;66188:12;:10;:12::i;:::-;66177:23;;:7;:5;:7::i;:::-;:23;;;66169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69034:16:::1;69018:13;:32;;;;68938:120:::0;:::o;55342:164::-;55439:4;55463:18;:25;55482:5;55463:25;;;;;;;;;;;;;;;:35;55489:8;55463:35;;;;;;;;;;;;;;;;;;;;;;;;;55456:42;;55342:164;;;;:::o;67961:32::-;;;;;;;;;;;;;:::o;66911:244::-;66188:12;:10;:12::i;:::-;66177:23;;:7;:5;:7::i;:::-;:23;;;66169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67020:1:::1;67000:22;;:8;:22;;;;66992:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;67110:8;67081:38;;67102:6;;;;;;;;;;;67081:38;;;;;;;;;;;;67139:8;67130:6;;:17;;;;;;;;;;;;;;;;;;66911:244:::0;:::o;57923:127::-;57988:4;58012:30;58034:7;58012:12;:21;;:30;;;;:::i;:::-;58005:37;;57923:127;;;:::o;1044:106::-;1097:15;1132:10;1125:17;;1044:106;:::o;63941:192::-;64043:2;64016:15;:24;64032:7;64016:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;64099:7;64095:2;64061:46;;64070:23;64085:7;64070:14;:23::i;:::-;64061:46;;;;;;;;;;;;63941:192;;:::o;44655:123::-;44724:7;44751:19;44759:3;:10;;44751:7;:19::i;:::-;44744:26;;44655:123;;;:::o;58217:355::-;58310:4;58335:16;58343:7;58335;:16::i;:::-;58327:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;58411:13;58427:23;58442:7;58427:14;:23::i;:::-;58411:39;;58480:5;58469:16;;:7;:16;;;:51;;;;58513:7;58489:31;;:20;58501:7;58489:11;:20::i;:::-;:31;;;58469:51;:94;;;;58524:39;58548:5;58555:7;58524:23;:39::i;:::-;58469:94;58461:103;;;58217:355;;;;:::o;61353:599::-;61478:4;61451:31;;:23;61466:7;61451:14;:23::i;:::-;:31;;;61443:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;61579:1;61565:16;;:2;:16;;;;61557:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;61635:39;61656:4;61662:2;61666:7;61635:20;:39::i;:::-;61739:29;61756:1;61760:7;61739:8;:29::i;:::-;61781:35;61808:7;61781:13;:19;61795:4;61781:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;61827:30;61849:7;61827:13;:17;61841:2;61827:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;61870:29;61887:7;61896:2;61870:12;:16;;:29;;;;;:::i;:::-;;61936:7;61932:2;61917:27;;61926:4;61917:27;;;;;;;;;;;;61353:599;;;:::o;36446:137::-;36517:7;36552:22;36556:3;:10;;36568:5;36552:3;:22::i;:::-;36544:31;;36537:38;;36446:137;;;;:::o;14174:179::-;14232:7;14252:9;14268:1;14264;:5;14252:17;;14293:1;14288;:6;;14280:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;14344:1;14337:8;;;14174:179;;;;:::o;15053:220::-;15111:7;15140:1;15135;:6;15131:20;;;15150:1;15143:8;;;;15131:20;15162:9;15178:1;15174;:5;15162:17;;15207:1;15202;15198;:5;;;;;;:10;15190:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;15264:1;15257:8;;;15053:220;;;;;:::o;58915:110::-;58991:26;59001:2;59005:7;58991:26;;;;;;;;;;;;:9;:26::i;:::-;58915:110;;:::o;45117:236::-;45197:7;45206;45227:11;45240:13;45257:22;45261:3;:10;;45273:5;45257:3;:22::i;:::-;45226:53;;;;45306:3;45298:12;;45336:5;45328:14;;45290:55;;;;;;45117:236;;;;;:::o;62553:100::-;62637:8;62626;:19;;;;;;;;;;;;:::i;:::-;;62553:100;:::o;46403:213::-;46510:7;46561:44;46566:3;:10;;46586:3;46578:12;;46592;46561:4;:44::i;:::-;46553:53;;46530:78;;46403:213;;;;;:::o;35988:114::-;36048:7;36075:19;36083:3;:10;;36075:7;:19::i;:::-;36068:26;;35988:114;;;:::o;57338:272::-;57452:28;57462:4;57468:2;57472:7;57452:9;:28::i;:::-;57499:48;57522:4;57528:2;57532:7;57541:5;57499:22;:48::i;:::-;57491:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;57338:272;;;;:::o;14636:158::-;14694:7;14727:1;14722;:6;;14714:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;14785:1;14781;:5;14774:12;;14636:158;;;;:::o;46867:746::-;46923:13;47153:1;47144:5;:10;47140:53;;;47171:10;;;;;;;;;;;;;;;;;;;;;47140:53;47203:12;47218:5;47203:20;;47234:14;47259:78;47274:1;47266:4;:9;47259:78;;47292:8;;;;;;;47323:2;47315:10;;;;;;;;;47259:78;;;47347:19;47379:6;47369:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47347:39;;47397:13;47422:1;47413:6;:10;47397:26;;47441:5;47434:12;;47457:117;47472:1;47464:4;:9;47457:117;;47533:2;47526:4;:9;;;;;;47521:2;:14;47508:29;;47490:6;47497:7;;;;;;;47490:15;;;;;;;;;;;:47;;;;;;;;;;;47560:2;47552:10;;;;;;;;;47457:117;;;47598:6;47584:21;;;;;;46867:746;;;;:::o;44416:151::-;44500:4;44524:35;44534:3;:10;;44554:3;44546:12;;44524:9;:35::i;:::-;44517:42;;44416:151;;;;:::o;41234:110::-;41290:7;41317:3;:12;;:19;;;;41310:26;;41234:110;;;:::o;64746:93::-;;;;:::o;35533:137::-;35603:4;35627:35;35635:3;:10;;35655:5;35647:14;;35627:7;:35::i;:::-;35620:42;;35533:137;;;;:::o;35226:131::-;35293:4;35317:32;35322:3;:10;;35342:5;35334:14;;35317:4;:32::i;:::-;35310:39;;35226:131;;;;:::o;43839:185::-;43928:4;43952:64;43957:3;:10;;43977:3;43969:12;;44007:5;43991:23;;43983:32;;43952:4;:64::i;:::-;43945:71;;43839:185;;;;;:::o;31484:204::-;31551:7;31600:5;31579:3;:11;;:18;;;;:26;31571:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31662:3;:11;;31674:5;31662:18;;;;;;;;;;;;;;;;31655:25;;31484:204;;;;:::o;59252:250::-;59348:18;59354:2;59358:7;59348:5;:18::i;:::-;59385:54;59416:1;59420:2;59424:7;59433:5;59385:22;:54::i;:::-;59377:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;59252:250;;;:::o;41699:279::-;41766:7;41775;41825:5;41803:3;:12;;:19;;;;:27;41795:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;41882:22;41907:3;:12;;41920:5;41907:19;;;;;;;;;;;;;;;;;;41882:44;;41945:5;:10;;;41957:5;:12;;;41937:33;;;;;41699:279;;;;;:::o;43196:319::-;43290:7;43310:16;43329:3;:12;;:17;43342:3;43329:17;;;;;;;;;;;;43310:36;;43377:1;43365:8;:13;;43380:12;43357:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;43447:3;:12;;43471:1;43460:8;:12;43447:26;;;;;;;;;;;;;;;;;;:33;;;43440:40;;;43196:319;;;;;:::o;31031:109::-;31087:7;31114:3;:11;;:18;;;;31107:25;;31031:109;;;:::o;63218:604::-;63339:4;63366:15;:2;:13;;;:15::i;:::-;63361:60;;63405:4;63398:11;;;;63361:60;63431:23;63457:252;63510:45;;;63570:12;:10;:12::i;:::-;63597:4;63616:7;63638:5;63473:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63457:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;63431:278;;63720:13;63747:10;63736:32;;;;;;;;;;;;:::i;:::-;63720:48;;48367:10;63797:16;;63787:26;;;:6;:26;;;;63779:35;;;;63218:604;;;;;;;:::o;41014:125::-;41085:4;41130:1;41109:3;:12;;:17;41122:3;41109:17;;;;;;;;;;;;:22;;41102:29;;41014:125;;;;:::o;29186:1544::-;29252:4;29370:18;29391:3;:12;;:19;29404:5;29391:19;;;;;;;;;;;;29370:40;;29441:1;29427:10;:15;29423:1300;;29789:21;29826:1;29813:10;:14;29789:38;;29842:17;29883:1;29862:3;:11;;:18;;;;:22;29842:42;;30129:17;30149:3;:11;;30161:9;30149:22;;;;;;;;;;;;;;;;30129:42;;30295:9;30266:3;:11;;30278:13;30266:26;;;;;;;;;;;;;;;:38;;;;30414:1;30398:13;:17;30372:3;:12;;:23;30385:9;30372:23;;;;;;;;;;;:43;;;;30524:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;30619:3;:12;;:19;30632:5;30619:19;;;;;;;;;;;30612:26;;;30662:4;30655:11;;;;;;;;29423:1300;30706:5;30699:12;;;29186:1544;;;;;:::o;28596:414::-;28659:4;28681:21;28691:3;28696:5;28681:9;:21::i;:::-;28676:327;;28719:3;:11;;28736:5;28719:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28902:3;:11;;:18;;;;28880:3;:12;;:19;28893:5;28880:19;;;;;;;;;;;:40;;;;28942:4;28935:11;;;;28676:327;28986:5;28979:12;;28596:414;;;;;:::o;38514:692::-;38590:4;38706:16;38725:3;:12;;:17;38738:3;38725:17;;;;;;;;;;;;38706:36;;38771:1;38759:8;:13;38755:444;;;38826:3;:12;;38844:38;;;;;;;;38861:3;38844:38;;;;38874:5;38844:38;;;38826:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39041:3;:12;;:19;;;;39021:3;:12;;:17;39034:3;39021:17;;;;;;;;;;;:39;;;;39082:4;39075:11;;;;;38755:444;39155:5;39119:3;:12;;39143:1;39132:8;:12;39119:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;39182:5;39175:12;;;38514:692;;;;;;:::o;59838:404::-;59932:1;59918:16;;:2;:16;;;;59910:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;59991:16;59999:7;59991;:16::i;:::-;59990:17;59982:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;60053:45;60082:1;60086:2;60090:7;60053:20;:45::i;:::-;60111:30;60133:7;60111:13;:17;60125:2;60111:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;60154:29;60171:7;60180:2;60154:12;:16;;:29;;;;;:::i;:::-;;60226:7;60222:2;60201:33;;60218:1;60201:33;;;;;;;;;;;;59838:404;;:::o;19615:422::-;19675:4;19883:12;19994:7;19982:20;19974:28;;20028:1;20021:4;:8;20014:15;;;19615:422;;;:::o;22533:195::-;22636:12;22668:52;22690:6;22698:4;22704:1;22707:12;22668:21;:52::i;:::-;22661:59;;22533:195;;;;;:::o;30816:129::-;30889:4;30936:1;30913:3;:12;;:19;30926:5;30913:19;;;;;;;;;;;;:24;;30906:31;;30816:129;;;;:::o;23585:530::-;23712:12;23770:5;23745:21;:30;;23737:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;23837:18;23848:6;23837:10;:18::i;:::-;23829:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;23963:12;23977:23;24004:6;:11;;24024:5;24032:4;24004:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23962:75;;;;24055:52;24073:7;24082:10;24094:12;24055:17;:52::i;:::-;24048:59;;;;23585:530;;;;;;:::o;26125:742::-;26240:12;26269:7;26265:595;;;26300:10;26293:17;;;;26265:595;26434:1;26414:10;:17;:21;26410:439;;;26677:10;26671:17;26738:15;26725:10;26721:2;26717:19;26710:44;26625:148;26820:12;26813:20;;;;;;;;;;;:::i;:::-;;;;;;;;26125:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:133::-;;233:6;220:20;211:29;;249:30;273:5;249:30;:::i;:::-;201:84;;;;:::o;291:137::-;;374:6;361:20;352:29;;390:32;416:5;390:32;:::i;:::-;342:86;;;;:::o;434:141::-;;521:6;515:13;506:22;;537:32;563:5;537:32;:::i;:::-;496:79;;;;:::o;581:464::-;;685:3;678:4;670:6;666:17;662:27;652:2;;703:1;700;693:12;652:2;743:6;730:20;768:64;783:48;824:6;783:48;:::i;:::-;768:64;:::i;:::-;759:73;;855:6;848:5;841:21;894:4;886:6;882:17;930:4;923:5;919:16;968:3;959:6;954:3;950:16;947:25;944:2;;;985:1;982;975:12;944:2;998:41;1032:6;1027:3;1022;998:41;:::i;:::-;642:403;;;;;;;:::o;1051:466::-;;1156:3;1149:4;1141:6;1137:17;1133:27;1123:2;;1174:1;1171;1164:12;1123:2;1214:6;1201:20;1239:65;1254:49;1296:6;1254:49;:::i;:::-;1239:65;:::i;:::-;1230:74;;1327:6;1320:5;1313:21;1366:4;1358:6;1354:17;1402:4;1395:5;1391:16;1440:3;1431:6;1426:3;1422:16;1419:25;1416:2;;;1457:1;1454;1447:12;1416:2;1470:41;1504:6;1499:3;1494;1470:41;:::i;:::-;1113:404;;;;;;;:::o;1523:139::-;;1607:6;1594:20;1585:29;;1623:33;1650:5;1623:33;:::i;:::-;1575:87;;;;:::o;1668:260::-;;1776:2;1764:9;1755:7;1751:23;1747:32;1744:2;;;1792:1;1789;1782:12;1744:2;1834:1;1858:53;1903:7;1894:6;1883:9;1879:22;1858:53;:::i;:::-;1848:63;;1806:115;1734:194;;;;:::o;1934:403::-;;;2059:2;2047:9;2038:7;2034:23;2030:32;2027:2;;;2075:1;2072;2065:12;2027:2;2117:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2089:115;2242:2;2267:53;2312:7;2303:6;2292:9;2288:22;2267:53;:::i;:::-;2257:63;;2214:116;2017:320;;;;;:::o;2343:546::-;;;;2485:2;2473:9;2464:7;2460:23;2456:32;2453:2;;;2501:1;2498;2491:12;2453:2;2543:1;2567:53;2612:7;2603:6;2592:9;2588:22;2567:53;:::i;:::-;2557:63;;2515:115;2668:2;2693:53;2738:7;2729:6;2718:9;2714:22;2693:53;:::i;:::-;2683:63;;2640:116;2794:2;2819:53;2864:7;2855:6;2844:9;2840:22;2819:53;:::i;:::-;2809:63;;2766:116;2443:446;;;;;:::o;2895:801::-;;;;;3063:3;3051:9;3042:7;3038:23;3034:33;3031:2;;;3080:1;3077;3070:12;3031:2;3122:1;3146:53;3191:7;3182:6;3171:9;3167:22;3146:53;:::i;:::-;3136:63;;3094:115;3247:2;3272:53;3317:7;3308:6;3297:9;3293:22;3272:53;:::i;:::-;3262:63;;3219:116;3373:2;3398:53;3443:7;3434:6;3423:9;3419:22;3398:53;:::i;:::-;3388:63;;3345:116;3527:2;3516:9;3512:18;3499:32;3558:18;3550:6;3547:30;3544:2;;;3590:1;3587;3580:12;3544:2;3617:62;3671:7;3662:6;3651:9;3647:22;3617:62;:::i;:::-;3607:72;;3471:218;3021:675;;;;;;;:::o;3702:397::-;;;3824:2;3812:9;3803:7;3799:23;3795:32;3792:2;;;3840:1;3837;3830:12;3792:2;3882:1;3906:53;3951:7;3942:6;3931:9;3927:22;3906:53;:::i;:::-;3896:63;;3854:115;4007:2;4032:50;4074:7;4065:6;4054:9;4050:22;4032:50;:::i;:::-;4022:60;;3979:113;3782:317;;;;;:::o;4105:403::-;;;4230:2;4218:9;4209:7;4205:23;4201:32;4198:2;;;4246:1;4243;4236:12;4198:2;4288:1;4312:53;4357:7;4348:6;4337:9;4333:22;4312:53;:::i;:::-;4302:63;;4260:115;4413:2;4438:53;4483:7;4474:6;4463:9;4459:22;4438:53;:::i;:::-;4428:63;;4385:116;4188:320;;;;;:::o;4514:258::-;;4621:2;4609:9;4600:7;4596:23;4592:32;4589:2;;;4637:1;4634;4627:12;4589:2;4679:1;4703:52;4747:7;4738:6;4727:9;4723:22;4703:52;:::i;:::-;4693:62;;4651:114;4579:193;;;;:::o;4778:280::-;;4896:2;4884:9;4875:7;4871:23;4867:32;4864:2;;;4912:1;4909;4902:12;4864:2;4954:1;4978:63;5033:7;5024:6;5013:9;5009:22;4978:63;:::i;:::-;4968:73;;4926:125;4854:204;;;;:::o;5064:373::-;;5182:2;5170:9;5161:7;5157:23;5153:32;5150:2;;;5198:1;5195;5188:12;5150:2;5268:1;5257:9;5253:17;5240:31;5298:18;5290:6;5287:30;5284:2;;;5330:1;5327;5320:12;5284:2;5357:63;5412:7;5403:6;5392:9;5388:22;5357:63;:::i;:::-;5347:73;;5212:218;5140:297;;;;:::o;5443:260::-;;5551:2;5539:9;5530:7;5526:23;5522:32;5519:2;;;5567:1;5564;5557:12;5519:2;5609:1;5633:53;5678:7;5669:6;5658:9;5654:22;5633:53;:::i;:::-;5623:63;;5581:115;5509:194;;;;:::o;5709:179::-;;5799:46;5841:3;5833:6;5799:46;:::i;:::-;5877:4;5872:3;5868:14;5854:28;;5789:99;;;;:::o;5894:142::-;5997:32;6023:5;5997:32;:::i;:::-;5992:3;5985:45;5975:61;;:::o;6042:118::-;6129:24;6147:5;6129:24;:::i;:::-;6124:3;6117:37;6107:53;;:::o;6196:732::-;;6344:54;6392:5;6344:54;:::i;:::-;6414:86;6493:6;6488:3;6414:86;:::i;:::-;6407:93;;6524:56;6574:5;6524:56;:::i;:::-;6603:7;6634:1;6619:284;6644:6;6641:1;6638:13;6619:284;;;6720:6;6714:13;6747:63;6806:3;6791:13;6747:63;:::i;:::-;6740:70;;6833:60;6886:6;6833:60;:::i;:::-;6823:70;;6679:224;6666:1;6663;6659:9;6654:14;;6619:284;;;6623:14;6919:3;6912:10;;6320:608;;;;;;;:::o;6934:109::-;7015:21;7030:5;7015:21;:::i;:::-;7010:3;7003:34;6993:50;;:::o;7049:360::-;;7163:38;7195:5;7163:38;:::i;:::-;7217:70;7280:6;7275:3;7217:70;:::i;:::-;7210:77;;7296:52;7341:6;7336:3;7329:4;7322:5;7318:16;7296:52;:::i;:::-;7373:29;7395:6;7373:29;:::i;:::-;7368:3;7364:39;7357:46;;7139:270;;;;;:::o;7415:373::-;;7547:38;7579:5;7547:38;:::i;:::-;7601:88;7682:6;7677:3;7601:88;:::i;:::-;7594:95;;7698:52;7743:6;7738:3;7731:4;7724:5;7720:16;7698:52;:::i;:::-;7775:6;7770:3;7766:16;7759:23;;7523:265;;;;;:::o;7794:364::-;;7910:39;7943:5;7910:39;:::i;:::-;7965:71;8029:6;8024:3;7965:71;:::i;:::-;7958:78;;8045:52;8090:6;8085:3;8078:4;8071:5;8067:16;8045:52;:::i;:::-;8122:29;8144:6;8122:29;:::i;:::-;8117:3;8113:39;8106:46;;7886:272;;;;;:::o;8164:377::-;;8298:39;8331:5;8298:39;:::i;:::-;8353:89;8435:6;8430:3;8353:89;:::i;:::-;8346:96;;8451:52;8496:6;8491:3;8484:4;8477:5;8473:16;8451:52;:::i;:::-;8528:6;8523:3;8519:16;8512:23;;8274:267;;;;;:::o;8547:366::-;;8710:67;8774:2;8769:3;8710:67;:::i;:::-;8703:74;;8807:34;8803:1;8798:3;8794:11;8787:55;8873:4;8868:2;8863:3;8859:12;8852:26;8904:2;8899:3;8895:12;8888:19;;8693:220;;;:::o;8919:382::-;;9082:67;9146:2;9141:3;9082:67;:::i;:::-;9075:74;;9179:34;9175:1;9170:3;9166:11;9159:55;9245:20;9240:2;9235:3;9231:12;9224:42;9292:2;9287:3;9283:12;9276:19;;9065:236;;;:::o;9307:370::-;;9470:67;9534:2;9529:3;9470:67;:::i;:::-;9463:74;;9567:34;9563:1;9558:3;9554:11;9547:55;9633:8;9628:2;9623:3;9619:12;9612:30;9668:2;9663:3;9659:12;9652:19;;9453:224;;;:::o;9683:326::-;;9846:67;9910:2;9905:3;9846:67;:::i;:::-;9839:74;;9943:30;9939:1;9934:3;9930:11;9923:51;10000:2;9995:3;9991:12;9984:19;;9829:180;;;:::o;10015:369::-;;10178:67;10242:2;10237:3;10178:67;:::i;:::-;10171:74;;10275:34;10271:1;10266:3;10262:11;10255:55;10341:7;10336:2;10331:3;10327:12;10320:29;10375:2;10370:3;10366:12;10359:19;;10161:223;;;:::o;10390:369::-;;10553:67;10617:2;10612:3;10553:67;:::i;:::-;10546:74;;10650:34;10646:1;10641:3;10637:11;10630:55;10716:7;10711:2;10706:3;10702:12;10695:29;10750:2;10745:3;10741:12;10734:19;;10536:223;;;:::o;10765:325::-;;10928:67;10992:2;10987:3;10928:67;:::i;:::-;10921:74;;11025:29;11021:1;11016:3;11012:11;11005:50;11081:2;11076:3;11072:12;11065:19;;10911:179;;;:::o;11096:368::-;;11259:67;11323:2;11318:3;11259:67;:::i;:::-;11252:74;;11356:34;11352:1;11347:3;11343:11;11336:55;11422:6;11417:2;11412:3;11408:12;11401:28;11455:2;11450:3;11446:12;11439:19;;11242:222;;;:::o;11470:323::-;;11633:67;11697:2;11692:3;11633:67;:::i;:::-;11626:74;;11730:27;11726:1;11721:3;11717:11;11710:48;11784:2;11779:3;11775:12;11768:19;;11616:177;;;:::o;11799:329::-;;11962:67;12026:2;12021:3;11962:67;:::i;:::-;11955:74;;12059:33;12055:1;12050:3;12046:11;12039:54;12119:2;12114:3;12110:12;12103:19;;11945:183;;;:::o;12134:328::-;;12297:67;12361:2;12356:3;12297:67;:::i;:::-;12290:74;;12394:32;12390:1;12385:3;12381:11;12374:53;12453:2;12448:3;12444:12;12437:19;;12280:182;;;:::o;12468:370::-;;12631:67;12695:2;12690:3;12631:67;:::i;:::-;12624:74;;12728:34;12724:1;12719:3;12715:11;12708:55;12794:8;12789:2;12784:3;12780:12;12773:30;12829:2;12824:3;12820:12;12813:19;;12614:224;;;:::o;12844:376::-;;13007:67;13071:2;13066:3;13007:67;:::i;:::-;13000:74;;13104:34;13100:1;13095:3;13091:11;13084:55;13170:14;13165:2;13160:3;13156:12;13149:36;13211:2;13206:3;13202:12;13195:19;;12990:230;;;:::o;13226:376::-;;13389:67;13453:2;13448:3;13389:67;:::i;:::-;13382:74;;13486:34;13482:1;13477:3;13473:11;13466:55;13552:14;13547:2;13542:3;13538:12;13531:36;13593:2;13588:3;13584:12;13577:19;;13372:230;;;:::o;13608:388::-;;13771:67;13835:2;13830:3;13771:67;:::i;:::-;13764:74;;13868:34;13864:1;13859:3;13855:11;13848:55;13934:26;13929:2;13924:3;13920:12;13913:48;13987:2;13982:3;13978:12;13971:19;;13754:242;;;:::o;14002:374::-;;14165:67;14229:2;14224:3;14165:67;:::i;:::-;14158:74;;14262:34;14258:1;14253:3;14249:11;14242:55;14328:12;14323:2;14318:3;14314:12;14307:34;14367:2;14362:3;14358:12;14351:19;;14148:228;;;:::o;14382:366::-;;14545:67;14609:2;14604:3;14545:67;:::i;:::-;14538:74;;14642:34;14638:1;14633:3;14629:11;14622:55;14708:4;14703:2;14698:3;14694:12;14687:26;14739:2;14734:3;14730:12;14723:19;;14528:220;;;:::o;14754:330::-;;14917:67;14981:2;14976:3;14917:67;:::i;:::-;14910:74;;15014:34;15010:1;15005:3;15001:11;14994:55;15075:2;15070:3;15066:12;15059:19;;14900:184;;;:::o;15090:365::-;;15253:67;15317:2;15312:3;15253:67;:::i;:::-;15246:74;;15350:34;15346:1;15341:3;15337:11;15330:55;15416:3;15411:2;15406:3;15402:12;15395:25;15446:2;15441:3;15437:12;15430:19;;15236:219;;;:::o;15461:376::-;;15624:67;15688:2;15683:3;15624:67;:::i;:::-;15617:74;;15721:34;15717:1;15712:3;15708:11;15701:55;15787:14;15782:2;15777:3;15773:12;15766:36;15828:2;15823:3;15819:12;15812:19;;15607:230;;;:::o;15843:330::-;;16006:67;16070:2;16065:3;16006:67;:::i;:::-;15999:74;;16103:34;16099:1;16094:3;16090:11;16083:55;16164:2;16159:3;16155:12;16148:19;;15989:184;;;:::o;16179:373::-;;16342:67;16406:2;16401:3;16342:67;:::i;:::-;16335:74;;16439:34;16435:1;16430:3;16426:11;16419:55;16505:11;16500:2;16495:3;16491:12;16484:33;16543:2;16538:3;16534:12;16527:19;;16325:227;;;:::o;16558:379::-;;16721:67;16785:2;16780:3;16721:67;:::i;:::-;16714:74;;16818:34;16814:1;16809:3;16805:11;16798:55;16884:17;16879:2;16874:3;16870:12;16863:39;16928:2;16923:3;16919:12;16912:19;;16704:233;;;:::o;16943:365::-;;17106:67;17170:2;17165:3;17106:67;:::i;:::-;17099:74;;17203:34;17199:1;17194:3;17190:11;17183:55;17269:3;17264:2;17259:3;17255:12;17248:25;17299:2;17294:3;17290:12;17283:19;;17089:219;;;:::o;17314:381::-;;17477:67;17541:2;17536:3;17477:67;:::i;:::-;17470:74;;17574:34;17570:1;17565:3;17561:11;17554:55;17640:19;17635:2;17630:3;17626:12;17619:41;17686:2;17681:3;17677:12;17670:19;;17460:235;;;:::o;17701:327::-;;17864:67;17928:2;17923:3;17864:67;:::i;:::-;17857:74;;17961:31;17957:1;17952:3;17948:11;17941:52;18019:2;18014:3;18010:12;18003:19;;17847:181;;;:::o;18034:301::-;;18197:66;18261:1;18256:3;18197:66;:::i;:::-;18190:73;;18293:6;18289:1;18284:3;18280:11;18273:27;18326:2;18321:3;18317:12;18310:19;;18180:155;;;:::o;18341:108::-;18418:24;18436:5;18418:24;:::i;:::-;18413:3;18406:37;18396:53;;:::o;18455:118::-;18542:24;18560:5;18542:24;:::i;:::-;18537:3;18530:37;18520:53;;:::o;18579:271::-;;18731:93;18820:3;18811:6;18731:93;:::i;:::-;18724:100;;18841:3;18834:10;;18713:137;;;;:::o;18856:435::-;;19058:95;19149:3;19140:6;19058:95;:::i;:::-;19051:102;;19170:95;19261:3;19252:6;19170:95;:::i;:::-;19163:102;;19282:3;19275:10;;19040:251;;;;;:::o;19297:222::-;;19428:2;19417:9;19413:18;19405:26;;19441:71;19509:1;19498:9;19494:17;19485:6;19441:71;:::i;:::-;19395:124;;;;:::o;19525:672::-;;19774:3;19763:9;19759:19;19751:27;;19788:87;19872:1;19861:9;19857:17;19848:6;19788:87;:::i;:::-;19885:72;19953:2;19942:9;19938:18;19929:6;19885:72;:::i;:::-;19967;20035:2;20024:9;20020:18;20011:6;19967:72;:::i;:::-;20086:9;20080:4;20076:20;20071:2;20060:9;20056:18;20049:48;20114:76;20185:4;20176:6;20114:76;:::i;:::-;20106:84;;19741:456;;;;;;;:::o;20203:373::-;;20384:2;20373:9;20369:18;20361:26;;20433:9;20427:4;20423:20;20419:1;20408:9;20404:17;20397:47;20461:108;20564:4;20555:6;20461:108;:::i;:::-;20453:116;;20351:225;;;;:::o;20582:210::-;;20707:2;20696:9;20692:18;20684:26;;20720:65;20782:1;20771:9;20767:17;20758:6;20720:65;:::i;:::-;20674:118;;;;:::o;20798:313::-;;20949:2;20938:9;20934:18;20926:26;;20998:9;20992:4;20988:20;20984:1;20973:9;20969:17;20962:47;21026:78;21099:4;21090:6;21026:78;:::i;:::-;21018:86;;20916:195;;;;:::o;21117:419::-;;21321:2;21310:9;21306:18;21298:26;;21370:9;21364:4;21360:20;21356:1;21345:9;21341:17;21334:47;21398:131;21524:4;21398:131;:::i;:::-;21390:139;;21288:248;;;:::o;21542:419::-;;21746:2;21735:9;21731:18;21723:26;;21795:9;21789:4;21785:20;21781:1;21770:9;21766:17;21759:47;21823:131;21949:4;21823:131;:::i;:::-;21815:139;;21713:248;;;:::o;21967:419::-;;22171:2;22160:9;22156:18;22148:26;;22220:9;22214:4;22210:20;22206:1;22195:9;22191:17;22184:47;22248:131;22374:4;22248:131;:::i;:::-;22240:139;;22138:248;;;:::o;22392:419::-;;22596:2;22585:9;22581:18;22573:26;;22645:9;22639:4;22635:20;22631:1;22620:9;22616:17;22609:47;22673:131;22799:4;22673:131;:::i;:::-;22665:139;;22563:248;;;:::o;22817:419::-;;23021:2;23010:9;23006:18;22998:26;;23070:9;23064:4;23060:20;23056:1;23045:9;23041:17;23034:47;23098:131;23224:4;23098:131;:::i;:::-;23090:139;;22988:248;;;:::o;23242:419::-;;23446:2;23435:9;23431:18;23423:26;;23495:9;23489:4;23485:20;23481:1;23470:9;23466:17;23459:47;23523:131;23649:4;23523:131;:::i;:::-;23515:139;;23413:248;;;:::o;23667:419::-;;23871:2;23860:9;23856:18;23848:26;;23920:9;23914:4;23910:20;23906:1;23895:9;23891:17;23884:47;23948:131;24074:4;23948:131;:::i;:::-;23940:139;;23838:248;;;:::o;24092:419::-;;24296:2;24285:9;24281:18;24273:26;;24345:9;24339:4;24335:20;24331:1;24320:9;24316:17;24309:47;24373:131;24499:4;24373:131;:::i;:::-;24365:139;;24263:248;;;:::o;24517:419::-;;24721:2;24710:9;24706:18;24698:26;;24770:9;24764:4;24760:20;24756:1;24745:9;24741:17;24734:47;24798:131;24924:4;24798:131;:::i;:::-;24790:139;;24688:248;;;:::o;24942:419::-;;25146:2;25135:9;25131:18;25123:26;;25195:9;25189:4;25185:20;25181:1;25170:9;25166:17;25159:47;25223:131;25349:4;25223:131;:::i;:::-;25215:139;;25113:248;;;:::o;25367:419::-;;25571:2;25560:9;25556:18;25548:26;;25620:9;25614:4;25610:20;25606:1;25595:9;25591:17;25584:47;25648:131;25774:4;25648:131;:::i;:::-;25640:139;;25538:248;;;:::o;25792:419::-;;25996:2;25985:9;25981:18;25973:26;;26045:9;26039:4;26035:20;26031:1;26020:9;26016:17;26009:47;26073:131;26199:4;26073:131;:::i;:::-;26065:139;;25963:248;;;:::o;26217:419::-;;26421:2;26410:9;26406:18;26398:26;;26470:9;26464:4;26460:20;26456:1;26445:9;26441:17;26434:47;26498:131;26624:4;26498:131;:::i;:::-;26490:139;;26388:248;;;:::o;26642:419::-;;26846:2;26835:9;26831:18;26823:26;;26895:9;26889:4;26885:20;26881:1;26870:9;26866:17;26859:47;26923:131;27049:4;26923:131;:::i;:::-;26915:139;;26813:248;;;:::o;27067:419::-;;27271:2;27260:9;27256:18;27248:26;;27320:9;27314:4;27310:20;27306:1;27295:9;27291:17;27284:47;27348:131;27474:4;27348:131;:::i;:::-;27340:139;;27238:248;;;:::o;27492:419::-;;27696:2;27685:9;27681:18;27673:26;;27745:9;27739:4;27735:20;27731:1;27720:9;27716:17;27709:47;27773:131;27899:4;27773:131;:::i;:::-;27765:139;;27663:248;;;:::o;27917:419::-;;28121:2;28110:9;28106:18;28098:26;;28170:9;28164:4;28160:20;28156:1;28145:9;28141:17;28134:47;28198:131;28324:4;28198:131;:::i;:::-;28190:139;;28088:248;;;:::o;28342:419::-;;28546:2;28535:9;28531:18;28523:26;;28595:9;28589:4;28585:20;28581:1;28570:9;28566:17;28559:47;28623:131;28749:4;28623:131;:::i;:::-;28615:139;;28513:248;;;:::o;28767:419::-;;28971:2;28960:9;28956:18;28948:26;;29020:9;29014:4;29010:20;29006:1;28995:9;28991:17;28984:47;29048:131;29174:4;29048:131;:::i;:::-;29040:139;;28938:248;;;:::o;29192:419::-;;29396:2;29385:9;29381:18;29373:26;;29445:9;29439:4;29435:20;29431:1;29420:9;29416:17;29409:47;29473:131;29599:4;29473:131;:::i;:::-;29465:139;;29363:248;;;:::o;29617:419::-;;29821:2;29810:9;29806:18;29798:26;;29870:9;29864:4;29860:20;29856:1;29845:9;29841:17;29834:47;29898:131;30024:4;29898:131;:::i;:::-;29890:139;;29788:248;;;:::o;30042:419::-;;30246:2;30235:9;30231:18;30223:26;;30295:9;30289:4;30285:20;30281:1;30270:9;30266:17;30259:47;30323:131;30449:4;30323:131;:::i;:::-;30315:139;;30213:248;;;:::o;30467:419::-;;30671:2;30660:9;30656:18;30648:26;;30720:9;30714:4;30710:20;30706:1;30695:9;30691:17;30684:47;30748:131;30874:4;30748:131;:::i;:::-;30740:139;;30638:248;;;:::o;30892:419::-;;31096:2;31085:9;31081:18;31073:26;;31145:9;31139:4;31135:20;31131:1;31120:9;31116:17;31109:47;31173:131;31299:4;31173:131;:::i;:::-;31165:139;;31063:248;;;:::o;31317:419::-;;31521:2;31510:9;31506:18;31498:26;;31570:9;31564:4;31560:20;31556:1;31545:9;31541:17;31534:47;31598:131;31724:4;31598:131;:::i;:::-;31590:139;;31488:248;;;:::o;31742:419::-;;31946:2;31935:9;31931:18;31923:26;;31995:9;31989:4;31985:20;31981:1;31970:9;31966:17;31959:47;32023:131;32149:4;32023:131;:::i;:::-;32015:139;;31913:248;;;:::o;32167:419::-;;32371:2;32360:9;32356:18;32348:26;;32420:9;32414:4;32410:20;32406:1;32395:9;32391:17;32384:47;32448:131;32574:4;32448:131;:::i;:::-;32440:139;;32338:248;;;:::o;32592:222::-;;32723:2;32712:9;32708:18;32700:26;;32736:71;32804:1;32793:9;32789:17;32780:6;32736:71;:::i;:::-;32690:124;;;;:::o;32820:278::-;;32886:2;32880:9;32870:19;;32928:4;32920:6;32916:17;33035:6;33023:10;33020:22;32999:18;32987:10;32984:34;32981:62;32978:2;;;33046:13;;:::i;:::-;32978:2;33081:10;33077:2;33070:22;32860:238;;;;:::o;33104:326::-;;33255:18;33247:6;33244:30;33241:2;;;33277:13;;:::i;:::-;33241:2;33357:4;33353:9;33346:4;33338:6;33334:17;33330:33;33322:41;;33418:4;33412;33408:15;33400:23;;33170:260;;;:::o;33436:327::-;;33588:18;33580:6;33577:30;33574:2;;;33610:13;;:::i;:::-;33574:2;33690:4;33686:9;33679:4;33671:6;33667:17;33663:33;33655:41;;33751:4;33745;33741:15;33733:23;;33503:260;;;:::o;33769:132::-;;33859:3;33851:11;;33889:4;33884:3;33880:14;33872:22;;33841:60;;;:::o;33907:114::-;;34008:5;34002:12;33992:22;;33981:40;;;:::o;34027:98::-;;34112:5;34106:12;34096:22;;34085:40;;;:::o;34131:99::-;;34217:5;34211:12;34201:22;;34190:40;;;:::o;34236:113::-;;34338:4;34333:3;34329:14;34321:22;;34311:38;;;:::o;34355:184::-;;34488:6;34483:3;34476:19;34528:4;34523:3;34519:14;34504:29;;34466:73;;;;:::o;34545:168::-;;34662:6;34657:3;34650:19;34702:4;34697:3;34693:14;34678:29;;34640:73;;;;:::o;34719:147::-;;34857:3;34842:18;;34832:34;;;;:::o;34872:169::-;;34990:6;34985:3;34978:19;35030:4;35025:3;35021:14;35006:29;;34968:73;;;;:::o;35047:148::-;;35186:3;35171:18;;35161:34;;;;:::o;35201:96::-;;35267:24;35285:5;35267:24;:::i;:::-;35256:35;;35246:51;;;:::o;35303:104::-;;35377:24;35395:5;35377:24;:::i;:::-;35366:35;;35356:51;;;:::o;35413:90::-;;35490:5;35483:13;35476:21;35465:32;;35455:48;;;:::o;35509:149::-;;35585:66;35578:5;35574:78;35563:89;;35553:105;;;:::o;35664:126::-;;35741:42;35734:5;35730:54;35719:65;;35709:81;;;:::o;35796:77::-;;35862:5;35851:16;;35841:32;;;:::o;35879:154::-;35963:6;35958:3;35953;35940:30;36025:1;36016:6;36011:3;36007:16;36000:27;35930:103;;;:::o;36039:307::-;36107:1;36117:113;36131:6;36128:1;36125:13;36117:113;;;36216:1;36211:3;36207:11;36201:18;36197:1;36192:3;36188:11;36181:39;36153:2;36150:1;36146:10;36141:15;;36117:113;;;36248:6;36245:1;36242:13;36239:2;;;36328:1;36319:6;36314:3;36310:16;36303:27;36239:2;36088:258;;;;:::o;36352:48::-;36385:9;36406:102;;36498:2;36494:7;36489:2;36482:5;36478:14;36474:28;36464:38;;36454:54;;;:::o;36514:122::-;36587:24;36605:5;36587:24;:::i;:::-;36580:5;36577:35;36567:2;;36626:1;36623;36616:12;36567:2;36557:79;:::o;36642:116::-;36712:21;36727:5;36712:21;:::i;:::-;36705:5;36702:32;36692:2;;36748:1;36745;36738:12;36692:2;36682:76;:::o;36764:120::-;36836:23;36853:5;36836:23;:::i;:::-;36829:5;36826:34;36816:2;;36874:1;36871;36864:12;36816:2;36806:78;:::o;36890:122::-;36963:24;36981:5;36963:24;:::i;:::-;36956:5;36953:35;36943:2;;37002:1;36999;36992:12;36943:2;36933:79;:::o

Swarm Source

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