ETH Price: $3,474.13 (-1.24%)
Gas: 4 Gwei

Token

Moonducks (MDUCK)
 

Overview

Max Total Supply

946 MDUCK

Holders

352

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 MDUCK
0x0B8E41ef37534Ae0a6615650d9C9362eB3480F38
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
MOONDUCKS

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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

// MOONDUCKS Contract starts at line 1890

// Researching our code right.. Our loyalty secrets are a handcrafted technique which is reserved by the Moonducks team

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




// Join our Metaverse and mint a Moonduck
// Website - https://moonducks.io


pragma solidity ^0.7.0;
pragma abicoder v2;

contract MOONDUCKS is ERC721, Ownable {

    using SafeMath for uint256;

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

    uint256 public MOONDUCKPRICE = 50000000000000000; // 0.05 ETH

    uint public constant MAXMOONDUCKSPURCHASE = 30;

    uint256 public constant MAX_MOONDUCKS = 7000;

    bool public saleIsActive = false;

    mapping (address => uint256[]) private _mintedTokens;
    
    mapping (uint256 => address) private _mintedBy;


    // withdraw addresses
    // D
    address t1 = 0xC8A1B42fC2BcE3Fcd19439fB06695800edC0aD3e;
    // H
    address t2 = 0x2fa33d667F53D50075069c7a4235d15797abc719;
    // A1
    address t3 = 0x2AAd456bce447ee6276d08AE5234BeB5374dc567;
    // A2
    address t4 = 0x4F51CAaFD0c471A8172c561d31A454983819f456;

    // Reserve up to 100 MOONDUCKS for team - Giveaways/Prizes/New Members etc
    uint public MOONDUCKSRESERVE = 100;

    constructor() ERC721("Moonducks", "MDUCK") { }

    function withdraw() public onlyOwner {
        uint256 _each = address(this).balance / 4;
        require(payable(t1).send(_each));
        require(payable(t2).send(_each));
        require(payable(t3).send(_each));
        require(payable(t4).send(_each));
    }

    function RESERVEMOONDUCKS(address _to, uint256 _reserveAmount) public onlyOwner {
        uint supply = totalSupply();
        require(_reserveAmount > 0 && _reserveAmount <= MOONDUCKSRESERVE, "Out of reserves");
        for (uint i = 0; i < _reserveAmount; i++) {
            _safeMint(_to, supply + i);
        }
        MOONDUCKSRESERVE = MOONDUCKSRESERVE.sub(_reserveAmount);
    }

    function getMintedTokens(address minter) external view returns (uint256[] memory) {
        return _mintedTokens[minter];
    }
    
    function getMintedBy(uint256 tokenId) external view returns (address) {
        return _mintedBy[tokenId];
    }

    function setMoonDucksPrice(uint256 NewMoonDucksPrice) public onlyOwner {
        MOONDUCKPRICE = NewMoonDucksPrice;
    }

    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        MOONDUCKS_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 MINTMOONDUCKS(uint numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint a Moonduck");
        require(numberOfTokens > 0 && numberOfTokens <= MAXMOONDUCKSPURCHASE, "You can only mint 30 tokens at a time");
        require(totalSupply().add(numberOfTokens) <= MAX_MOONDUCKS, "Purchase would exceed max supply of Moonducks");
        require(msg.value >= MOONDUCKPRICE.mul(numberOfTokens), "Ether value sent is not correct");

        for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = totalSupply();
            if (totalSupply() < MAX_MOONDUCKS) {
                _safeMint(msg.sender, mintIndex);
                _mintedTokens[msg.sender].push(mintIndex);
                _mintedBy[mintIndex] = msg.sender;
            }
        }

    }

}

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":"MAXMOONDUCKSPURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MOONDUCKS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"MINTMOONDUCKS","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"MOONDUCKPRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MOONDUCKSRESERVE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MOONDUCKS_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":"RESERVEMOONDUCKS","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":"uint256","name":"tokenId","type":"uint256"}],"name":"getMintedBy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"getMintedTokens","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"NewMoonDucksPrice","type":"uint256"}],"name":"setMoonDucksPrice","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"}]

608060405260405180602001604052806000815250600b90805190602001906200002b92919062000450565b5066b1a2bc2ec50000600c556000600d60006101000a81548160ff02191690831515021790555073c8a1b42fc2bce3fcd19439fb06695800edc0ad3e601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550732fa33d667f53d50075069c7a4235d15797abc719601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550732aad456bce447ee6276d08ae5234beb5374dc567601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550734f51caafd0c471a8172c561d31a454983819f456601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506064601455348015620001b857600080fd5b506040518060400160405280600981526020017f4d6f6f6e6475636b7300000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4d4455434b0000000000000000000000000000000000000000000000000000008152506200023d6301ffc9a760e01b6200037060201b60201c565b81600690805190602001906200025592919062000450565b5080600790805190602001906200026e92919062000450565b50620002876380ac58cd60e01b6200037060201b60201c565b6200029f635b5e139f60e01b6200037060201b60201c565b620002b763780e9d6360e01b6200037060201b60201c565b50506000620002cb6200044860201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200057b565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620003dc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003d39062000548565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620004885760008555620004d4565b82601f10620004a357805160ff1916838001178555620004d4565b82800160010185558215620004d4579182015b82811115620004d3578251825591602001919060010190620004b6565b5b509050620004e39190620004e7565b5090565b5b8082111562000502576000816000905550600101620004e8565b5090565b600062000515601c836200056a565b91507f4552433136353a20696e76616c696420696e74657266616365206964000000006000830152602082019050919050565b60006020820190508181036000830152620005638162000506565b9050919050565b600082825260208201905092915050565b61476f806200058b6000396000f3fe60806040526004361061020f5760003560e01c806370a0823111610118578063b408fd69116100a0578063c9d203731161006f578063c9d20373146107a2578063d3fe72af146107cd578063e985e9c5146107f6578063eb8d244414610833578063f2fde38b1461085e5761020f565b8063b408fd69146106d6578063b88d4fde14610713578063c87b56dd1461073c578063c94a9950146107795761020f565b80638da5cb5b116100e75780638da5cb5b1461060157806391b041501461062c57806395d89b41146106575780639f90d5a614610682578063a22cb465146106ad5761020f565b806370a0823114610545578063715018a6146105825780638462151c146105995780638d61b599146105d65761020f565b80633863294b1161019b5780634bafa2a91161016a5780634bafa2a91461044c5780634f6ccce71461047757806355f804b3146104b45780636352211e146104dd5780636c0360eb1461051a5761020f565b80633863294b146103b35780633ccfd60b146103cf57806342842e0e146103e6578063434a49a11461040f5761020f565b806310969523116101e257806310969523146102e257806318160ddd1461030b57806323b872dd146103365780632f745c591461035f57806334918dfd1461039c5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613456565b610887565b60405161024891906140d7565b60405180910390f35b34801561025d57600080fd5b506102666108ee565b60405161027391906140f2565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e91906134e9565b610990565b6040516102b0919061404e565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db919061341a565b610a15565b005b3480156102ee57600080fd5b50610309600480360381019061030491906134a8565b610b2d565b005b34801561031757600080fd5b50610320610bc3565b60405161032d9190614474565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190613314565b610bd4565b005b34801561036b57600080fd5b506103866004803603810190610381919061341a565b610c34565b6040516103939190614474565b60405180910390f35b3480156103a857600080fd5b506103b1610c8f565b005b6103cd60048036038101906103c891906134e9565b610d37565b005b3480156103db57600080fd5b506103e4610f88565b005b3480156103f257600080fd5b5061040d60048036038101906104089190613314565b611196565b005b34801561041b57600080fd5b50610436600480360381019061043191906132af565b6111b6565b60405161044391906140b5565b60405180910390f35b34801561045857600080fd5b5061046161124d565b60405161046e9190614474565b60405180910390f35b34801561048357600080fd5b5061049e600480360381019061049991906134e9565b611253565b6040516104ab9190614474565b60405180910390f35b3480156104c057600080fd5b506104db60048036038101906104d691906134a8565b611276565b005b3480156104e957600080fd5b5061050460048036038101906104ff91906134e9565b6112fe565b604051610511919061404e565b60405180910390f35b34801561052657600080fd5b5061052f611335565b60405161053c91906140f2565b60405180910390f35b34801561055157600080fd5b5061056c600480360381019061056791906132af565b6113d7565b6040516105799190614474565b60405180910390f35b34801561058e57600080fd5b50610597611496565b005b3480156105a557600080fd5b506105c060048036038101906105bb91906132af565b6115d3565b6040516105cd91906140b5565b60405180910390f35b3480156105e257600080fd5b506105eb6116cc565b6040516105f89190614474565b60405180910390f35b34801561060d57600080fd5b506106166116d1565b604051610623919061404e565b60405180910390f35b34801561063857600080fd5b506106416116fb565b60405161064e9190614474565b60405180910390f35b34801561066357600080fd5b5061066c611701565b60405161067991906140f2565b60405180910390f35b34801561068e57600080fd5b506106976117a3565b6040516106a49190614474565b60405180910390f35b3480156106b957600080fd5b506106d460048036038101906106cf91906133de565b6117a9565b005b3480156106e257600080fd5b506106fd60048036038101906106f891906134e9565b61192a565b60405161070a919061404e565b60405180910390f35b34801561071f57600080fd5b5061073a60048036038101906107359190613363565b611967565b005b34801561074857600080fd5b50610763600480360381019061075e91906134e9565b6119c9565b60405161077091906140f2565b60405180910390f35b34801561078557600080fd5b506107a0600480360381019061079b91906134e9565b611b4c565b005b3480156107ae57600080fd5b506107b7611bd2565b6040516107c491906140f2565b60405180910390f35b3480156107d957600080fd5b506107f460048036038101906107ef919061341a565b611c70565b005b34801561080257600080fd5b5061081d600480360381019061081891906132d8565b611d8e565b60405161082a91906140d7565b60405180910390f35b34801561083f57600080fd5b50610848611e22565b60405161085591906140d7565b60405180910390f35b34801561086a57600080fd5b50610885600480360381019061088091906132af565b611e35565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109865780601f1061095b57610100808354040283529160200191610986565b820191906000526020600020905b81548152906001019060200180831161096957829003601f168201915b5050505050905090565b600061099b82611fe1565b6109da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d190614374565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a20826112fe565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a88906143f4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ab0611ffe565b73ffffffffffffffffffffffffffffffffffffffff161480610adf5750610ade81610ad9611ffe565b611d8e565b5b610b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1590614294565b60405180910390fd5b610b288383612006565b505050565b610b35611ffe565b73ffffffffffffffffffffffffffffffffffffffff16610b536116d1565b73ffffffffffffffffffffffffffffffffffffffff1614610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba090614394565b60405180910390fd5b80600b9080519060200190610bbf9291906130cb565b5050565b6000610bcf60026120bf565b905090565b610be5610bdf611ffe565b826120d4565b610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b90614414565b60405180910390fd5b610c2f8383836121b2565b505050565b6000610c8782600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206123c990919063ffffffff16565b905092915050565b610c97611ffe565b73ffffffffffffffffffffffffffffffffffffffff16610cb56116d1565b73ffffffffffffffffffffffffffffffffffffffff1614610d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0290614394565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b600d60009054906101000a900460ff16610d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7d906141b4565b60405180910390fd5b600081118015610d975750601e8111155b610dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcd906142f4565b60405180910390fd5b611b58610df382610de5610bc3565b6123e390919063ffffffff16565b1115610e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2b90614434565b60405180910390fd5b610e4981600c5461243890919063ffffffff16565b341015610e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8290614214565b60405180910390fd5b60005b81811015610f84576000610ea0610bc3565b9050611b58610ead610bc3565b1015610f7657610ebd33826124a8565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081908060018154018082558091505060019003906000526020600020016000909190919091505533600f600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b508080600101915050610e8e565b5050565b610f90611ffe565b73ffffffffffffffffffffffffffffffffffffffff16610fae6116d1565b73ffffffffffffffffffffffffffffffffffffffff1614611004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffb90614394565b60405180910390fd5b60006004478161101057fe5b049050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061107357600080fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506110d357600080fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061113357600080fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061119357600080fd5b50565b6111b183838360405180602001604052806000815250611967565b505050565b6060600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548060200260200160405190810160405280929190818152602001828054801561124157602002820191906000526020600020905b81548152602001906001019080831161122d575b50505050509050919050565b60145481565b60008061126a8360026124c690919063ffffffff16565b50905080915050919050565b61127e611ffe565b73ffffffffffffffffffffffffffffffffffffffff1661129c6116d1565b73ffffffffffffffffffffffffffffffffffffffff16146112f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e990614394565b60405180910390fd5b6112fb816124f2565b50565b600061132e8260405180606001604052806029815260200161471160299139600261250c9092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113cd5780601f106113a2576101008083540402835291602001916113cd565b820191906000526020600020905b8154815290600101906020018083116113b057829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611448576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143f906142d4565b60405180910390fd5b61148f600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061252b565b9050919050565b61149e611ffe565b73ffffffffffffffffffffffffffffffffffffffff166114bc6116d1565b73ffffffffffffffffffffffffffffffffffffffff1614611512576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150990614394565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b606060006115e0836113d7565b9050600081141561163b57600067ffffffffffffffff8111801561160357600080fd5b506040519080825280602002602001820160405280156116325781602001602082028036833780820191505090505b509150506116c7565b60008167ffffffffffffffff8111801561165457600080fd5b506040519080825280602002602001820160405280156116835781602001602082028036833780820191505090505b50905060005b828110156116c05761169b8582610c34565b8282815181106116a757fe5b6020026020010181815250508080600101915050611689565b8193505050505b919050565b601e81565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c5481565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117995780601f1061176e57610100808354040283529160200191611799565b820191906000526020600020905b81548152906001019060200180831161177c57829003601f168201915b5050505050905090565b611b5881565b6117b1611ffe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561181f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611816906141f4565b60405180910390fd5b806005600061182c611ffe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118d9611ffe565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161191e91906140d7565b60405180910390a35050565b6000600f600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b611978611972611ffe565b836120d4565b6119b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ae90614414565b60405180910390fd5b6119c384848484612540565b50505050565b60606119d482611fe1565b611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a906143d4565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611abc5780601f10611a9157610100808354040283529160200191611abc565b820191906000526020600020905b815481529060010190602001808311611a9f57829003601f168201915b505050505090506000611acd611335565b9050600081511415611ae3578192505050611b47565b600082511115611b18578082604051602001611b0092919061402a565b60405160208183030381529060405292505050611b47565b80611b228561259c565b604051602001611b3392919061402a565b604051602081830303815290604052925050505b919050565b611b54611ffe565b73ffffffffffffffffffffffffffffffffffffffff16611b726116d1565b73ffffffffffffffffffffffffffffffffffffffff1614611bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbf90614394565b60405180910390fd5b80600c8190555050565b600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611c685780601f10611c3d57610100808354040283529160200191611c68565b820191906000526020600020905b815481529060010190602001808311611c4b57829003601f168201915b505050505081565b611c78611ffe565b73ffffffffffffffffffffffffffffffffffffffff16611c966116d1565b73ffffffffffffffffffffffffffffffffffffffff1614611cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce390614394565b60405180910390fd5b6000611cf6610bc3565b9050600082118015611d0a57506014548211155b611d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d40906142b4565b60405180910390fd5b60005b82811015611d6d57611d60848284016124a8565b8080600101915050611d4c565b50611d83826014546126e390919063ffffffff16565b601481905550505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60009054906101000a900460ff1681565b611e3d611ffe565b73ffffffffffffffffffffffffffffffffffffffff16611e5b6116d1565b73ffffffffffffffffffffffffffffffffffffffff1614611eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea890614394565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1890614154565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611ff782600261273390919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612079836112fe565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006120cd8260000161274d565b9050919050565b60006120df82611fe1565b61211e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211590614274565b60405180910390fd5b6000612129836112fe565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061219857508373ffffffffffffffffffffffffffffffffffffffff1661218084610990565b73ffffffffffffffffffffffffffffffffffffffff16145b806121a957506121a88185611d8e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166121d2826112fe565b73ffffffffffffffffffffffffffffffffffffffff1614612228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221f906143b4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228f906141d4565b60405180910390fd5b6122a383838361275e565b6122ae600082612006565b6122ff81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061276390919063ffffffff16565b5061235181600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061277d90919063ffffffff16565b50612368818360026127979092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006123d883600001836127cc565b60001c905092915050565b60008082840190508381101561242e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242590614194565b60405180910390fd5b8091505092915050565b60008083141561244b57600090506124a2565b600082840290508284828161245c57fe5b041461249d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249490614354565b60405180910390fd5b809150505b92915050565b6124c2828260405180602001604052806000815250612839565b5050565b6000806000806124d98660000186612894565b915091508160001c8160001c9350935050509250929050565b80600990805190602001906125089291906130cb565b5050565b600061251f846000018460001b84612917565b60001c90509392505050565b6000612539826000016129a8565b9050919050565b61254b8484846121b2565b612557848484846129b9565b612596576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258d90614134565b60405180910390fd5b50505050565b606060008214156125e4576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126de565b600082905060005b6000821461260e578080600101915050600a828161260657fe5b0491506125ec565b60008167ffffffffffffffff8111801561262757600080fd5b506040519080825280601f01601f19166020018201604052801561265a5781602001600182028036833780820191505090505b50905060006001830390508593505b600084146126d657600a848161267b57fe5b0660300160f81b8282806001900393508151811061269557fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a84816126ce57fe5b049350612669565b819450505050505b919050565b600082821115612728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271f90614234565b60405180910390fd5b818303905092915050565b6000612745836000018360001b612b1d565b905092915050565b600081600001805490509050919050565b505050565b6000612775836000018360001b612b40565b905092915050565b600061278f836000018360001b612c28565b905092915050565b60006127c3846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b612c98565b90509392505050565b600081836000018054905011612817576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280e90614114565b60405180910390fd5b82600001828154811061282657fe5b9060005260206000200154905092915050565b6128438383612d74565b61285060008484846129b9565b61288f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288690614134565b60405180910390fd5b505050565b600080828460000180549050116128e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d790614314565b60405180910390fd5b60008460000184815481106128f157fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297091906140f2565b60405180910390fd5b5084600001600182038154811061298c57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b60006129da8473ffffffffffffffffffffffffffffffffffffffff16612f02565b6129e75760019050612b15565b6000612aae63150b7a0260e01b6129fc611ffe565b888787604051602401612a129493929190614069565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040518060600160405280603281526020016146df603291398773ffffffffffffffffffffffffffffffffffffffff16612f159092919063ffffffff16565b9050600081806020019051810190612ac6919061347f565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114612c1c5760006001820390506000600186600001805490500390506000866000018281548110612b8b57fe5b9060005260206000200154905080876000018481548110612ba857fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612be057fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612c22565b60009150505b92915050565b6000612c348383612f2d565b612c8d578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612c92565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415612d3f57846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050612d6d565b82856000016001830381548110612d5257fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ddb90614334565b60405180910390fd5b612ded81611fe1565b15612e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2490614174565b60405180910390fd5b612e396000838361275e565b612e8a81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061277d90919063ffffffff16565b50612ea1818360026127979092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060612f248484600085612f50565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015612f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8c90614254565b60405180910390fd5b612f9e85612f02565b612fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd490614454565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516130069190614013565b60006040518083038185875af1925050503d8060008114613043576040519150601f19603f3d011682016040523d82523d6000602084013e613048565b606091505b5091509150613058828286613064565b92505050949350505050565b60608315613074578290506130c4565b6000835111156130875782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130bb91906140f2565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826131015760008555613148565b82601f1061311a57805160ff1916838001178555613148565b82800160010185558215613148579182015b8281111561314757825182559160200191906001019061312c565b5b5090506131559190613159565b5090565b5b8082111561317257600081600090555060010161315a565b5090565b6000613189613184846144c0565b61448f565b9050828152602081018484840111156131a157600080fd5b6131ac84828561462d565b509392505050565b60006131c76131c2846144f0565b61448f565b9050828152602081018484840111156131df57600080fd5b6131ea84828561462d565b509392505050565b60008135905061320181614682565b92915050565b60008135905061321681614699565b92915050565b60008135905061322b816146b0565b92915050565b600081519050613240816146b0565b92915050565b600082601f83011261325757600080fd5b8135613267848260208601613176565b91505092915050565b600082601f83011261328157600080fd5b81356132918482602086016131b4565b91505092915050565b6000813590506132a9816146c7565b92915050565b6000602082840312156132c157600080fd5b60006132cf848285016131f2565b91505092915050565b600080604083850312156132eb57600080fd5b60006132f9858286016131f2565b925050602061330a858286016131f2565b9150509250929050565b60008060006060848603121561332957600080fd5b6000613337868287016131f2565b9350506020613348868287016131f2565b92505060406133598682870161329a565b9150509250925092565b6000806000806080858703121561337957600080fd5b6000613387878288016131f2565b9450506020613398878288016131f2565b93505060406133a98782880161329a565b925050606085013567ffffffffffffffff8111156133c657600080fd5b6133d287828801613246565b91505092959194509250565b600080604083850312156133f157600080fd5b60006133ff858286016131f2565b925050602061341085828601613207565b9150509250929050565b6000806040838503121561342d57600080fd5b600061343b858286016131f2565b925050602061344c8582860161329a565b9150509250929050565b60006020828403121561346857600080fd5b60006134768482850161321c565b91505092915050565b60006020828403121561349157600080fd5b600061349f84828501613231565b91505092915050565b6000602082840312156134ba57600080fd5b600082013567ffffffffffffffff8111156134d457600080fd5b6134e084828501613270565b91505092915050565b6000602082840312156134fb57600080fd5b60006135098482850161329a565b91505092915050565b600061351e8383613ff5565b60208301905092915050565b613533816145b9565b82525050565b613542816145a7565b82525050565b600061355382614530565b61355d818561455e565b935061356883614520565b8060005b838110156135995781516135808882613512565b975061358b83614551565b92505060018101905061356c565b5085935050505092915050565b6135af816145cb565b82525050565b60006135c08261453b565b6135ca818561456f565b93506135da81856020860161463c565b6135e381614671565b840191505092915050565b60006135f98261453b565b6136038185614580565b935061361381856020860161463c565b80840191505092915050565b600061362a82614546565b613634818561458b565b935061364481856020860161463c565b61364d81614671565b840191505092915050565b600061366382614546565b61366d818561459c565b935061367d81856020860161463c565b80840191505092915050565b600061369660228361458b565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006136fc60328361458b565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061376260268361458b565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137c8601c8361458b565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613808601b8361458b565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b600061384860268361458b565b91507f53616c65206d7573742062652061637469766520746f206d696e742061204d6f60008301527f6f6e6475636b00000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138ae60248361458b565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061391460198361458b565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613954601f8361458b565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000613994601e8361458b565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b60006139d460268361458b565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a3a602c8361458b565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613aa060388361458b565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613b06600f8361458b565b91507f4f7574206f6620726573657276657300000000000000000000000000000000006000830152602082019050919050565b6000613b46602a8361458b565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613bac60258361458b565b91507f596f752063616e206f6e6c79206d696e7420333020746f6b656e73206174206160008301527f2074696d650000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c1260228361458b565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c7860208361458b565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613cb860218361458b565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d1e602c8361458b565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613d8460208361458b565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613dc460298361458b565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e2a602f8361458b565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613e9060218361458b565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ef660318361458b565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613f5c602d8361458b565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f66204d6f6f6e6475636b73000000000000000000000000000000000000006020830152604082019050919050565b6000613fc2601d8361458b565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b613ffe81614623565b82525050565b61400d81614623565b82525050565b600061401f82846135ee565b915081905092915050565b60006140368285613658565b91506140428284613658565b91508190509392505050565b60006020820190506140636000830184613539565b92915050565b600060808201905061407e600083018761352a565b61408b6020830186613539565b6140986040830185614004565b81810360608301526140aa81846135b5565b905095945050505050565b600060208201905081810360008301526140cf8184613548565b905092915050565b60006020820190506140ec60008301846135a6565b92915050565b6000602082019050818103600083015261410c818461361f565b905092915050565b6000602082019050818103600083015261412d81613689565b9050919050565b6000602082019050818103600083015261414d816136ef565b9050919050565b6000602082019050818103600083015261416d81613755565b9050919050565b6000602082019050818103600083015261418d816137bb565b9050919050565b600060208201905081810360008301526141ad816137fb565b9050919050565b600060208201905081810360008301526141cd8161383b565b9050919050565b600060208201905081810360008301526141ed816138a1565b9050919050565b6000602082019050818103600083015261420d81613907565b9050919050565b6000602082019050818103600083015261422d81613947565b9050919050565b6000602082019050818103600083015261424d81613987565b9050919050565b6000602082019050818103600083015261426d816139c7565b9050919050565b6000602082019050818103600083015261428d81613a2d565b9050919050565b600060208201905081810360008301526142ad81613a93565b9050919050565b600060208201905081810360008301526142cd81613af9565b9050919050565b600060208201905081810360008301526142ed81613b39565b9050919050565b6000602082019050818103600083015261430d81613b9f565b9050919050565b6000602082019050818103600083015261432d81613c05565b9050919050565b6000602082019050818103600083015261434d81613c6b565b9050919050565b6000602082019050818103600083015261436d81613cab565b9050919050565b6000602082019050818103600083015261438d81613d11565b9050919050565b600060208201905081810360008301526143ad81613d77565b9050919050565b600060208201905081810360008301526143cd81613db7565b9050919050565b600060208201905081810360008301526143ed81613e1d565b9050919050565b6000602082019050818103600083015261440d81613e83565b9050919050565b6000602082019050818103600083015261442d81613ee9565b9050919050565b6000602082019050818103600083015261444d81613f4f565b9050919050565b6000602082019050818103600083015261446d81613fb5565b9050919050565b60006020820190506144896000830184614004565b92915050565b6000604051905081810181811067ffffffffffffffff821117156144b6576144b561466f565b5b8060405250919050565b600067ffffffffffffffff8211156144db576144da61466f565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561450b5761450a61466f565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006145b282614603565b9050919050565b60006145c482614603565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561465a57808201518184015260208101905061463f565b83811115614669576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b61468b816145a7565b811461469657600080fd5b50565b6146a2816145cb565b81146146ad57600080fd5b50565b6146b9816145d7565b81146146c457600080fd5b50565b6146d081614623565b81146146db57600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220f0c1e38d47ea12bbadc9df0fd83ec31c6d674a1bbc197a02df3cb09303d95c0564736f6c63430007060033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c806370a0823111610118578063b408fd69116100a0578063c9d203731161006f578063c9d20373146107a2578063d3fe72af146107cd578063e985e9c5146107f6578063eb8d244414610833578063f2fde38b1461085e5761020f565b8063b408fd69146106d6578063b88d4fde14610713578063c87b56dd1461073c578063c94a9950146107795761020f565b80638da5cb5b116100e75780638da5cb5b1461060157806391b041501461062c57806395d89b41146106575780639f90d5a614610682578063a22cb465146106ad5761020f565b806370a0823114610545578063715018a6146105825780638462151c146105995780638d61b599146105d65761020f565b80633863294b1161019b5780634bafa2a91161016a5780634bafa2a91461044c5780634f6ccce71461047757806355f804b3146104b45780636352211e146104dd5780636c0360eb1461051a5761020f565b80633863294b146103b35780633ccfd60b146103cf57806342842e0e146103e6578063434a49a11461040f5761020f565b806310969523116101e257806310969523146102e257806318160ddd1461030b57806323b872dd146103365780632f745c591461035f57806334918dfd1461039c5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613456565b610887565b60405161024891906140d7565b60405180910390f35b34801561025d57600080fd5b506102666108ee565b60405161027391906140f2565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e91906134e9565b610990565b6040516102b0919061404e565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db919061341a565b610a15565b005b3480156102ee57600080fd5b50610309600480360381019061030491906134a8565b610b2d565b005b34801561031757600080fd5b50610320610bc3565b60405161032d9190614474565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190613314565b610bd4565b005b34801561036b57600080fd5b506103866004803603810190610381919061341a565b610c34565b6040516103939190614474565b60405180910390f35b3480156103a857600080fd5b506103b1610c8f565b005b6103cd60048036038101906103c891906134e9565b610d37565b005b3480156103db57600080fd5b506103e4610f88565b005b3480156103f257600080fd5b5061040d60048036038101906104089190613314565b611196565b005b34801561041b57600080fd5b50610436600480360381019061043191906132af565b6111b6565b60405161044391906140b5565b60405180910390f35b34801561045857600080fd5b5061046161124d565b60405161046e9190614474565b60405180910390f35b34801561048357600080fd5b5061049e600480360381019061049991906134e9565b611253565b6040516104ab9190614474565b60405180910390f35b3480156104c057600080fd5b506104db60048036038101906104d691906134a8565b611276565b005b3480156104e957600080fd5b5061050460048036038101906104ff91906134e9565b6112fe565b604051610511919061404e565b60405180910390f35b34801561052657600080fd5b5061052f611335565b60405161053c91906140f2565b60405180910390f35b34801561055157600080fd5b5061056c600480360381019061056791906132af565b6113d7565b6040516105799190614474565b60405180910390f35b34801561058e57600080fd5b50610597611496565b005b3480156105a557600080fd5b506105c060048036038101906105bb91906132af565b6115d3565b6040516105cd91906140b5565b60405180910390f35b3480156105e257600080fd5b506105eb6116cc565b6040516105f89190614474565b60405180910390f35b34801561060d57600080fd5b506106166116d1565b604051610623919061404e565b60405180910390f35b34801561063857600080fd5b506106416116fb565b60405161064e9190614474565b60405180910390f35b34801561066357600080fd5b5061066c611701565b60405161067991906140f2565b60405180910390f35b34801561068e57600080fd5b506106976117a3565b6040516106a49190614474565b60405180910390f35b3480156106b957600080fd5b506106d460048036038101906106cf91906133de565b6117a9565b005b3480156106e257600080fd5b506106fd60048036038101906106f891906134e9565b61192a565b60405161070a919061404e565b60405180910390f35b34801561071f57600080fd5b5061073a60048036038101906107359190613363565b611967565b005b34801561074857600080fd5b50610763600480360381019061075e91906134e9565b6119c9565b60405161077091906140f2565b60405180910390f35b34801561078557600080fd5b506107a0600480360381019061079b91906134e9565b611b4c565b005b3480156107ae57600080fd5b506107b7611bd2565b6040516107c491906140f2565b60405180910390f35b3480156107d957600080fd5b506107f460048036038101906107ef919061341a565b611c70565b005b34801561080257600080fd5b5061081d600480360381019061081891906132d8565b611d8e565b60405161082a91906140d7565b60405180910390f35b34801561083f57600080fd5b50610848611e22565b60405161085591906140d7565b60405180910390f35b34801561086a57600080fd5b50610885600480360381019061088091906132af565b611e35565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109865780601f1061095b57610100808354040283529160200191610986565b820191906000526020600020905b81548152906001019060200180831161096957829003601f168201915b5050505050905090565b600061099b82611fe1565b6109da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d190614374565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a20826112fe565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a88906143f4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ab0611ffe565b73ffffffffffffffffffffffffffffffffffffffff161480610adf5750610ade81610ad9611ffe565b611d8e565b5b610b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1590614294565b60405180910390fd5b610b288383612006565b505050565b610b35611ffe565b73ffffffffffffffffffffffffffffffffffffffff16610b536116d1565b73ffffffffffffffffffffffffffffffffffffffff1614610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba090614394565b60405180910390fd5b80600b9080519060200190610bbf9291906130cb565b5050565b6000610bcf60026120bf565b905090565b610be5610bdf611ffe565b826120d4565b610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b90614414565b60405180910390fd5b610c2f8383836121b2565b505050565b6000610c8782600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206123c990919063ffffffff16565b905092915050565b610c97611ffe565b73ffffffffffffffffffffffffffffffffffffffff16610cb56116d1565b73ffffffffffffffffffffffffffffffffffffffff1614610d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0290614394565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b600d60009054906101000a900460ff16610d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7d906141b4565b60405180910390fd5b600081118015610d975750601e8111155b610dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcd906142f4565b60405180910390fd5b611b58610df382610de5610bc3565b6123e390919063ffffffff16565b1115610e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2b90614434565b60405180910390fd5b610e4981600c5461243890919063ffffffff16565b341015610e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8290614214565b60405180910390fd5b60005b81811015610f84576000610ea0610bc3565b9050611b58610ead610bc3565b1015610f7657610ebd33826124a8565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081908060018154018082558091505060019003906000526020600020016000909190919091505533600f600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b508080600101915050610e8e565b5050565b610f90611ffe565b73ffffffffffffffffffffffffffffffffffffffff16610fae6116d1565b73ffffffffffffffffffffffffffffffffffffffff1614611004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffb90614394565b60405180910390fd5b60006004478161101057fe5b049050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061107357600080fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506110d357600080fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061113357600080fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061119357600080fd5b50565b6111b183838360405180602001604052806000815250611967565b505050565b6060600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548060200260200160405190810160405280929190818152602001828054801561124157602002820191906000526020600020905b81548152602001906001019080831161122d575b50505050509050919050565b60145481565b60008061126a8360026124c690919063ffffffff16565b50905080915050919050565b61127e611ffe565b73ffffffffffffffffffffffffffffffffffffffff1661129c6116d1565b73ffffffffffffffffffffffffffffffffffffffff16146112f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e990614394565b60405180910390fd5b6112fb816124f2565b50565b600061132e8260405180606001604052806029815260200161471160299139600261250c9092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113cd5780601f106113a2576101008083540402835291602001916113cd565b820191906000526020600020905b8154815290600101906020018083116113b057829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611448576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143f906142d4565b60405180910390fd5b61148f600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061252b565b9050919050565b61149e611ffe565b73ffffffffffffffffffffffffffffffffffffffff166114bc6116d1565b73ffffffffffffffffffffffffffffffffffffffff1614611512576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150990614394565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b606060006115e0836113d7565b9050600081141561163b57600067ffffffffffffffff8111801561160357600080fd5b506040519080825280602002602001820160405280156116325781602001602082028036833780820191505090505b509150506116c7565b60008167ffffffffffffffff8111801561165457600080fd5b506040519080825280602002602001820160405280156116835781602001602082028036833780820191505090505b50905060005b828110156116c05761169b8582610c34565b8282815181106116a757fe5b6020026020010181815250508080600101915050611689565b8193505050505b919050565b601e81565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c5481565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117995780601f1061176e57610100808354040283529160200191611799565b820191906000526020600020905b81548152906001019060200180831161177c57829003601f168201915b5050505050905090565b611b5881565b6117b1611ffe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561181f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611816906141f4565b60405180910390fd5b806005600061182c611ffe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118d9611ffe565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161191e91906140d7565b60405180910390a35050565b6000600f600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b611978611972611ffe565b836120d4565b6119b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ae90614414565b60405180910390fd5b6119c384848484612540565b50505050565b60606119d482611fe1565b611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a906143d4565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611abc5780601f10611a9157610100808354040283529160200191611abc565b820191906000526020600020905b815481529060010190602001808311611a9f57829003601f168201915b505050505090506000611acd611335565b9050600081511415611ae3578192505050611b47565b600082511115611b18578082604051602001611b0092919061402a565b60405160208183030381529060405292505050611b47565b80611b228561259c565b604051602001611b3392919061402a565b604051602081830303815290604052925050505b919050565b611b54611ffe565b73ffffffffffffffffffffffffffffffffffffffff16611b726116d1565b73ffffffffffffffffffffffffffffffffffffffff1614611bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbf90614394565b60405180910390fd5b80600c8190555050565b600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611c685780601f10611c3d57610100808354040283529160200191611c68565b820191906000526020600020905b815481529060010190602001808311611c4b57829003601f168201915b505050505081565b611c78611ffe565b73ffffffffffffffffffffffffffffffffffffffff16611c966116d1565b73ffffffffffffffffffffffffffffffffffffffff1614611cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce390614394565b60405180910390fd5b6000611cf6610bc3565b9050600082118015611d0a57506014548211155b611d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d40906142b4565b60405180910390fd5b60005b82811015611d6d57611d60848284016124a8565b8080600101915050611d4c565b50611d83826014546126e390919063ffffffff16565b601481905550505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60009054906101000a900460ff1681565b611e3d611ffe565b73ffffffffffffffffffffffffffffffffffffffff16611e5b6116d1565b73ffffffffffffffffffffffffffffffffffffffff1614611eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea890614394565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1890614154565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611ff782600261273390919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612079836112fe565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006120cd8260000161274d565b9050919050565b60006120df82611fe1565b61211e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211590614274565b60405180910390fd5b6000612129836112fe565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061219857508373ffffffffffffffffffffffffffffffffffffffff1661218084610990565b73ffffffffffffffffffffffffffffffffffffffff16145b806121a957506121a88185611d8e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166121d2826112fe565b73ffffffffffffffffffffffffffffffffffffffff1614612228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221f906143b4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228f906141d4565b60405180910390fd5b6122a383838361275e565b6122ae600082612006565b6122ff81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061276390919063ffffffff16565b5061235181600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061277d90919063ffffffff16565b50612368818360026127979092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006123d883600001836127cc565b60001c905092915050565b60008082840190508381101561242e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242590614194565b60405180910390fd5b8091505092915050565b60008083141561244b57600090506124a2565b600082840290508284828161245c57fe5b041461249d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249490614354565b60405180910390fd5b809150505b92915050565b6124c2828260405180602001604052806000815250612839565b5050565b6000806000806124d98660000186612894565b915091508160001c8160001c9350935050509250929050565b80600990805190602001906125089291906130cb565b5050565b600061251f846000018460001b84612917565b60001c90509392505050565b6000612539826000016129a8565b9050919050565b61254b8484846121b2565b612557848484846129b9565b612596576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258d90614134565b60405180910390fd5b50505050565b606060008214156125e4576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126de565b600082905060005b6000821461260e578080600101915050600a828161260657fe5b0491506125ec565b60008167ffffffffffffffff8111801561262757600080fd5b506040519080825280601f01601f19166020018201604052801561265a5781602001600182028036833780820191505090505b50905060006001830390508593505b600084146126d657600a848161267b57fe5b0660300160f81b8282806001900393508151811061269557fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a84816126ce57fe5b049350612669565b819450505050505b919050565b600082821115612728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271f90614234565b60405180910390fd5b818303905092915050565b6000612745836000018360001b612b1d565b905092915050565b600081600001805490509050919050565b505050565b6000612775836000018360001b612b40565b905092915050565b600061278f836000018360001b612c28565b905092915050565b60006127c3846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b612c98565b90509392505050565b600081836000018054905011612817576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280e90614114565b60405180910390fd5b82600001828154811061282657fe5b9060005260206000200154905092915050565b6128438383612d74565b61285060008484846129b9565b61288f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288690614134565b60405180910390fd5b505050565b600080828460000180549050116128e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d790614314565b60405180910390fd5b60008460000184815481106128f157fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297091906140f2565b60405180910390fd5b5084600001600182038154811061298c57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b60006129da8473ffffffffffffffffffffffffffffffffffffffff16612f02565b6129e75760019050612b15565b6000612aae63150b7a0260e01b6129fc611ffe565b888787604051602401612a129493929190614069565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040518060600160405280603281526020016146df603291398773ffffffffffffffffffffffffffffffffffffffff16612f159092919063ffffffff16565b9050600081806020019051810190612ac6919061347f565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114612c1c5760006001820390506000600186600001805490500390506000866000018281548110612b8b57fe5b9060005260206000200154905080876000018481548110612ba857fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612be057fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612c22565b60009150505b92915050565b6000612c348383612f2d565b612c8d578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612c92565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415612d3f57846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050612d6d565b82856000016001830381548110612d5257fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ddb90614334565b60405180910390fd5b612ded81611fe1565b15612e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2490614174565b60405180910390fd5b612e396000838361275e565b612e8a81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061277d90919063ffffffff16565b50612ea1818360026127979092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060612f248484600085612f50565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015612f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8c90614254565b60405180910390fd5b612f9e85612f02565b612fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd490614454565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516130069190614013565b60006040518083038185875af1925050503d8060008114613043576040519150601f19603f3d011682016040523d82523d6000602084013e613048565b606091505b5091509150613058828286613064565b92505050949350505050565b60608315613074578290506130c4565b6000835111156130875782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130bb91906140f2565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826131015760008555613148565b82601f1061311a57805160ff1916838001178555613148565b82800160010185558215613148579182015b8281111561314757825182559160200191906001019061312c565b5b5090506131559190613159565b5090565b5b8082111561317257600081600090555060010161315a565b5090565b6000613189613184846144c0565b61448f565b9050828152602081018484840111156131a157600080fd5b6131ac84828561462d565b509392505050565b60006131c76131c2846144f0565b61448f565b9050828152602081018484840111156131df57600080fd5b6131ea84828561462d565b509392505050565b60008135905061320181614682565b92915050565b60008135905061321681614699565b92915050565b60008135905061322b816146b0565b92915050565b600081519050613240816146b0565b92915050565b600082601f83011261325757600080fd5b8135613267848260208601613176565b91505092915050565b600082601f83011261328157600080fd5b81356132918482602086016131b4565b91505092915050565b6000813590506132a9816146c7565b92915050565b6000602082840312156132c157600080fd5b60006132cf848285016131f2565b91505092915050565b600080604083850312156132eb57600080fd5b60006132f9858286016131f2565b925050602061330a858286016131f2565b9150509250929050565b60008060006060848603121561332957600080fd5b6000613337868287016131f2565b9350506020613348868287016131f2565b92505060406133598682870161329a565b9150509250925092565b6000806000806080858703121561337957600080fd5b6000613387878288016131f2565b9450506020613398878288016131f2565b93505060406133a98782880161329a565b925050606085013567ffffffffffffffff8111156133c657600080fd5b6133d287828801613246565b91505092959194509250565b600080604083850312156133f157600080fd5b60006133ff858286016131f2565b925050602061341085828601613207565b9150509250929050565b6000806040838503121561342d57600080fd5b600061343b858286016131f2565b925050602061344c8582860161329a565b9150509250929050565b60006020828403121561346857600080fd5b60006134768482850161321c565b91505092915050565b60006020828403121561349157600080fd5b600061349f84828501613231565b91505092915050565b6000602082840312156134ba57600080fd5b600082013567ffffffffffffffff8111156134d457600080fd5b6134e084828501613270565b91505092915050565b6000602082840312156134fb57600080fd5b60006135098482850161329a565b91505092915050565b600061351e8383613ff5565b60208301905092915050565b613533816145b9565b82525050565b613542816145a7565b82525050565b600061355382614530565b61355d818561455e565b935061356883614520565b8060005b838110156135995781516135808882613512565b975061358b83614551565b92505060018101905061356c565b5085935050505092915050565b6135af816145cb565b82525050565b60006135c08261453b565b6135ca818561456f565b93506135da81856020860161463c565b6135e381614671565b840191505092915050565b60006135f98261453b565b6136038185614580565b935061361381856020860161463c565b80840191505092915050565b600061362a82614546565b613634818561458b565b935061364481856020860161463c565b61364d81614671565b840191505092915050565b600061366382614546565b61366d818561459c565b935061367d81856020860161463c565b80840191505092915050565b600061369660228361458b565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006136fc60328361458b565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061376260268361458b565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137c8601c8361458b565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613808601b8361458b565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b600061384860268361458b565b91507f53616c65206d7573742062652061637469766520746f206d696e742061204d6f60008301527f6f6e6475636b00000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138ae60248361458b565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061391460198361458b565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613954601f8361458b565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000613994601e8361458b565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b60006139d460268361458b565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a3a602c8361458b565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613aa060388361458b565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613b06600f8361458b565b91507f4f7574206f6620726573657276657300000000000000000000000000000000006000830152602082019050919050565b6000613b46602a8361458b565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613bac60258361458b565b91507f596f752063616e206f6e6c79206d696e7420333020746f6b656e73206174206160008301527f2074696d650000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c1260228361458b565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c7860208361458b565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613cb860218361458b565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d1e602c8361458b565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613d8460208361458b565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613dc460298361458b565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e2a602f8361458b565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613e9060218361458b565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ef660318361458b565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613f5c602d8361458b565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f66204d6f6f6e6475636b73000000000000000000000000000000000000006020830152604082019050919050565b6000613fc2601d8361458b565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b613ffe81614623565b82525050565b61400d81614623565b82525050565b600061401f82846135ee565b915081905092915050565b60006140368285613658565b91506140428284613658565b91508190509392505050565b60006020820190506140636000830184613539565b92915050565b600060808201905061407e600083018761352a565b61408b6020830186613539565b6140986040830185614004565b81810360608301526140aa81846135b5565b905095945050505050565b600060208201905081810360008301526140cf8184613548565b905092915050565b60006020820190506140ec60008301846135a6565b92915050565b6000602082019050818103600083015261410c818461361f565b905092915050565b6000602082019050818103600083015261412d81613689565b9050919050565b6000602082019050818103600083015261414d816136ef565b9050919050565b6000602082019050818103600083015261416d81613755565b9050919050565b6000602082019050818103600083015261418d816137bb565b9050919050565b600060208201905081810360008301526141ad816137fb565b9050919050565b600060208201905081810360008301526141cd8161383b565b9050919050565b600060208201905081810360008301526141ed816138a1565b9050919050565b6000602082019050818103600083015261420d81613907565b9050919050565b6000602082019050818103600083015261422d81613947565b9050919050565b6000602082019050818103600083015261424d81613987565b9050919050565b6000602082019050818103600083015261426d816139c7565b9050919050565b6000602082019050818103600083015261428d81613a2d565b9050919050565b600060208201905081810360008301526142ad81613a93565b9050919050565b600060208201905081810360008301526142cd81613af9565b9050919050565b600060208201905081810360008301526142ed81613b39565b9050919050565b6000602082019050818103600083015261430d81613b9f565b9050919050565b6000602082019050818103600083015261432d81613c05565b9050919050565b6000602082019050818103600083015261434d81613c6b565b9050919050565b6000602082019050818103600083015261436d81613cab565b9050919050565b6000602082019050818103600083015261438d81613d11565b9050919050565b600060208201905081810360008301526143ad81613d77565b9050919050565b600060208201905081810360008301526143cd81613db7565b9050919050565b600060208201905081810360008301526143ed81613e1d565b9050919050565b6000602082019050818103600083015261440d81613e83565b9050919050565b6000602082019050818103600083015261442d81613ee9565b9050919050565b6000602082019050818103600083015261444d81613f4f565b9050919050565b6000602082019050818103600083015261446d81613fb5565b9050919050565b60006020820190506144896000830184614004565b92915050565b6000604051905081810181811067ffffffffffffffff821117156144b6576144b561466f565b5b8060405250919050565b600067ffffffffffffffff8211156144db576144da61466f565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561450b5761450a61466f565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006145b282614603565b9050919050565b60006145c482614603565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561465a57808201518184015260208101905061463f565b83811115614669576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b61468b816145a7565b811461469657600080fd5b50565b6146a2816145cb565b81146146ad57600080fd5b50565b6146b9816145d7565b81146146c457600080fd5b50565b6146d081614623565b81146146db57600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220f0c1e38d47ea12bbadc9df0fd83ec31c6d674a1bbc197a02df3cb09303d95c0564736f6c63430007060033

Deployed Bytecode Sourcemap

67290:3827:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10524:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51869:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54655:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54185:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69398:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53663:211;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55545:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53425:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69645:89;;;;;;;;;;;;;:::i;:::-;;70290:822;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68327:269;;;;;;;;;;;;;:::i;:::-;;55921:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69004:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68230:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53951:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69536:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51625:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53244:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51342:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66600:148;;;;;;;;;;;;;:::i;:::-;;69742:540;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67560:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65949:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67491:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52038:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67615:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54948:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69145:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56143:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52213:792;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69267:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67372:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68604:392;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55314:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67668:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66903:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10524:150;10609:4;10633:20;:33;10654:11;10633:33;;;;;;;;;;;;;;;;;;;;;;;;;;;10626:40;;10524:150;;;:::o;51869:100::-;51923:13;51956:5;51949:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51869:100;:::o;54655:221::-;54731:7;54759:16;54767:7;54759;:16::i;:::-;54751:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54844:15;:24;54860:7;54844:24;;;;;;;;;;;;;;;;;;;;;54837:31;;54655:221;;;:::o;54185:404::-;54266:13;54282:23;54297:7;54282:14;:23::i;:::-;54266:39;;54330:5;54324:11;;:2;:11;;;;54316:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;54410:5;54394:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;54419:44;54443:5;54450:12;:10;:12::i;:::-;54419:23;:44::i;:::-;54394:69;54386:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;54560:21;54569:2;54573:7;54560:8;:21::i;:::-;54185:404;;;:::o;69398:130::-;66180:12;:10;:12::i;:::-;66169:23;;:7;:5;:7::i;:::-;:23;;;66161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69506:14:::1;69483:20;:37;;;;;;;;;;;;:::i;:::-;;69398:130:::0;:::o;53663:211::-;53724:7;53845:21;:12;:19;:21::i;:::-;53838:28;;53663:211;:::o;55545:305::-;55706:41;55725:12;:10;:12::i;:::-;55739:7;55706:18;:41::i;:::-;55698:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;55814:28;55824:4;55830:2;55834:7;55814:9;:28::i;:::-;55545:305;;;:::o;53425:162::-;53522:7;53549:30;53573:5;53549:13;:20;53563:5;53549:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;53542:37;;53425:162;;;;:::o;69645:89::-;66180:12;:10;:12::i;:::-;66169:23;;:7;:5;:7::i;:::-;:23;;;66161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69714:12:::1;;;;;;;;;;;69713:13;69698:12;;:28;;;;;;;;;;;;;;;;;;69645:89::o:0;70290:822::-;70368:12;;;;;;;;;;;70360:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;70459:1;70442:14;:18;:60;;;;;67604:2;70464:14;:38;;70442:60;70434:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;67655:4;70563:33;70581:14;70563:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:50;;70555:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;70695:33;70713:14;70695:13;;:17;;:33;;;;:::i;:::-;70682:9;:46;;70674:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;70781:6;70777:326;70797:14;70793:1;:18;70777:326;;;70833:14;70850:13;:11;:13::i;:::-;70833:30;;67655:4;70882:13;:11;:13::i;:::-;:29;70878:214;;;70932:32;70942:10;70954:9;70932;:32::i;:::-;70983:13;:25;70997:10;70983:25;;;;;;;;;;;;;;;71014:9;70983:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71066:10;71043:9;:20;71053:9;71043:20;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;70878:214;70777:326;70813:3;;;;;;;70777:326;;;;70290:822;:::o;68327:269::-;66180:12;:10;:12::i;:::-;66169:23;;:7;:5;:7::i;:::-;:23;;;66161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68375:13:::1;68415:1;68391:21;:25;;;;;;68375:41;;68443:2;;;;;;;;;;;68435:16;;:23;68452:5;68435:23;;;;;;;;;;;;;;;;;;;;;;;68427:32;;;::::0;::::1;;68486:2;;;;;;;;;;;68478:16;;:23;68495:5;68478:23;;;;;;;;;;;;;;;;;;;;;;;68470:32;;;::::0;::::1;;68529:2;;;;;;;;;;;68521:16;;:23;68538:5;68521:23;;;;;;;;;;;;;;;;;;;;;;;68513:32;;;::::0;::::1;;68572:2;;;;;;;;;;;68564:16;;:23;68581:5;68564:23;;;;;;;;;;;;;;;;;;;;;;;68556:32;;;::::0;::::1;;66240:1;68327:269::o:0;55921:151::-;56025:39;56042:4;56048:2;56052:7;56025:39;;;;;;;;;;;;:16;:39::i;:::-;55921:151;;;:::o;69004:129::-;69068:16;69104:13;:21;69118:6;69104:21;;;;;;;;;;;;;;;69097:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69004:129;;;:::o;68230:34::-;;;;:::o;53951:172::-;54026:7;54047:15;54068:22;54084:5;54068:12;:15;;:22;;;;:::i;:::-;54046:44;;;54108:7;54101:14;;;53951:172;;;:::o;69536:99::-;66180:12;:10;:12::i;:::-;66169:23;;:7;:5;:7::i;:::-;:23;;;66161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69607:20:::1;69619:7;69607:11;:20::i;:::-;69536:99:::0;:::o;51625:177::-;51697:7;51724:70;51741:7;51724:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;51717:77;;51625:177;;;:::o;53244:97::-;53292:13;53325:8;53318:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53244:97;:::o;51342:221::-;51414:7;51459:1;51442:19;;:5;:19;;;;51434:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;51526:29;:13;:20;51540:5;51526:20;;;;;;;;;;;;;;;:27;:29::i;:::-;51519:36;;51342:221;;;:::o;66600:148::-;66180:12;:10;:12::i;:::-;66169:23;;:7;:5;:7::i;:::-;:23;;;66161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66707:1:::1;66670:40;;66691:6;;;;;;;;;;;66670:40;;;;;;;;;;;;66738:1;66721:6;;:19;;;;;;;;;;;;;;;;;;66600:148::o:0;69742:540::-;69803:16;69833:18;69854:17;69864:6;69854:9;:17::i;:::-;69833:38;;69900:1;69886:10;:15;69882:393;;;69977:1;69963:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69956:23;;;;;69882:393;70012:23;70052:10;70038:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70012:51;;70078:13;70106:130;70130:10;70122:5;:18;70106:130;;;70186:34;70206:6;70214:5;70186:19;:34::i;:::-;70170:6;70177:5;70170:13;;;;;;;;;;;;;:50;;;;;70142:7;;;;;;;70106:130;;;70257:6;70250:13;;;;;69742:540;;;;:::o;67560:46::-;67604:2;67560:46;:::o;65949:87::-;65995:7;66022:6;;;;;;;;;;;66015:13;;65949:87;:::o;67491:48::-;;;;:::o;52038:104::-;52094:13;52127:7;52120:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52038:104;:::o;67615:44::-;67655:4;67615:44;:::o;54948:295::-;55063:12;:10;:12::i;:::-;55051:24;;:8;:24;;;;55043:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;55163:8;55118:18;:32;55137:12;:10;:12::i;:::-;55118:32;;;;;;;;;;;;;;;:42;55151:8;55118:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;55216:8;55187:48;;55202:12;:10;:12::i;:::-;55187:48;;;55226:8;55187:48;;;;;;:::i;:::-;;;;;;;;54948:295;;:::o;69145:114::-;69206:7;69233:9;:18;69243:7;69233:18;;;;;;;;;;;;;;;;;;;;;69226:25;;69145:114;;;:::o;56143:285::-;56275:41;56294:12;:10;:12::i;:::-;56308:7;56275:18;:41::i;:::-;56267:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;56381:39;56395:4;56401:2;56405:7;56414:5;56381:13;:39::i;:::-;56143:285;;;;:::o;52213:792::-;52286:13;52320:16;52328:7;52320;:16::i;:::-;52312:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;52401:23;52427:10;:19;52438:7;52427:19;;;;;;;;;;;52401:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52457:18;52478:9;:7;:9::i;:::-;52457:30;;52585:1;52569:4;52563:18;:23;52559:72;;;52610:9;52603:16;;;;;;52559:72;52761:1;52741:9;52735:23;:27;52731:108;;;52810:4;52816:9;52793:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52779:48;;;;;;52731:108;52971:4;52977:18;:7;:16;:18::i;:::-;52954:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52940:57;;;;52213:792;;;;:::o;69267:123::-;66180:12;:10;:12::i;:::-;66169:23;;:7;:5;:7::i;:::-;:23;;;66161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69365:17:::1;69349:13;:33;;;;69267:123:::0;:::o;67372:39::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;68604:392::-;66180:12;:10;:12::i;:::-;66169:23;;:7;:5;:7::i;:::-;:23;;;66161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68695:11:::1;68709:13;:11;:13::i;:::-;68695:27;;68758:1;68741:14;:18;:56;;;;;68781:16;;68763:14;:34;;68741:56;68733:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;68833:6;68828:95;68849:14;68845:1;:18;68828:95;;;68885:26;68895:3;68909:1;68900:6;:10;68885:9;:26::i;:::-;68865:3;;;;;;;68828:95;;;;68952:36;68973:14;68952:16;;:20;;:36;;;;:::i;:::-;68933:16;:55;;;;66240:1;68604:392:::0;;:::o;55314:164::-;55411:4;55435:18;:25;55454:5;55435:25;;;;;;;;;;;;;;;:35;55461:8;55435:35;;;;;;;;;;;;;;;;;;;;;;;;;55428:42;;55314:164;;;;:::o;67668:32::-;;;;;;;;;;;;;:::o;66903:244::-;66180:12;:10;:12::i;:::-;66169:23;;:7;:5;:7::i;:::-;:23;;;66161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67012:1:::1;66992:22;;:8;:22;;;;66984:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;67102:8;67073:38;;67094:6;;;;;;;;;;;67073:38;;;;;;;;;;;;67131:8;67122:6;;:17;;;;;;;;;;;;;;;;;;66903:244:::0;:::o;57895:127::-;57960:4;57984:30;58006:7;57984:12;:21;;:30;;;;:::i;:::-;57977:37;;57895:127;;;:::o;956:106::-;1009:15;1044:10;1037:17;;956:106;:::o;63933:192::-;64035:2;64008:15;:24;64024:7;64008:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;64091:7;64087:2;64053:46;;64062:23;64077:7;64062:14;:23::i;:::-;64053:46;;;;;;;;;;;;63933:192;;:::o;44619:123::-;44688:7;44715:19;44723:3;:10;;44715:7;:19::i;:::-;44708:26;;44619:123;;;:::o;58189:355::-;58282:4;58307:16;58315:7;58307;:16::i;:::-;58299:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;58383:13;58399:23;58414:7;58399:14;:23::i;:::-;58383:39;;58452:5;58441:16;;:7;:16;;;:51;;;;58485:7;58461:31;;:20;58473:7;58461:11;:20::i;:::-;:31;;;58441:51;:94;;;;58496:39;58520:5;58527:7;58496:23;:39::i;:::-;58441:94;58433:103;;;58189:355;;;;:::o;61325:599::-;61450:4;61423:31;;:23;61438:7;61423:14;:23::i;:::-;:31;;;61415:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;61551:1;61537:16;;:2;:16;;;;61529:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;61607:39;61628:4;61634:2;61638:7;61607:20;:39::i;:::-;61711:29;61728:1;61732:7;61711:8;:29::i;:::-;61753:35;61780:7;61753:13;:19;61767:4;61753:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;61799:30;61821:7;61799:13;:17;61813:2;61799:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;61842:29;61859:7;61868:2;61842:12;:16;;:29;;;;;:::i;:::-;;61908:7;61904:2;61889:27;;61898:4;61889:27;;;;;;;;;;;;61325:599;;;:::o;36400:137::-;36471:7;36506:22;36510:3;:10;;36522:5;36506:3;:22::i;:::-;36498:31;;36491:38;;36400:137;;;;:::o;14086:179::-;14144:7;14164:9;14180:1;14176;:5;14164:17;;14205:1;14200;:6;;14192:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;14256:1;14249:8;;;14086:179;;;;:::o;14965:220::-;15023:7;15052:1;15047;:6;15043:20;;;15062:1;15055:8;;;;15043:20;15074:9;15090:1;15086;:5;15074:17;;15119:1;15114;15110;:5;;;;;;:10;15102:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;15176:1;15169:8;;;14965:220;;;;;:::o;58887:110::-;58963:26;58973:2;58977:7;58963:26;;;;;;;;;;;;:9;:26::i;:::-;58887:110;;:::o;45090:236::-;45170:7;45179;45200:11;45213:13;45230:22;45234:3;:10;;45246:5;45230:3;:22::i;:::-;45199:53;;;;45279:3;45271:12;;45309:5;45301:14;;45263:55;;;;;;45090:236;;;;;:::o;62525:100::-;62609:8;62598;:19;;;;;;;;;;;;:::i;:::-;;62525:100;:::o;46376:213::-;46483:7;46534:44;46539:3;:10;;46559:3;46551:12;;46565;46534:4;:44::i;:::-;46526:53;;46503:78;;46376:213;;;;;:::o;35932:114::-;35992:7;36019:19;36027:3;:10;;36019:7;:19::i;:::-;36012:26;;35932:114;;;:::o;57310:272::-;57424:28;57434:4;57440:2;57444:7;57424:9;:28::i;:::-;57471:48;57494:4;57500:2;57504:7;57513:5;57471:22;:48::i;:::-;57463:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;57310:272;;;;:::o;46840:746::-;46896:13;47126:1;47117:5;:10;47113:53;;;47144:10;;;;;;;;;;;;;;;;;;;;;47113:53;47176:12;47191:5;47176:20;;47207:14;47232:78;47247:1;47239:4;:9;47232:78;;47265:8;;;;;;;47296:2;47288:10;;;;;;;;;47232:78;;;47320:19;47352:6;47342:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47320:39;;47370:13;47395:1;47386:6;:10;47370:26;;47414:5;47407:12;;47430:117;47445:1;47437:4;:9;47430:117;;47506:2;47499:4;:9;;;;;;47494:2;:14;47481:29;;47463:6;47470:7;;;;;;;47463:15;;;;;;;;;;;:47;;;;;;;;;;;47533:2;47525:10;;;;;;;;;47430:117;;;47571:6;47557:21;;;;;;46840:746;;;;:::o;14548:158::-;14606:7;14639:1;14634;:6;;14626:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;14697:1;14693;:5;14686:12;;14548:158;;;;:::o;44380:151::-;44464:4;44488:35;44498:3;:10;;44518:3;44510:12;;44488:9;:35::i;:::-;44481:42;;44380:151;;;;:::o;41188:110::-;41244:7;41271:3;:12;;:19;;;;41264:26;;41188:110;;;:::o;64738:93::-;;;;:::o;35477:137::-;35547:4;35571:35;35579:3;:10;;35599:5;35591:14;;35571:7;:35::i;:::-;35564:42;;35477:137;;;;:::o;35170:131::-;35237:4;35261:32;35266:3;:10;;35286:5;35278:14;;35261:4;:32::i;:::-;35254:39;;35170:131;;;;:::o;43803:185::-;43892:4;43916:64;43921:3;:10;;43941:3;43933:12;;43971:5;43955:23;;43947:32;;43916:4;:64::i;:::-;43909:71;;43803:185;;;;;:::o;31408:204::-;31475:7;31524:5;31503:3;:11;;:18;;;;:26;31495:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31586:3;:11;;31598:5;31586:18;;;;;;;;;;;;;;;;31579:25;;31408:204;;;;:::o;59224:250::-;59320:18;59326:2;59330:7;59320:5;:18::i;:::-;59357:54;59388:1;59392:2;59396:7;59405:5;59357:22;:54::i;:::-;59349:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;59224:250;;;:::o;41663:279::-;41730:7;41739;41789:5;41767:3;:12;;:19;;;;:27;41759:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;41846:22;41871:3;:12;;41884:5;41871:19;;;;;;;;;;;;;;;;;;41846:44;;41909:5;:10;;;41921:5;:12;;;41901:33;;;;;41663:279;;;;;:::o;43160:319::-;43254:7;43274:16;43293:3;:12;;:17;43306:3;43293:17;;;;;;;;;;;;43274:36;;43341:1;43329:8;:13;;43344:12;43321:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;43411:3;:12;;43435:1;43424:8;:12;43411:26;;;;;;;;;;;;;;;;;;:33;;;43404:40;;;43160:319;;;;;:::o;30945:109::-;31001:7;31028:3;:11;;:18;;;;31021:25;;30945:109;;;:::o;63190:624::-;63307:4;63334:15;:2;:13;;;:15::i;:::-;63329:60;;63373:4;63366:11;;;;63329:60;63399:23;63425:276;63482:45;;;63546:12;:10;:12::i;:::-;63577:4;63600:7;63626:5;63441:205;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63425:276;;;;;;;;;;;;;;;;;:2;:15;;;;:276;;;;;:::i;:::-;63399:302;;63712:13;63739:10;63728:32;;;;;;;;;;;;:::i;:::-;63712:48;;48339:10;63789:16;;63779:26;;;:6;:26;;;;63771:35;;;;63190:624;;;;;;;:::o;40968:125::-;41039:4;41084:1;41063:3;:12;;:17;41076:3;41063:17;;;;;;;;;;;;:22;;41056:29;;40968:125;;;;:::o;29100:1544::-;29166:4;29284:18;29305:3;:12;;:19;29318:5;29305:19;;;;;;;;;;;;29284:40;;29355:1;29341:10;:15;29337:1300;;29703:21;29740:1;29727:10;:14;29703:38;;29756:17;29797:1;29776:3;:11;;:18;;;;:22;29756:42;;30043:17;30063:3;:11;;30075:9;30063:22;;;;;;;;;;;;;;;;30043:42;;30209:9;30180:3;:11;;30192:13;30180:26;;;;;;;;;;;;;;;:38;;;;30328:1;30312:13;:17;30286:3;:12;;:23;30299:9;30286:23;;;;;;;;;;;:43;;;;30438:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;30533:3;:12;;:19;30546:5;30533:19;;;;;;;;;;;30526:26;;;30576:4;30569:11;;;;;;;;29337:1300;30620:5;30613:12;;;29100:1544;;;;;:::o;28510:414::-;28573:4;28595:21;28605:3;28610:5;28595:9;:21::i;:::-;28590:327;;28633:3;:11;;28650:5;28633:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28816:3;:11;;:18;;;;28794:3;:12;;:19;28807:5;28794:19;;;;;;;;;;;:40;;;;28856:4;28849:11;;;;28590:327;28900:5;28893:12;;28510:414;;;;;:::o;38468:692::-;38544:4;38660:16;38679:3;:12;;:17;38692:3;38679:17;;;;;;;;;;;;38660:36;;38725:1;38713:8;:13;38709:444;;;38780:3;:12;;38798:38;;;;;;;;38815:3;38798:38;;;;38828:5;38798:38;;;38780:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38995:3;:12;;:19;;;;38975:3;:12;;:17;38988:3;38975:17;;;;;;;;;;;:39;;;;39036:4;39029:11;;;;;38709:444;39109:5;39073:3;:12;;39097:1;39086:8;:12;39073:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;39136:5;39129:12;;;38468:692;;;;;;:::o;59810:404::-;59904:1;59890:16;;:2;:16;;;;59882:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;59963:16;59971:7;59963;:16::i;:::-;59962:17;59954:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;60025:45;60054:1;60058:2;60062:7;60025:20;:45::i;:::-;60083:30;60105:7;60083:13;:17;60097:2;60083:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;60126:29;60143:7;60152:2;60126:12;:16;;:29;;;;;:::i;:::-;;60198:7;60194:2;60173:33;;60190:1;60173:33;;;;;;;;;;;;59810:404;;:::o;19527:422::-;19587:4;19795:12;19906:7;19894:20;19886:28;;19940:1;19933:4;:8;19926:15;;;19527:422;;;:::o;22447:195::-;22550:12;22582:52;22604:6;22612:4;22618:1;22621:12;22582:21;:52::i;:::-;22575:59;;22447:195;;;;;:::o;30730:129::-;30803:4;30850:1;30827:3;:12;;:19;30840:5;30827:19;;;;;;;;;;;;:24;;30820:31;;30730:129;;;;:::o;23499:530::-;23626:12;23684:5;23659:21;:30;;23651:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;23751:18;23762:6;23751:10;:18::i;:::-;23743:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;23877:12;23891:23;23918:6;:11;;23938:5;23946:4;23918:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23876:75;;;;23969:52;23987:7;23996:10;24008:12;23969:17;:52::i;:::-;23962:59;;;;23499:530;;;;;;:::o;26039:742::-;26154:12;26183:7;26179:595;;;26214:10;26207:17;;;;26179:595;26348:1;26328:10;:17;:21;26324:439;;;26591:10;26585:17;26652:15;26639:10;26635:2;26631:19;26624:44;26539:148;26734:12;26727:20;;;;;;;;;;;:::i;:::-;;;;;;;;26039:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:260::-;;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:52;5116:7;5107:6;5096:9;5092:22;5072:52;:::i;:::-;5062:62;;5018:116;4946:195;;;;:::o;5147:282::-;;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5281:1;5278;5271:12;5233:2;5324:1;5349:63;5404:7;5395:6;5384:9;5380:22;5349:63;:::i;:::-;5339:73;;5295:127;5223:206;;;;:::o;5435:375::-;;5553:2;5541:9;5532:7;5528:23;5524:32;5521:2;;;5569:1;5566;5559:12;5521:2;5640:1;5629:9;5625:17;5612:31;5670:18;5662:6;5659:30;5656:2;;;5702:1;5699;5692:12;5656:2;5730:63;5785:7;5776:6;5765:9;5761:22;5730:63;:::i;:::-;5720:73;;5583:220;5511:299;;;;:::o;5816:262::-;;5924:2;5912:9;5903:7;5899:23;5895:32;5892:2;;;5940:1;5937;5930:12;5892:2;5983:1;6008:53;6053:7;6044:6;6033:9;6029:22;6008:53;:::i;:::-;5998:63;;5954:117;5882:196;;;;:::o;6084:179::-;;6174:46;6216:3;6208:6;6174:46;:::i;:::-;6252:4;6247:3;6243:14;6229:28;;6164:99;;;;:::o;6269:142::-;6372:32;6398:5;6372:32;:::i;:::-;6367:3;6360:45;6350:61;;:::o;6417:118::-;6504:24;6522:5;6504:24;:::i;:::-;6499:3;6492:37;6482:53;;:::o;6571:732::-;;6719:54;6767:5;6719:54;:::i;:::-;6789:86;6868:6;6863:3;6789:86;:::i;:::-;6782:93;;6899:56;6949:5;6899:56;:::i;:::-;6978:7;7009:1;6994:284;7019:6;7016:1;7013:13;6994:284;;;7095:6;7089:13;7122:63;7181:3;7166:13;7122:63;:::i;:::-;7115:70;;7208:60;7261:6;7208:60;:::i;:::-;7198:70;;7054:224;7041:1;7038;7034:9;7029:14;;6994:284;;;6998:14;7294:3;7287:10;;6695:608;;;;;;;:::o;7309:109::-;7390:21;7405:5;7390:21;:::i;:::-;7385:3;7378:34;7368:50;;:::o;7424:360::-;;7538:38;7570:5;7538:38;:::i;:::-;7592:70;7655:6;7650:3;7592:70;:::i;:::-;7585:77;;7671:52;7716:6;7711:3;7704:4;7697:5;7693:16;7671:52;:::i;:::-;7748:29;7770:6;7748:29;:::i;:::-;7743:3;7739:39;7732:46;;7514:270;;;;;:::o;7790:373::-;;7922:38;7954:5;7922:38;:::i;:::-;7976:88;8057:6;8052:3;7976:88;:::i;:::-;7969:95;;8073:52;8118:6;8113:3;8106:4;8099:5;8095:16;8073:52;:::i;:::-;8150:6;8145:3;8141:16;8134:23;;7898:265;;;;;:::o;8169:364::-;;8285:39;8318:5;8285:39;:::i;:::-;8340:71;8404:6;8399:3;8340:71;:::i;:::-;8333:78;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:29;8519:6;8497:29;:::i;:::-;8492:3;8488:39;8481:46;;8261:272;;;;;:::o;8539:377::-;;8673:39;8706:5;8673:39;:::i;:::-;8728:89;8810:6;8805:3;8728:89;:::i;:::-;8721:96;;8826:52;8871:6;8866:3;8859:4;8852:5;8848:16;8826:52;:::i;:::-;8903:6;8898:3;8894:16;8887:23;;8649:267;;;;;:::o;8922:366::-;;9085:67;9149:2;9144:3;9085:67;:::i;:::-;9078:74;;9182:34;9178:1;9173:3;9169:11;9162:55;9248:4;9243:2;9238:3;9234:12;9227:26;9279:2;9274:3;9270:12;9263:19;;9068:220;;;:::o;9294:382::-;;9457:67;9521:2;9516:3;9457:67;:::i;:::-;9450:74;;9554:34;9550:1;9545:3;9541:11;9534:55;9620:20;9615:2;9610:3;9606:12;9599:42;9667:2;9662:3;9658:12;9651:19;;9440:236;;;:::o;9682:370::-;;9845:67;9909:2;9904:3;9845:67;:::i;:::-;9838:74;;9942:34;9938:1;9933:3;9929:11;9922:55;10008:8;10003:2;9998:3;9994:12;9987:30;10043:2;10038:3;10034:12;10027:19;;9828:224;;;:::o;10058:326::-;;10221:67;10285:2;10280:3;10221:67;:::i;:::-;10214:74;;10318:30;10314:1;10309:3;10305:11;10298:51;10375:2;10370:3;10366:12;10359:19;;10204:180;;;:::o;10390:325::-;;10553:67;10617:2;10612:3;10553:67;:::i;:::-;10546:74;;10650:29;10646:1;10641:3;10637:11;10630:50;10706:2;10701:3;10697:12;10690:19;;10536:179;;;:::o;10721:370::-;;10884:67;10948:2;10943:3;10884:67;:::i;:::-;10877:74;;10981:34;10977:1;10972:3;10968:11;10961:55;11047:8;11042:2;11037:3;11033:12;11026:30;11082:2;11077:3;11073:12;11066:19;;10867:224;;;:::o;11097:368::-;;11260:67;11324:2;11319:3;11260:67;:::i;:::-;11253:74;;11357:34;11353:1;11348:3;11344:11;11337:55;11423:6;11418:2;11413:3;11409:12;11402:28;11456:2;11451:3;11447:12;11440:19;;11243:222;;;:::o;11471:323::-;;11634:67;11698:2;11693:3;11634:67;:::i;:::-;11627:74;;11731:27;11727:1;11722:3;11718:11;11711:48;11785:2;11780:3;11776:12;11769:19;;11617:177;;;:::o;11800:329::-;;11963:67;12027:2;12022:3;11963:67;:::i;:::-;11956:74;;12060:33;12056:1;12051:3;12047:11;12040:54;12120:2;12115:3;12111:12;12104:19;;11946:183;;;:::o;12135:328::-;;12298:67;12362:2;12357:3;12298:67;:::i;:::-;12291:74;;12395:32;12391:1;12386:3;12382:11;12375:53;12454:2;12449:3;12445:12;12438:19;;12281:182;;;:::o;12469:370::-;;12632:67;12696:2;12691:3;12632:67;:::i;:::-;12625:74;;12729:34;12725:1;12720:3;12716:11;12709:55;12795:8;12790:2;12785:3;12781:12;12774:30;12830:2;12825:3;12821:12;12814:19;;12615:224;;;:::o;12845:376::-;;13008:67;13072:2;13067:3;13008:67;:::i;:::-;13001:74;;13105:34;13101:1;13096:3;13092:11;13085:55;13171:14;13166:2;13161:3;13157:12;13150:36;13212:2;13207:3;13203:12;13196:19;;12991:230;;;:::o;13227:388::-;;13390:67;13454:2;13449:3;13390:67;:::i;:::-;13383:74;;13487:34;13483:1;13478:3;13474:11;13467:55;13553:26;13548:2;13543:3;13539:12;13532:48;13606:2;13601:3;13597:12;13590:19;;13373:242;;;:::o;13621:313::-;;13784:67;13848:2;13843:3;13784:67;:::i;:::-;13777:74;;13881:17;13877:1;13872:3;13868:11;13861:38;13925:2;13920:3;13916:12;13909:19;;13767:167;;;:::o;13940:374::-;;14103:67;14167:2;14162:3;14103:67;:::i;:::-;14096:74;;14200:34;14196:1;14191:3;14187:11;14180:55;14266:12;14261:2;14256:3;14252:12;14245:34;14305:2;14300:3;14296:12;14289:19;;14086:228;;;:::o;14320:369::-;;14483:67;14547:2;14542:3;14483:67;:::i;:::-;14476:74;;14580:34;14576:1;14571:3;14567:11;14560:55;14646:7;14641:2;14636:3;14632:12;14625:29;14680:2;14675:3;14671:12;14664:19;;14466:223;;;:::o;14695:366::-;;14858:67;14922:2;14917:3;14858:67;:::i;:::-;14851:74;;14955:34;14951:1;14946:3;14942:11;14935:55;15021:4;15016:2;15011:3;15007:12;15000:26;15052:2;15047:3;15043:12;15036:19;;14841:220;;;:::o;15067:330::-;;15230:67;15294:2;15289:3;15230:67;:::i;:::-;15223:74;;15327:34;15323:1;15318:3;15314:11;15307:55;15388:2;15383:3;15379:12;15372:19;;15213:184;;;:::o;15403:365::-;;15566:67;15630:2;15625:3;15566:67;:::i;:::-;15559:74;;15663:34;15659:1;15654:3;15650:11;15643:55;15729:3;15724:2;15719:3;15715:12;15708:25;15759:2;15754:3;15750:12;15743:19;;15549:219;;;:::o;15774:376::-;;15937:67;16001:2;15996:3;15937:67;:::i;:::-;15930:74;;16034:34;16030:1;16025:3;16021:11;16014:55;16100:14;16095:2;16090:3;16086:12;16079:36;16141:2;16136:3;16132:12;16125:19;;15920:230;;;:::o;16156:330::-;;16319:67;16383:2;16378:3;16319:67;:::i;:::-;16312:74;;16416:34;16412:1;16407:3;16403:11;16396:55;16477:2;16472:3;16468:12;16461:19;;16302:184;;;:::o;16492:373::-;;16655:67;16719:2;16714:3;16655:67;:::i;:::-;16648:74;;16752:34;16748:1;16743:3;16739:11;16732:55;16818:11;16813:2;16808:3;16804:12;16797:33;16856:2;16851:3;16847:12;16840:19;;16638:227;;;:::o;16871:379::-;;17034:67;17098:2;17093:3;17034:67;:::i;:::-;17027:74;;17131:34;17127:1;17122:3;17118:11;17111:55;17197:17;17192:2;17187:3;17183:12;17176:39;17241:2;17236:3;17232:12;17225:19;;17017:233;;;:::o;17256:365::-;;17419:67;17483:2;17478:3;17419:67;:::i;:::-;17412:74;;17516:34;17512:1;17507:3;17503:11;17496:55;17582:3;17577:2;17572:3;17568:12;17561:25;17612:2;17607:3;17603:12;17596:19;;17402:219;;;:::o;17627:381::-;;17790:67;17854:2;17849:3;17790:67;:::i;:::-;17783:74;;17887:34;17883:1;17878:3;17874:11;17867:55;17953:19;17948:2;17943:3;17939:12;17932:41;17999:2;17994:3;17990:12;17983:19;;17773:235;;;:::o;18014:377::-;;18177:67;18241:2;18236:3;18177:67;:::i;:::-;18170:74;;18274:34;18270:1;18265:3;18261:11;18254:55;18340:15;18335:2;18330:3;18326:12;18319:37;18382:2;18377:3;18373:12;18366:19;;18160:231;;;:::o;18397:327::-;;18560:67;18624:2;18619:3;18560:67;:::i;:::-;18553:74;;18657:31;18653:1;18648:3;18644:11;18637:52;18715:2;18710:3;18706:12;18699:19;;18543:181;;;:::o;18730:108::-;18807:24;18825:5;18807:24;:::i;:::-;18802:3;18795:37;18785:53;;:::o;18844:118::-;18931:24;18949:5;18931:24;:::i;:::-;18926:3;18919:37;18909:53;;:::o;18968:271::-;;19120:93;19209:3;19200:6;19120:93;:::i;:::-;19113:100;;19230:3;19223:10;;19102:137;;;;:::o;19245:435::-;;19447:95;19538:3;19529:6;19447:95;:::i;:::-;19440:102;;19559:95;19650:3;19641:6;19559:95;:::i;:::-;19552:102;;19671:3;19664:10;;19429:251;;;;;:::o;19686:222::-;;19817:2;19806:9;19802:18;19794:26;;19830:71;19898:1;19887:9;19883:17;19874:6;19830:71;:::i;:::-;19784:124;;;;:::o;19914:672::-;;20163:3;20152:9;20148:19;20140:27;;20177:87;20261:1;20250:9;20246:17;20237:6;20177:87;:::i;:::-;20274:72;20342:2;20331:9;20327:18;20318:6;20274:72;:::i;:::-;20356;20424:2;20413:9;20409:18;20400:6;20356:72;:::i;:::-;20475:9;20469:4;20465:20;20460:2;20449:9;20445:18;20438:48;20503:76;20574:4;20565:6;20503:76;:::i;:::-;20495:84;;20130:456;;;;;;;:::o;20592:373::-;;20773:2;20762:9;20758:18;20750:26;;20822:9;20816:4;20812:20;20808:1;20797:9;20793:17;20786:47;20850:108;20953:4;20944:6;20850:108;:::i;:::-;20842:116;;20740:225;;;;:::o;20971:210::-;;21096:2;21085:9;21081:18;21073:26;;21109:65;21171:1;21160:9;21156:17;21147:6;21109:65;:::i;:::-;21063:118;;;;:::o;21187:313::-;;21338:2;21327:9;21323:18;21315:26;;21387:9;21381:4;21377:20;21373:1;21362:9;21358:17;21351:47;21415:78;21488:4;21479:6;21415:78;:::i;:::-;21407:86;;21305:195;;;;:::o;21506:419::-;;21710:2;21699:9;21695:18;21687:26;;21759:9;21753:4;21749:20;21745:1;21734:9;21730:17;21723:47;21787:131;21913:4;21787:131;:::i;:::-;21779:139;;21677:248;;;:::o;21931:419::-;;22135:2;22124:9;22120:18;22112:26;;22184:9;22178:4;22174:20;22170:1;22159:9;22155:17;22148:47;22212:131;22338:4;22212:131;:::i;:::-;22204:139;;22102:248;;;:::o;22356:419::-;;22560:2;22549:9;22545:18;22537:26;;22609:9;22603:4;22599:20;22595:1;22584:9;22580:17;22573:47;22637:131;22763:4;22637:131;:::i;:::-;22629:139;;22527:248;;;:::o;22781:419::-;;22985:2;22974:9;22970:18;22962:26;;23034:9;23028:4;23024:20;23020:1;23009:9;23005:17;22998:47;23062:131;23188:4;23062:131;:::i;:::-;23054:139;;22952:248;;;:::o;23206:419::-;;23410:2;23399:9;23395:18;23387:26;;23459:9;23453:4;23449:20;23445:1;23434:9;23430:17;23423:47;23487:131;23613:4;23487:131;:::i;:::-;23479:139;;23377:248;;;:::o;23631:419::-;;23835:2;23824:9;23820:18;23812:26;;23884:9;23878:4;23874:20;23870:1;23859:9;23855:17;23848:47;23912:131;24038:4;23912:131;:::i;:::-;23904:139;;23802:248;;;:::o;24056:419::-;;24260:2;24249:9;24245:18;24237:26;;24309:9;24303:4;24299:20;24295:1;24284:9;24280:17;24273:47;24337:131;24463:4;24337:131;:::i;:::-;24329:139;;24227:248;;;:::o;24481:419::-;;24685:2;24674:9;24670:18;24662:26;;24734:9;24728:4;24724:20;24720:1;24709:9;24705:17;24698:47;24762:131;24888:4;24762:131;:::i;:::-;24754:139;;24652:248;;;:::o;24906:419::-;;25110:2;25099:9;25095:18;25087:26;;25159:9;25153:4;25149:20;25145:1;25134:9;25130:17;25123:47;25187:131;25313:4;25187:131;:::i;:::-;25179:139;;25077:248;;;:::o;25331:419::-;;25535:2;25524:9;25520:18;25512:26;;25584:9;25578:4;25574:20;25570:1;25559:9;25555:17;25548:47;25612:131;25738:4;25612:131;:::i;:::-;25604:139;;25502:248;;;:::o;25756:419::-;;25960:2;25949:9;25945:18;25937:26;;26009:9;26003:4;25999:20;25995:1;25984:9;25980:17;25973:47;26037:131;26163:4;26037:131;:::i;:::-;26029:139;;25927:248;;;:::o;26181:419::-;;26385:2;26374:9;26370:18;26362:26;;26434:9;26428:4;26424:20;26420:1;26409:9;26405:17;26398:47;26462:131;26588:4;26462:131;:::i;:::-;26454:139;;26352:248;;;:::o;26606:419::-;;26810:2;26799:9;26795:18;26787:26;;26859:9;26853:4;26849:20;26845:1;26834:9;26830:17;26823:47;26887:131;27013:4;26887:131;:::i;:::-;26879:139;;26777:248;;;:::o;27031:419::-;;27235:2;27224:9;27220:18;27212:26;;27284:9;27278:4;27274:20;27270:1;27259:9;27255:17;27248:47;27312:131;27438:4;27312:131;:::i;:::-;27304:139;;27202:248;;;:::o;27456:419::-;;27660:2;27649:9;27645:18;27637:26;;27709:9;27703:4;27699:20;27695:1;27684:9;27680:17;27673:47;27737:131;27863:4;27737:131;:::i;:::-;27729:139;;27627:248;;;:::o;27881:419::-;;28085:2;28074:9;28070:18;28062:26;;28134:9;28128:4;28124:20;28120:1;28109:9;28105:17;28098:47;28162:131;28288:4;28162:131;:::i;:::-;28154:139;;28052:248;;;:::o;28306:419::-;;28510:2;28499:9;28495:18;28487:26;;28559:9;28553:4;28549:20;28545:1;28534:9;28530:17;28523:47;28587:131;28713:4;28587:131;:::i;:::-;28579:139;;28477:248;;;:::o;28731:419::-;;28935:2;28924:9;28920:18;28912:26;;28984:9;28978:4;28974:20;28970:1;28959:9;28955:17;28948:47;29012:131;29138:4;29012:131;:::i;:::-;29004:139;;28902:248;;;:::o;29156:419::-;;29360:2;29349:9;29345:18;29337:26;;29409:9;29403:4;29399:20;29395:1;29384:9;29380:17;29373:47;29437:131;29563:4;29437:131;:::i;:::-;29429:139;;29327:248;;;:::o;29581:419::-;;29785:2;29774:9;29770:18;29762:26;;29834:9;29828:4;29824:20;29820:1;29809:9;29805:17;29798:47;29862:131;29988:4;29862:131;:::i;:::-;29854:139;;29752:248;;;:::o;30006:419::-;;30210:2;30199:9;30195:18;30187:26;;30259:9;30253:4;30249:20;30245:1;30234:9;30230:17;30223:47;30287:131;30413:4;30287:131;:::i;:::-;30279:139;;30177:248;;;:::o;30431:419::-;;30635:2;30624:9;30620:18;30612:26;;30684:9;30678:4;30674:20;30670:1;30659:9;30655:17;30648:47;30712:131;30838:4;30712:131;:::i;:::-;30704:139;;30602:248;;;:::o;30856:419::-;;31060:2;31049:9;31045:18;31037:26;;31109:9;31103:4;31099:20;31095:1;31084:9;31080:17;31073:47;31137:131;31263:4;31137:131;:::i;:::-;31129:139;;31027:248;;;:::o;31281:419::-;;31485:2;31474:9;31470:18;31462:26;;31534:9;31528:4;31524:20;31520:1;31509:9;31505:17;31498:47;31562:131;31688:4;31562:131;:::i;:::-;31554:139;;31452:248;;;:::o;31706:419::-;;31910:2;31899:9;31895:18;31887:26;;31959:9;31953:4;31949:20;31945:1;31934:9;31930:17;31923:47;31987:131;32113:4;31987:131;:::i;:::-;31979:139;;31877:248;;;:::o;32131:419::-;;32335:2;32324:9;32320:18;32312:26;;32384:9;32378:4;32374:20;32370:1;32359:9;32355:17;32348:47;32412:131;32538:4;32412:131;:::i;:::-;32404:139;;32302:248;;;:::o;32556:419::-;;32760:2;32749:9;32745:18;32737:26;;32809:9;32803:4;32799:20;32795:1;32784:9;32780:17;32773:47;32837:131;32963:4;32837:131;:::i;:::-;32829:139;;32727:248;;;:::o;32981:222::-;;33112:2;33101:9;33097:18;33089:26;;33125:71;33193:1;33182:9;33178:17;33169:6;33125:71;:::i;:::-;33079:124;;;;:::o;33209:278::-;;33275:2;33269:9;33259:19;;33317:4;33309:6;33305:17;33424:6;33412:10;33409:22;33388:18;33376:10;33373:34;33370:62;33367:2;;;33435:13;;:::i;:::-;33367:2;33470:10;33466:2;33459:22;33249:238;;;;:::o;33493:326::-;;33644:18;33636:6;33633:30;33630:2;;;33666:13;;:::i;:::-;33630:2;33746:4;33742:9;33735:4;33727:6;33723:17;33719:33;33711:41;;33807:4;33801;33797:15;33789:23;;33559:260;;;:::o;33825:327::-;;33977:18;33969:6;33966:30;33963:2;;;33999:13;;:::i;:::-;33963:2;34079:4;34075:9;34068:4;34060:6;34056:17;34052:33;34044:41;;34140:4;34134;34130:15;34122:23;;33892:260;;;:::o;34158:132::-;;34248:3;34240:11;;34278:4;34273:3;34269:14;34261:22;;34230:60;;;:::o;34296:114::-;;34397:5;34391:12;34381:22;;34370:40;;;:::o;34416:98::-;;34501:5;34495:12;34485:22;;34474:40;;;:::o;34520:99::-;;34606:5;34600:12;34590:22;;34579:40;;;:::o;34625:113::-;;34727:4;34722:3;34718:14;34710:22;;34700:38;;;:::o;34744:184::-;;34877:6;34872:3;34865:19;34917:4;34912:3;34908:14;34893:29;;34855:73;;;;:::o;34934:168::-;;35051:6;35046:3;35039:19;35091:4;35086:3;35082:14;35067:29;;35029:73;;;;:::o;35108:147::-;;35246:3;35231:18;;35221:34;;;;:::o;35261:169::-;;35379:6;35374:3;35367:19;35419:4;35414:3;35410:14;35395:29;;35357:73;;;;:::o;35436:148::-;;35575:3;35560:18;;35550:34;;;;:::o;35590:96::-;;35656:24;35674:5;35656:24;:::i;:::-;35645:35;;35635:51;;;:::o;35692:104::-;;35766:24;35784:5;35766:24;:::i;:::-;35755:35;;35745:51;;;:::o;35802:90::-;;35879:5;35872:13;35865:21;35854:32;;35844:48;;;:::o;35898:149::-;;35974:66;35967:5;35963:78;35952:89;;35942:105;;;:::o;36053:126::-;;36130:42;36123:5;36119:54;36108:65;;36098:81;;;:::o;36185:77::-;;36251:5;36240:16;;36230:32;;;:::o;36268:154::-;36352:6;36347:3;36342;36329:30;36414:1;36405:6;36400:3;36396:16;36389:27;36319:103;;;:::o;36428:307::-;36496:1;36506:113;36520:6;36517:1;36514:13;36506:113;;;36605:1;36600:3;36596:11;36590:18;36586:1;36581:3;36577:11;36570:39;36542:2;36539:1;36535:10;36530:15;;36506:113;;;36637:6;36634:1;36631:13;36628:2;;;36717:1;36708:6;36703:3;36699:16;36692:27;36628:2;36477:258;;;;:::o;36741:48::-;36774:9;36795:102;;36887:2;36883:7;36878:2;36871:5;36867:14;36863:28;36853:38;;36843:54;;;:::o;36903:122::-;36976:24;36994:5;36976:24;:::i;:::-;36969:5;36966:35;36956:2;;37015:1;37012;37005:12;36956:2;36946:79;:::o;37031:116::-;37101:21;37116:5;37101:21;:::i;:::-;37094:5;37091:32;37081:2;;37137:1;37134;37127:12;37081:2;37071:76;:::o;37153:120::-;37225:23;37242:5;37225:23;:::i;:::-;37218:5;37215:34;37205:2;;37263:1;37260;37253:12;37205:2;37195:78;:::o;37279:122::-;37352:24;37370:5;37352:24;:::i;:::-;37345:5;37342:35;37332:2;;37391:1;37388;37381:12;37332:2;37322:79;:::o

Swarm Source

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