ETH Price: $3,485.65 (+3.39%)
Gas: 4 Gwei

Token

Infinity Frogs (IFROGS)
 

Overview

Max Total Supply

10,000 IFROGS

Holders

3,287

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
3 IFROGS
0x19be0e413efdfaac8e3865d67c34be29e398ae8c
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

10K randomly generated clowns and hand-drawn frogs.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
InfinityFrogs

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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



// Infinity Frogs Contract start here. This is a standard ERC-721 contract.

pragma solidity ^0.7.0;
pragma abicoder v2;

contract InfinityFrogs is ERC721, Ownable {

    using SafeMath for uint256;

    string public FROG_PROVENANCE = ""; // IPFS URL WILL BE ADDED WHEN FROGS ARE ALL SOLD OUT

    string public LICENSE_TEXT = ""; // IT IS WHAT IT SAYS

    bool licenseLocked = false; // TEAM CAN'T EDIT THE LICENSE AFTER THIS GETS TRUE

    uint256 public constant frogPrice = 80000000000000000; // 0.08 ETH

    uint public constant maxFrogPurchase = 20;

    uint256 public constant MAX_FROGS = 10000;

    bool public saleIsActive = false;

    mapping(uint => string) public frogNames;

    // Reserve 100 FROGS for giveaways, team and marketing
    uint public frogReserve = 100;

    event frogNameChange(address _by, uint _tokenId, string _name);

    event licenseisLocked(string _licenseText);

    constructor() ERC721("Infinity Frogs", "IFROGS") { }

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

    function reserveFrogs(address _to, uint256 _reserveAmount) public onlyOwner {
        uint supply = totalSupply();
        require(_reserveAmount > 0 && _reserveAmount <= frogReserve, "Not enough reserve left for team");
        for (uint i = 0; i < _reserveAmount; i++) {
            _safeMint(_to, supply + i);
        }
        frogReserve = frogReserve.sub(_reserveAmount);
    }


    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        FROG_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;
        }
    }

    // Returns the license for tokens
    function tokenLicense(uint _id) public view returns(string memory) {
        require(_id < totalSupply(), "CHOOSE A FROG WITHIN RANGE");
        return LICENSE_TEXT;
    }

    // Locks the license to prevent further changes
    function lockLicense() public onlyOwner {
        licenseLocked =  true;
        emit licenseisLocked(LICENSE_TEXT);
    }

    // Change the license
    function changeLicense(string memory _license) public onlyOwner {
        require(licenseLocked == false, "License already locked");
        LICENSE_TEXT = _license;
    }


    function mintFrog(uint numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint a Frog");
        require(numberOfTokens > 0 && numberOfTokens <= maxFrogPurchase, "Can only mint 20 Frogs at a time");
        require(totalSupply().add(numberOfTokens) <= MAX_FROGS, "Purchase would exceed max supply of Frogs");
        require(msg.value >= frogPrice.mul(numberOfTokens), "Ether value sent is not correct");

        for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = totalSupply();
            if (totalSupply() < MAX_FROGS) {
                _safeMint(msg.sender, mintIndex);
            }
        }

    }



    function viewFrogName(uint _tokenId) public view returns( string memory ){
        require( _tokenId < totalSupply(), "Choose a Frog within range" );
        return frogNames[_tokenId];
    }


    // GET ALL FROGS OF A WALLET AS AN ARRAY OF STRINGS. WOULD BE BETTER MAYBE IF IT RETURNED A STRUCT WITH ID-NAME MATCH
    function frogNamesOfOwner(address _owner) external view returns(string[] memory ) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            return new string[](0);
        } else {
            string[] memory result = new string[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = frogNames[ tokenOfOwnerByIndex(_owner, index) ] ;
            }
            return result;
        }
    }

}

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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_by","type":"address"},{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"_name","type":"string"}],"name":"frogNameChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_licenseText","type":"string"}],"name":"licenseisLocked","type":"event"},{"inputs":[],"name":"FROG_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LICENSE_TEXT","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FROGS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_license","type":"string"}],"name":"changeLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"frogNames","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"frogNamesOfOwner","outputs":[{"internalType":"string[]","name":"","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"frogPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"frogReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"lockLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxFrogPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintFrog","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"reserveFrogs","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":"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":"uint256","name":"_id","type":"uint256"}],"name":"tokenLicense","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"viewFrogName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600b90805190602001906200002b92919062000334565b5060405180602001604052806000815250600c90805190602001906200005392919062000334565b506000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506064600f553480156200009c57600080fd5b506040518060400160405280600e81526020017f496e66696e6974792046726f67730000000000000000000000000000000000008152506040518060400160405280600681526020017f4946524f47530000000000000000000000000000000000000000000000000000815250620001216301ffc9a760e01b6200025460201b60201c565b81600690805190602001906200013992919062000334565b5080600790805190602001906200015292919062000334565b506200016b6380ac58cd60e01b6200025460201b60201c565b62000183635b5e139f60e01b6200025460201b60201c565b6200019b63780e9d6360e01b6200025460201b60201c565b50506000620001af6200032c60201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200045f565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620002c0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b7906200042c565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200036c5760008555620003b8565b82601f106200038757805160ff1916838001178555620003b8565b82800160010185558215620003b8579182015b82811115620003b75782518255916020019190600101906200039a565b5b509050620003c79190620003cb565b5090565b5b80821115620003e6576000816000905550600101620003cc565b5090565b6000620003f9601c836200044e565b91507f4552433136353a20696e76616c696420696e74657266616365206964000000006000830152602082019050919050565b600060208201905081810360008301526200044781620003ea565b9050919050565b600082825260208201905092915050565b614e9f806200046f6000396000f3fe60806040526004361061023b5760003560e01c8063715018a61161012e578063b88d4fde116100ab578063da6ac1bf1161006f578063da6ac1bf14610888578063e985e9c5146108b3578063eb8d2444146108f0578063f2fde38b1461091b578063fa54374c146109445761023b565b8063b88d4fde146107a3578063bf4702fc146107cc578063c1eb8166146107e3578063c87b56dd1461080e578063d9b137b21461084b5761023b565b80639c3e72bd116100f25780639c3e72bd146106ac5780639f32eb0c146106d7578063a22cb46514610714578063ad0e5f421461073d578063b09904b51461077a5761023b565b8063715018a6146105c55780638462151c146105dc5780638da5cb5b1461061957806392c752bb1461064457806395d89b41146106815761023b565b806334918dfd116101bc5780635aabb855116101805780635aabb855146104d95780636352211e146104f55780636c0360eb146105325780636c9dfc541461055d57806370a08231146105885761023b565b806334918dfd1461041c5780633ccfd60b1461043357806342842e0e1461044a5780634f6ccce71461047357806355f804b3146104b05761023b565b806318160ddd1161020357806318160ddd146103375780631debda611461036257806323b872dd1461038d5780632af2d1fe146103b65780632f745c59146103df5761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e5578063109695231461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613898565b61096f565b6040516102749190614726565b60405180910390f35b34801561028957600080fd5b506102926109d6565b60405161029f9190614741565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca919061392b565b610a78565b6040516102dc919061467b565b60405180910390f35b3480156102f157600080fd5b5061030c6004803603810190610307919061385c565b610afd565b005b34801561031a57600080fd5b50610335600480360381019061033091906138ea565b610c15565b005b34801561034357600080fd5b5061034c610cab565b6040516103599190614b45565b60405180910390f35b34801561036e57600080fd5b50610377610cbc565b6040516103849190614b45565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af9190613756565b610cc8565b005b3480156103c257600080fd5b506103dd60048036038101906103d8919061385c565b610d28565b005b3480156103eb57600080fd5b506104066004803603810190610401919061385c565b610e46565b6040516104139190614b45565b60405180910390f35b34801561042857600080fd5b50610431610ea1565b005b34801561043f57600080fd5b50610448610f49565b005b34801561045657600080fd5b50610471600480360381019061046c9190613756565b611014565b005b34801561047f57600080fd5b5061049a6004803603810190610495919061392b565b611034565b6040516104a79190614b45565b60405180910390f35b3480156104bc57600080fd5b506104d760048036038101906104d291906138ea565b611057565b005b6104f360048036038101906104ee919061392b565b6110df565b005b34801561050157600080fd5b5061051c6004803603810190610517919061392b565b61127e565b604051610529919061467b565b60405180910390f35b34801561053e57600080fd5b506105476112b5565b6040516105549190614741565b60405180910390f35b34801561056957600080fd5b50610572611357565b60405161057f9190614b45565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa91906136f1565b61135d565b6040516105bc9190614b45565b60405180910390f35b3480156105d157600080fd5b506105da61141c565b005b3480156105e857600080fd5b5061060360048036038101906105fe91906136f1565b611559565b6040516106109190614704565b60405180910390f35b34801561062557600080fd5b5061062e611652565b60405161063b919061467b565b60405180910390f35b34801561065057600080fd5b5061066b6004803603810190610666919061392b565b61167c565b6040516106789190614741565b60405180910390f35b34801561068d57600080fd5b5061069661177a565b6040516106a39190614741565b60405180910390f35b3480156106b857600080fd5b506106c161181c565b6040516106ce9190614741565b60405180910390f35b3480156106e357600080fd5b506106fe60048036038101906106f9919061392b565b6118ba565b60405161070b9190614741565b60405180910390f35b34801561072057600080fd5b5061073b60048036038101906107369190613820565b61196a565b005b34801561074957600080fd5b50610764600480360381019061075f91906136f1565b611aeb565b60405161077191906146e2565b60405180910390f35b34801561078657600080fd5b506107a1600480360381019061079c91906138ea565b611c98565b005b3480156107af57600080fd5b506107ca60048036038101906107c591906137a5565b611d84565b005b3480156107d857600080fd5b506107e1611de6565b005b3480156107ef57600080fd5b506107f8611eb7565b6040516108059190614741565b60405180910390f35b34801561081a57600080fd5b506108356004803603810190610830919061392b565b611f55565b6040516108429190614741565b60405180910390f35b34801561085757600080fd5b50610872600480360381019061086d919061392b565b6120d8565b60405161087f9190614741565b60405180910390f35b34801561089457600080fd5b5061089d6121c5565b6040516108aa9190614b45565b60405180910390f35b3480156108bf57600080fd5b506108da60048036038101906108d5919061371a565b6121ca565b6040516108e79190614726565b60405180910390f35b3480156108fc57600080fd5b5061090561225e565b6040516109129190614726565b60405180910390f35b34801561092757600080fd5b50610942600480360381019061093d91906136f1565b612271565b005b34801561095057600080fd5b5061095961241d565b6040516109669190614b45565b60405180910390f35b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610a6e5780601f10610a4357610100808354040283529160200191610a6e565b820191906000526020600020905b815481529060010190602001808311610a5157829003601f168201915b5050505050905090565b6000610a8382612423565b610ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab9906149e5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b088261127e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7090614aa5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b98612440565b73ffffffffffffffffffffffffffffffffffffffff161480610bc75750610bc681610bc1612440565b6121ca565b5b610c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfd90614945565b60405180910390fd5b610c108383612448565b505050565b610c1d612440565b73ffffffffffffffffffffffffffffffffffffffff16610c3b611652565b73ffffffffffffffffffffffffffffffffffffffff1614610c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8890614a45565b60405180910390fd5b80600b9080519060200190610ca792919061350d565b5050565b6000610cb76002612501565b905090565b67011c37937e08000081565b610cd9610cd3612440565b82612516565b610d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0f90614b05565b60405180910390fd5b610d238383836125f4565b505050565b610d30612440565b73ffffffffffffffffffffffffffffffffffffffff16610d4e611652565b73ffffffffffffffffffffffffffffffffffffffff1614610da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9b90614a45565b60405180910390fd5b6000610dae610cab565b9050600082118015610dc25750600f548211155b610e01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df890614845565b60405180910390fd5b60005b82811015610e2557610e188482840161280b565b8080600101915050610e04565b50610e3b82600f5461282990919063ffffffff16565b600f81905550505050565b6000610e9982600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061287990919063ffffffff16565b905092915050565b610ea9612440565b73ffffffffffffffffffffffffffffffffffffffff16610ec7611652565b73ffffffffffffffffffffffffffffffffffffffff1614610f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1490614a45565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b610f51612440565b73ffffffffffffffffffffffffffffffffffffffff16610f6f611652565b73ffffffffffffffffffffffffffffffffffffffff1614610fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbc90614a45565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611010573d6000803e3d6000fd5b5050565b61102f83838360405180602001604052806000815250611d84565b505050565b60008061104b83600261289390919063ffffffff16565b50905080915050919050565b61105f612440565b73ffffffffffffffffffffffffffffffffffffffff1661107d611652565b73ffffffffffffffffffffffffffffffffffffffff16146110d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ca90614a45565b60405180910390fd5b6110dc816128bf565b50565b600d60019054906101000a900460ff1661112e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112590614ac5565b60405180910390fd5b60008111801561113f575060148111155b61117e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117590614865565b60405180910390fd5b61271061119b8261118d610cab565b6128d990919063ffffffff16565b11156111dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d390614785565b60405180910390fd5b6111f78167011c37937e08000061292e90919063ffffffff16565b341015611239576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611230906148c5565b60405180910390fd5b60005b8181101561127a57600061124e610cab565b905061271061125b610cab565b101561126c5761126b338261280b565b5b50808060010191505061123c565b5050565b60006112ae82604051806060016040528060298152602001614e4160299139600261299e9092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561134d5780601f106113225761010080835404028352916020019161134d565b820191906000526020600020905b81548152906001019060200180831161133057829003601f168201915b5050505050905090565b600f5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c590614965565b60405180910390fd5b611415600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206129bd565b9050919050565b611424612440565b73ffffffffffffffffffffffffffffffffffffffff16611442611652565b73ffffffffffffffffffffffffffffffffffffffff1614611498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148f90614a45565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b606060006115668361135d565b905060008114156115c157600067ffffffffffffffff8111801561158957600080fd5b506040519080825280602002602001820160405280156115b85781602001602082028036833780820191505090505b5091505061164d565b60008167ffffffffffffffff811180156115da57600080fd5b506040519080825280602002602001820160405280156116095781602001602082028036833780820191505090505b50905060005b82811015611646576116218582610e46565b82828151811061162d57fe5b602002602001018181525050808060010191505061160f565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060611686610cab565b82106116c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116be90614a05565b60405180910390fd5b600e60008381526020019081526020016000208054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561176e5780601f106117435761010080835404028352916020019161176e565b820191906000526020600020905b81548152906001019060200180831161175157829003601f168201915b50505050509050919050565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118125780601f106117e757610100808354040283529160200191611812565b820191906000526020600020905b8154815290600101906020018083116117f557829003601f168201915b5050505050905090565b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118b25780601f10611887576101008083540402835291602001916118b2565b820191906000526020600020905b81548152906001019060200180831161189557829003601f168201915b505050505081565b600e6020528060005260406000206000915090508054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156119625780601f1061193757610100808354040283529160200191611962565b820191906000526020600020905b81548152906001019060200180831161194557829003601f168201915b505050505081565b611972612440565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d7906148a5565b60405180910390fd5b80600560006119ed612440565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a9a612440565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611adf9190614726565b60405180910390a35050565b60606000611af88361135d565b90506000811415611b5857600067ffffffffffffffff81118015611b1b57600080fd5b50604051908082528060200260200182016040528015611b4f57816020015b6060815260200190600190039081611b3a5790505b50915050611c93565b60008167ffffffffffffffff81118015611b7157600080fd5b50604051908082528060200260200182016040528015611ba557816020015b6060815260200190600190039081611b905790505b50905060005b82811015611c8c57600e6000611bc18784610e46565b81526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611c635780601f10611c3857610100808354040283529160200191611c63565b820191906000526020600020905b815481529060010190602001808311611c4657829003601f168201915b5050505050828281518110611c7457fe5b60200260200101819052508080600101915050611bab565b8193505050505b919050565b611ca0612440565b73ffffffffffffffffffffffffffffffffffffffff16611cbe611652565b73ffffffffffffffffffffffffffffffffffffffff1614611d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0b90614a45565b60405180910390fd5b60001515600d60009054906101000a900460ff16151514611d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6190614ae5565b60405180910390fd5b80600c9080519060200190611d8092919061350d565b5050565b611d95611d8f612440565b83612516565b611dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcb90614b05565b60405180910390fd5b611de0848484846129d2565b50505050565b611dee612440565b73ffffffffffffffffffffffffffffffffffffffff16611e0c611652565b73ffffffffffffffffffffffffffffffffffffffff1614611e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5990614a45565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055507f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0600c604051611ead9190614763565b60405180910390a1565b600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611f4d5780601f10611f2257610100808354040283529160200191611f4d565b820191906000526020600020905b815481529060010190602001808311611f3057829003601f168201915b505050505081565b6060611f6082612423565b611f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9690614a85565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156120485780601f1061201d57610100808354040283529160200191612048565b820191906000526020600020905b81548152906001019060200180831161202b57829003601f168201915b5050505050905060006120596112b5565b905060008151141561206f5781925050506120d3565b6000825111156120a457808260405160200161208c929190614657565b604051602081830303815290604052925050506120d3565b806120ae85612a2e565b6040516020016120bf929190614657565b604051602081830303815290604052925050505b919050565b60606120e2610cab565b8210612123576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211a90614a25565b60405180910390fd5b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156121b95780601f1061218e576101008083540402835291602001916121b9565b820191906000526020600020905b81548152906001019060200180831161219c57829003601f168201915b50505050509050919050565b601481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60019054906101000a900460ff1681565b612279612440565b73ffffffffffffffffffffffffffffffffffffffff16612297611652565b73ffffffffffffffffffffffffffffffffffffffff16146122ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e490614a45565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561235d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612354906147e5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61271081565b6000612439826002612b7590919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166124bb8361127e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061250f82600001612b8f565b9050919050565b600061252182612423565b612560576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255790614925565b60405180910390fd5b600061256b8361127e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806125da57508373ffffffffffffffffffffffffffffffffffffffff166125c284610a78565b73ffffffffffffffffffffffffffffffffffffffff16145b806125eb57506125ea81856121ca565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126148261127e565b73ffffffffffffffffffffffffffffffffffffffff161461266a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266190614a65565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d190614885565b60405180910390fd5b6126e5838383612ba0565b6126f0600082612448565b61274181600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612ba590919063ffffffff16565b5061279381600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612bbf90919063ffffffff16565b506127aa81836002612bd99092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612825828260405180602001604052806000815250612c0e565b5050565b60008282111561286e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612865906148e5565b60405180910390fd5b818303905092915050565b60006128888360000183612c69565b60001c905092915050565b6000806000806128a68660000186612cd6565b915091508160001c8160001c9350935050509250929050565b80600990805190602001906128d592919061350d565b5050565b600080828401905083811015612924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291b90614825565b60405180910390fd5b8091505092915050565b6000808314156129415760009050612998565b600082840290508284828161295257fe5b0414612993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298a906149c5565b60405180910390fd5b809150505b92915050565b60006129b1846000018460001b84612d59565b60001c90509392505050565b60006129cb82600001612dea565b9050919050565b6129dd8484846125f4565b6129e984848484612dfb565b612a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1f906147c5565b60405180910390fd5b50505050565b60606000821415612a76576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b70565b600082905060005b60008214612aa0578080600101915050600a8281612a9857fe5b049150612a7e565b60008167ffffffffffffffff81118015612ab957600080fd5b506040519080825280601f01601f191660200182016040528015612aec5781602001600182028036833780820191505090505b50905060006001830390508593505b60008414612b6857600a8481612b0d57fe5b0660300160f81b82828060019003935081518110612b2757fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481612b6057fe5b049350612afb565b819450505050505b919050565b6000612b87836000018360001b612f5f565b905092915050565b600081600001805490509050919050565b505050565b6000612bb7836000018360001b612f82565b905092915050565b6000612bd1836000018360001b61306a565b905092915050565b6000612c05846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b6130da565b90509392505050565b612c1883836131b6565b612c256000848484612dfb565b612c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5b906147c5565b60405180910390fd5b505050565b600081836000018054905011612cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cab906147a5565b60405180910390fd5b826000018281548110612cc357fe5b9060005260206000200154905092915050565b60008082846000018054905011612d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1990614985565b60405180910390fd5b6000846000018481548110612d3357fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db29190614741565b60405180910390fd5b50846000016001820381548110612dce57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b6000612e1c8473ffffffffffffffffffffffffffffffffffffffff16613344565b612e295760019050612f57565b6000612ef063150b7a0260e01b612e3e612440565b888787604051602401612e549493929190614696565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614e0f603291398773ffffffffffffffffffffffffffffffffffffffff166133579092919063ffffffff16565b9050600081806020019051810190612f0891906138c1565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b6000808360010160008481526020019081526020016000205490506000811461305e5760006001820390506000600186600001805490500390506000866000018281548110612fcd57fe5b9060005260206000200154905080876000018481548110612fea57fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061302257fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050613064565b60009150505b92915050565b6000613076838361336f565b6130cf5782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506130d4565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415613181578460000160405180604001604052808681526020018581525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010155505084600001805490508560010160008681526020019081526020016000208190555060019150506131af565b8285600001600183038154811061319457fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321d906149a5565b60405180910390fd5b61322f81612423565b1561326f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161326690614805565b60405180910390fd5b61327b60008383612ba0565b6132cc81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612bbf90919063ffffffff16565b506132e381836002612bd99092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606133668484600085613392565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b6060824710156133d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ce90614905565b60405180910390fd5b6133e085613344565b61341f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341690614b25565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516134489190614640565b60006040518083038185875af1925050503d8060008114613485576040519150601f19603f3d011682016040523d82523d6000602084013e61348a565b606091505b509150915061349a8282866134a6565b92505050949350505050565b606083156134b657829050613506565b6000835111156134c95782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134fd9190614741565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282613543576000855561358a565b82601f1061355c57805160ff191683800117855561358a565b8280016001018555821561358a579182015b8281111561358957825182559160200191906001019061356e565b5b509050613597919061359b565b5090565b5b808211156135b457600081600090555060010161359c565b5090565b60006135cb6135c684614b91565b614b60565b9050828152602081018484840111156135e357600080fd5b6135ee848285614d5d565b509392505050565b600061360961360484614bc1565b614b60565b90508281526020810184848401111561362157600080fd5b61362c848285614d5d565b509392505050565b60008135905061364381614db2565b92915050565b60008135905061365881614dc9565b92915050565b60008135905061366d81614de0565b92915050565b60008151905061368281614de0565b92915050565b600082601f83011261369957600080fd5b81356136a98482602086016135b8565b91505092915050565b600082601f8301126136c357600080fd5b81356136d38482602086016135f6565b91505092915050565b6000813590506136eb81614df7565b92915050565b60006020828403121561370357600080fd5b600061371184828501613634565b91505092915050565b6000806040838503121561372d57600080fd5b600061373b85828601613634565b925050602061374c85828601613634565b9150509250929050565b60008060006060848603121561376b57600080fd5b600061377986828701613634565b935050602061378a86828701613634565b925050604061379b868287016136dc565b9150509250925092565b600080600080608085870312156137bb57600080fd5b60006137c987828801613634565b94505060206137da87828801613634565b93505060406137eb878288016136dc565b925050606085013567ffffffffffffffff81111561380857600080fd5b61381487828801613688565b91505092959194509250565b6000806040838503121561383357600080fd5b600061384185828601613634565b925050602061385285828601613649565b9150509250929050565b6000806040838503121561386f57600080fd5b600061387d85828601613634565b925050602061388e858286016136dc565b9150509250929050565b6000602082840312156138aa57600080fd5b60006138b88482850161365e565b91505092915050565b6000602082840312156138d357600080fd5b60006138e184828501613673565b91505092915050565b6000602082840312156138fc57600080fd5b600082013567ffffffffffffffff81111561391657600080fd5b613922848285016136b2565b91505092915050565b60006020828403121561393d57600080fd5b600061394b848285016136dc565b91505092915050565b60006139608383613aea565b905092915050565b60006139748383614622565b60208301905092915050565b61398981614ce9565b82525050565b61399881614cd7565b82525050565b60006139a982614c26565b6139b38185614c6c565b9350836020820285016139c585614bf1565b8060005b85811015613a0157848403895281516139e28582613954565b94506139ed83614c52565b925060208a019950506001810190506139c9565b50829750879550505050505092915050565b6000613a1e82614c31565b613a288185614c7d565b9350613a3383614c01565b8060005b83811015613a64578151613a4b8882613968565b9750613a5683614c5f565b925050600181019050613a37565b5085935050505092915050565b613a7a81614cfb565b82525050565b6000613a8b82614c3c565b613a958185614c8e565b9350613aa5818560208601614d6c565b613aae81614da1565b840191505092915050565b6000613ac482614c3c565b613ace8185614c9f565b9350613ade818560208601614d6c565b80840191505092915050565b6000613af582614c47565b613aff8185614caa565b9350613b0f818560208601614d6c565b613b1881614da1565b840191505092915050565b6000613b2e82614c47565b613b388185614cbb565b9350613b48818560208601614d6c565b613b5181614da1565b840191505092915050565b6000613b6782614c47565b613b718185614ccc565b9350613b81818560208601614d6c565b80840191505092915050565b600081546001811660008114613baa5760018114613bd057613c14565b607f6002830416613bbb8187614cbb565b955060ff198316865260208601935050613c14565b60028204613bde8187614cbb565b9550613be985614c11565b60005b82811015613c0b57815481890152600182019150602081019050613bec565b80880195505050505b505092915050565b6000613c29602983614cbb565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f662046726f677300000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c8f602283614cbb565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cf5603283614cbb565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613d5b602683614cbb565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613dc1601c83614cbb565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613e01601b83614cbb565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000613e41602083614cbb565b91507f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d6000830152602082019050919050565b6000613e81602083614cbb565b91507f43616e206f6e6c79206d696e742032302046726f677320617420612074696d656000830152602082019050919050565b6000613ec1602483614cbb565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f27601983614cbb565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613f67601f83614cbb565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000613fa7601e83614cbb565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000613fe7602683614cbb565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061404d602c83614cbb565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006140b3603883614cbb565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614119602a83614cbb565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061417f602283614cbb565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006141e5602083614cbb565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614225602183614cbb565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061428b602c83614cbb565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006142f1601a83614cbb565b91507f43686f6f736520612046726f672077697468696e2072616e67650000000000006000830152602082019050919050565b6000614331601a83614cbb565b91507f43484f4f534520412046524f472057495448494e2052414e47450000000000006000830152602082019050919050565b6000614371602083614cbb565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006143b1602983614cbb565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614417602f83614cbb565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061447d602183614cbb565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006144e3602283614cbb565b91507f53616c65206d7573742062652061637469766520746f206d696e74206120467260008301527f6f670000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614549601683614cbb565b91507f4c6963656e736520616c7265616479206c6f636b6564000000000000000000006000830152602082019050919050565b6000614589603183614cbb565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006145ef601d83614cbb565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b61462b81614d53565b82525050565b61463a81614d53565b82525050565b600061464c8284613ab9565b915081905092915050565b60006146638285613b5c565b915061466f8284613b5c565b91508190509392505050565b6000602082019050614690600083018461398f565b92915050565b60006080820190506146ab6000830187613980565b6146b8602083018661398f565b6146c56040830185614631565b81810360608301526146d78184613a80565b905095945050505050565b600060208201905081810360008301526146fc818461399e565b905092915050565b6000602082019050818103600083015261471e8184613a13565b905092915050565b600060208201905061473b6000830184613a71565b92915050565b6000602082019050818103600083015261475b8184613b23565b905092915050565b6000602082019050818103600083015261477d8184613b8d565b905092915050565b6000602082019050818103600083015261479e81613c1c565b9050919050565b600060208201905081810360008301526147be81613c82565b9050919050565b600060208201905081810360008301526147de81613ce8565b9050919050565b600060208201905081810360008301526147fe81613d4e565b9050919050565b6000602082019050818103600083015261481e81613db4565b9050919050565b6000602082019050818103600083015261483e81613df4565b9050919050565b6000602082019050818103600083015261485e81613e34565b9050919050565b6000602082019050818103600083015261487e81613e74565b9050919050565b6000602082019050818103600083015261489e81613eb4565b9050919050565b600060208201905081810360008301526148be81613f1a565b9050919050565b600060208201905081810360008301526148de81613f5a565b9050919050565b600060208201905081810360008301526148fe81613f9a565b9050919050565b6000602082019050818103600083015261491e81613fda565b9050919050565b6000602082019050818103600083015261493e81614040565b9050919050565b6000602082019050818103600083015261495e816140a6565b9050919050565b6000602082019050818103600083015261497e8161410c565b9050919050565b6000602082019050818103600083015261499e81614172565b9050919050565b600060208201905081810360008301526149be816141d8565b9050919050565b600060208201905081810360008301526149de81614218565b9050919050565b600060208201905081810360008301526149fe8161427e565b9050919050565b60006020820190508181036000830152614a1e816142e4565b9050919050565b60006020820190508181036000830152614a3e81614324565b9050919050565b60006020820190508181036000830152614a5e81614364565b9050919050565b60006020820190508181036000830152614a7e816143a4565b9050919050565b60006020820190508181036000830152614a9e8161440a565b9050919050565b60006020820190508181036000830152614abe81614470565b9050919050565b60006020820190508181036000830152614ade816144d6565b9050919050565b60006020820190508181036000830152614afe8161453c565b9050919050565b60006020820190508181036000830152614b1e8161457c565b9050919050565b60006020820190508181036000830152614b3e816145e2565b9050919050565b6000602082019050614b5a6000830184614631565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614b8757614b86614d9f565b5b8060405250919050565b600067ffffffffffffffff821115614bac57614bab614d9f565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614bdc57614bdb614d9f565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614ce282614d33565b9050919050565b6000614cf482614d33565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614d8a578082015181840152602081019050614d6f565b83811115614d99576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b614dbb81614cd7565b8114614dc657600080fd5b50565b614dd281614cfb565b8114614ddd57600080fd5b50565b614de981614d07565b8114614df457600080fd5b50565b614e0081614d53565b8114614e0b57600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220424cdc4a55fba7d46bd8f344767895963468bcd5d874e231c8494864e28782a664736f6c63430007060033

Deployed Bytecode

0x60806040526004361061023b5760003560e01c8063715018a61161012e578063b88d4fde116100ab578063da6ac1bf1161006f578063da6ac1bf14610888578063e985e9c5146108b3578063eb8d2444146108f0578063f2fde38b1461091b578063fa54374c146109445761023b565b8063b88d4fde146107a3578063bf4702fc146107cc578063c1eb8166146107e3578063c87b56dd1461080e578063d9b137b21461084b5761023b565b80639c3e72bd116100f25780639c3e72bd146106ac5780639f32eb0c146106d7578063a22cb46514610714578063ad0e5f421461073d578063b09904b51461077a5761023b565b8063715018a6146105c55780638462151c146105dc5780638da5cb5b1461061957806392c752bb1461064457806395d89b41146106815761023b565b806334918dfd116101bc5780635aabb855116101805780635aabb855146104d95780636352211e146104f55780636c0360eb146105325780636c9dfc541461055d57806370a08231146105885761023b565b806334918dfd1461041c5780633ccfd60b1461043357806342842e0e1461044a5780634f6ccce71461047357806355f804b3146104b05761023b565b806318160ddd1161020357806318160ddd146103375780631debda611461036257806323b872dd1461038d5780632af2d1fe146103b65780632f745c59146103df5761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e5578063109695231461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613898565b61096f565b6040516102749190614726565b60405180910390f35b34801561028957600080fd5b506102926109d6565b60405161029f9190614741565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca919061392b565b610a78565b6040516102dc919061467b565b60405180910390f35b3480156102f157600080fd5b5061030c6004803603810190610307919061385c565b610afd565b005b34801561031a57600080fd5b50610335600480360381019061033091906138ea565b610c15565b005b34801561034357600080fd5b5061034c610cab565b6040516103599190614b45565b60405180910390f35b34801561036e57600080fd5b50610377610cbc565b6040516103849190614b45565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af9190613756565b610cc8565b005b3480156103c257600080fd5b506103dd60048036038101906103d8919061385c565b610d28565b005b3480156103eb57600080fd5b506104066004803603810190610401919061385c565b610e46565b6040516104139190614b45565b60405180910390f35b34801561042857600080fd5b50610431610ea1565b005b34801561043f57600080fd5b50610448610f49565b005b34801561045657600080fd5b50610471600480360381019061046c9190613756565b611014565b005b34801561047f57600080fd5b5061049a6004803603810190610495919061392b565b611034565b6040516104a79190614b45565b60405180910390f35b3480156104bc57600080fd5b506104d760048036038101906104d291906138ea565b611057565b005b6104f360048036038101906104ee919061392b565b6110df565b005b34801561050157600080fd5b5061051c6004803603810190610517919061392b565b61127e565b604051610529919061467b565b60405180910390f35b34801561053e57600080fd5b506105476112b5565b6040516105549190614741565b60405180910390f35b34801561056957600080fd5b50610572611357565b60405161057f9190614b45565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa91906136f1565b61135d565b6040516105bc9190614b45565b60405180910390f35b3480156105d157600080fd5b506105da61141c565b005b3480156105e857600080fd5b5061060360048036038101906105fe91906136f1565b611559565b6040516106109190614704565b60405180910390f35b34801561062557600080fd5b5061062e611652565b60405161063b919061467b565b60405180910390f35b34801561065057600080fd5b5061066b6004803603810190610666919061392b565b61167c565b6040516106789190614741565b60405180910390f35b34801561068d57600080fd5b5061069661177a565b6040516106a39190614741565b60405180910390f35b3480156106b857600080fd5b506106c161181c565b6040516106ce9190614741565b60405180910390f35b3480156106e357600080fd5b506106fe60048036038101906106f9919061392b565b6118ba565b60405161070b9190614741565b60405180910390f35b34801561072057600080fd5b5061073b60048036038101906107369190613820565b61196a565b005b34801561074957600080fd5b50610764600480360381019061075f91906136f1565b611aeb565b60405161077191906146e2565b60405180910390f35b34801561078657600080fd5b506107a1600480360381019061079c91906138ea565b611c98565b005b3480156107af57600080fd5b506107ca60048036038101906107c591906137a5565b611d84565b005b3480156107d857600080fd5b506107e1611de6565b005b3480156107ef57600080fd5b506107f8611eb7565b6040516108059190614741565b60405180910390f35b34801561081a57600080fd5b506108356004803603810190610830919061392b565b611f55565b6040516108429190614741565b60405180910390f35b34801561085757600080fd5b50610872600480360381019061086d919061392b565b6120d8565b60405161087f9190614741565b60405180910390f35b34801561089457600080fd5b5061089d6121c5565b6040516108aa9190614b45565b60405180910390f35b3480156108bf57600080fd5b506108da60048036038101906108d5919061371a565b6121ca565b6040516108e79190614726565b60405180910390f35b3480156108fc57600080fd5b5061090561225e565b6040516109129190614726565b60405180910390f35b34801561092757600080fd5b50610942600480360381019061093d91906136f1565b612271565b005b34801561095057600080fd5b5061095961241d565b6040516109669190614b45565b60405180910390f35b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610a6e5780601f10610a4357610100808354040283529160200191610a6e565b820191906000526020600020905b815481529060010190602001808311610a5157829003601f168201915b5050505050905090565b6000610a8382612423565b610ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab9906149e5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b088261127e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7090614aa5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b98612440565b73ffffffffffffffffffffffffffffffffffffffff161480610bc75750610bc681610bc1612440565b6121ca565b5b610c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfd90614945565b60405180910390fd5b610c108383612448565b505050565b610c1d612440565b73ffffffffffffffffffffffffffffffffffffffff16610c3b611652565b73ffffffffffffffffffffffffffffffffffffffff1614610c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8890614a45565b60405180910390fd5b80600b9080519060200190610ca792919061350d565b5050565b6000610cb76002612501565b905090565b67011c37937e08000081565b610cd9610cd3612440565b82612516565b610d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0f90614b05565b60405180910390fd5b610d238383836125f4565b505050565b610d30612440565b73ffffffffffffffffffffffffffffffffffffffff16610d4e611652565b73ffffffffffffffffffffffffffffffffffffffff1614610da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9b90614a45565b60405180910390fd5b6000610dae610cab565b9050600082118015610dc25750600f548211155b610e01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df890614845565b60405180910390fd5b60005b82811015610e2557610e188482840161280b565b8080600101915050610e04565b50610e3b82600f5461282990919063ffffffff16565b600f81905550505050565b6000610e9982600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061287990919063ffffffff16565b905092915050565b610ea9612440565b73ffffffffffffffffffffffffffffffffffffffff16610ec7611652565b73ffffffffffffffffffffffffffffffffffffffff1614610f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1490614a45565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b610f51612440565b73ffffffffffffffffffffffffffffffffffffffff16610f6f611652565b73ffffffffffffffffffffffffffffffffffffffff1614610fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbc90614a45565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611010573d6000803e3d6000fd5b5050565b61102f83838360405180602001604052806000815250611d84565b505050565b60008061104b83600261289390919063ffffffff16565b50905080915050919050565b61105f612440565b73ffffffffffffffffffffffffffffffffffffffff1661107d611652565b73ffffffffffffffffffffffffffffffffffffffff16146110d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ca90614a45565b60405180910390fd5b6110dc816128bf565b50565b600d60019054906101000a900460ff1661112e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112590614ac5565b60405180910390fd5b60008111801561113f575060148111155b61117e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117590614865565b60405180910390fd5b61271061119b8261118d610cab565b6128d990919063ffffffff16565b11156111dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d390614785565b60405180910390fd5b6111f78167011c37937e08000061292e90919063ffffffff16565b341015611239576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611230906148c5565b60405180910390fd5b60005b8181101561127a57600061124e610cab565b905061271061125b610cab565b101561126c5761126b338261280b565b5b50808060010191505061123c565b5050565b60006112ae82604051806060016040528060298152602001614e4160299139600261299e9092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561134d5780601f106113225761010080835404028352916020019161134d565b820191906000526020600020905b81548152906001019060200180831161133057829003601f168201915b5050505050905090565b600f5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c590614965565b60405180910390fd5b611415600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206129bd565b9050919050565b611424612440565b73ffffffffffffffffffffffffffffffffffffffff16611442611652565b73ffffffffffffffffffffffffffffffffffffffff1614611498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148f90614a45565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b606060006115668361135d565b905060008114156115c157600067ffffffffffffffff8111801561158957600080fd5b506040519080825280602002602001820160405280156115b85781602001602082028036833780820191505090505b5091505061164d565b60008167ffffffffffffffff811180156115da57600080fd5b506040519080825280602002602001820160405280156116095781602001602082028036833780820191505090505b50905060005b82811015611646576116218582610e46565b82828151811061162d57fe5b602002602001018181525050808060010191505061160f565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060611686610cab565b82106116c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116be90614a05565b60405180910390fd5b600e60008381526020019081526020016000208054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561176e5780601f106117435761010080835404028352916020019161176e565b820191906000526020600020905b81548152906001019060200180831161175157829003601f168201915b50505050509050919050565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118125780601f106117e757610100808354040283529160200191611812565b820191906000526020600020905b8154815290600101906020018083116117f557829003601f168201915b5050505050905090565b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118b25780601f10611887576101008083540402835291602001916118b2565b820191906000526020600020905b81548152906001019060200180831161189557829003601f168201915b505050505081565b600e6020528060005260406000206000915090508054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156119625780601f1061193757610100808354040283529160200191611962565b820191906000526020600020905b81548152906001019060200180831161194557829003601f168201915b505050505081565b611972612440565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d7906148a5565b60405180910390fd5b80600560006119ed612440565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a9a612440565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611adf9190614726565b60405180910390a35050565b60606000611af88361135d565b90506000811415611b5857600067ffffffffffffffff81118015611b1b57600080fd5b50604051908082528060200260200182016040528015611b4f57816020015b6060815260200190600190039081611b3a5790505b50915050611c93565b60008167ffffffffffffffff81118015611b7157600080fd5b50604051908082528060200260200182016040528015611ba557816020015b6060815260200190600190039081611b905790505b50905060005b82811015611c8c57600e6000611bc18784610e46565b81526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611c635780601f10611c3857610100808354040283529160200191611c63565b820191906000526020600020905b815481529060010190602001808311611c4657829003601f168201915b5050505050828281518110611c7457fe5b60200260200101819052508080600101915050611bab565b8193505050505b919050565b611ca0612440565b73ffffffffffffffffffffffffffffffffffffffff16611cbe611652565b73ffffffffffffffffffffffffffffffffffffffff1614611d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0b90614a45565b60405180910390fd5b60001515600d60009054906101000a900460ff16151514611d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6190614ae5565b60405180910390fd5b80600c9080519060200190611d8092919061350d565b5050565b611d95611d8f612440565b83612516565b611dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcb90614b05565b60405180910390fd5b611de0848484846129d2565b50505050565b611dee612440565b73ffffffffffffffffffffffffffffffffffffffff16611e0c611652565b73ffffffffffffffffffffffffffffffffffffffff1614611e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5990614a45565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055507f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0600c604051611ead9190614763565b60405180910390a1565b600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611f4d5780601f10611f2257610100808354040283529160200191611f4d565b820191906000526020600020905b815481529060010190602001808311611f3057829003601f168201915b505050505081565b6060611f6082612423565b611f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9690614a85565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156120485780601f1061201d57610100808354040283529160200191612048565b820191906000526020600020905b81548152906001019060200180831161202b57829003601f168201915b5050505050905060006120596112b5565b905060008151141561206f5781925050506120d3565b6000825111156120a457808260405160200161208c929190614657565b604051602081830303815290604052925050506120d3565b806120ae85612a2e565b6040516020016120bf929190614657565b604051602081830303815290604052925050505b919050565b60606120e2610cab565b8210612123576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211a90614a25565b60405180910390fd5b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156121b95780601f1061218e576101008083540402835291602001916121b9565b820191906000526020600020905b81548152906001019060200180831161219c57829003601f168201915b50505050509050919050565b601481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60019054906101000a900460ff1681565b612279612440565b73ffffffffffffffffffffffffffffffffffffffff16612297611652565b73ffffffffffffffffffffffffffffffffffffffff16146122ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e490614a45565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561235d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612354906147e5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61271081565b6000612439826002612b7590919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166124bb8361127e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061250f82600001612b8f565b9050919050565b600061252182612423565b612560576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255790614925565b60405180910390fd5b600061256b8361127e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806125da57508373ffffffffffffffffffffffffffffffffffffffff166125c284610a78565b73ffffffffffffffffffffffffffffffffffffffff16145b806125eb57506125ea81856121ca565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126148261127e565b73ffffffffffffffffffffffffffffffffffffffff161461266a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266190614a65565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d190614885565b60405180910390fd5b6126e5838383612ba0565b6126f0600082612448565b61274181600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612ba590919063ffffffff16565b5061279381600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612bbf90919063ffffffff16565b506127aa81836002612bd99092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612825828260405180602001604052806000815250612c0e565b5050565b60008282111561286e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612865906148e5565b60405180910390fd5b818303905092915050565b60006128888360000183612c69565b60001c905092915050565b6000806000806128a68660000186612cd6565b915091508160001c8160001c9350935050509250929050565b80600990805190602001906128d592919061350d565b5050565b600080828401905083811015612924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291b90614825565b60405180910390fd5b8091505092915050565b6000808314156129415760009050612998565b600082840290508284828161295257fe5b0414612993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298a906149c5565b60405180910390fd5b809150505b92915050565b60006129b1846000018460001b84612d59565b60001c90509392505050565b60006129cb82600001612dea565b9050919050565b6129dd8484846125f4565b6129e984848484612dfb565b612a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1f906147c5565b60405180910390fd5b50505050565b60606000821415612a76576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b70565b600082905060005b60008214612aa0578080600101915050600a8281612a9857fe5b049150612a7e565b60008167ffffffffffffffff81118015612ab957600080fd5b506040519080825280601f01601f191660200182016040528015612aec5781602001600182028036833780820191505090505b50905060006001830390508593505b60008414612b6857600a8481612b0d57fe5b0660300160f81b82828060019003935081518110612b2757fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481612b6057fe5b049350612afb565b819450505050505b919050565b6000612b87836000018360001b612f5f565b905092915050565b600081600001805490509050919050565b505050565b6000612bb7836000018360001b612f82565b905092915050565b6000612bd1836000018360001b61306a565b905092915050565b6000612c05846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b6130da565b90509392505050565b612c1883836131b6565b612c256000848484612dfb565b612c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5b906147c5565b60405180910390fd5b505050565b600081836000018054905011612cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cab906147a5565b60405180910390fd5b826000018281548110612cc357fe5b9060005260206000200154905092915050565b60008082846000018054905011612d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1990614985565b60405180910390fd5b6000846000018481548110612d3357fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db29190614741565b60405180910390fd5b50846000016001820381548110612dce57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b6000612e1c8473ffffffffffffffffffffffffffffffffffffffff16613344565b612e295760019050612f57565b6000612ef063150b7a0260e01b612e3e612440565b888787604051602401612e549493929190614696565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614e0f603291398773ffffffffffffffffffffffffffffffffffffffff166133579092919063ffffffff16565b9050600081806020019051810190612f0891906138c1565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b6000808360010160008481526020019081526020016000205490506000811461305e5760006001820390506000600186600001805490500390506000866000018281548110612fcd57fe5b9060005260206000200154905080876000018481548110612fea57fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061302257fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050613064565b60009150505b92915050565b6000613076838361336f565b6130cf5782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506130d4565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415613181578460000160405180604001604052808681526020018581525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010155505084600001805490508560010160008681526020019081526020016000208190555060019150506131af565b8285600001600183038154811061319457fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321d906149a5565b60405180910390fd5b61322f81612423565b1561326f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161326690614805565b60405180910390fd5b61327b60008383612ba0565b6132cc81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612bbf90919063ffffffff16565b506132e381836002612bd99092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606133668484600085613392565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b6060824710156133d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ce90614905565b60405180910390fd5b6133e085613344565b61341f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341690614b25565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516134489190614640565b60006040518083038185875af1925050503d8060008114613485576040519150601f19603f3d011682016040523d82523d6000602084013e61348a565b606091505b509150915061349a8282866134a6565b92505050949350505050565b606083156134b657829050613506565b6000835111156134c95782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134fd9190614741565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282613543576000855561358a565b82601f1061355c57805160ff191683800117855561358a565b8280016001018555821561358a579182015b8281111561358957825182559160200191906001019061356e565b5b509050613597919061359b565b5090565b5b808211156135b457600081600090555060010161359c565b5090565b60006135cb6135c684614b91565b614b60565b9050828152602081018484840111156135e357600080fd5b6135ee848285614d5d565b509392505050565b600061360961360484614bc1565b614b60565b90508281526020810184848401111561362157600080fd5b61362c848285614d5d565b509392505050565b60008135905061364381614db2565b92915050565b60008135905061365881614dc9565b92915050565b60008135905061366d81614de0565b92915050565b60008151905061368281614de0565b92915050565b600082601f83011261369957600080fd5b81356136a98482602086016135b8565b91505092915050565b600082601f8301126136c357600080fd5b81356136d38482602086016135f6565b91505092915050565b6000813590506136eb81614df7565b92915050565b60006020828403121561370357600080fd5b600061371184828501613634565b91505092915050565b6000806040838503121561372d57600080fd5b600061373b85828601613634565b925050602061374c85828601613634565b9150509250929050565b60008060006060848603121561376b57600080fd5b600061377986828701613634565b935050602061378a86828701613634565b925050604061379b868287016136dc565b9150509250925092565b600080600080608085870312156137bb57600080fd5b60006137c987828801613634565b94505060206137da87828801613634565b93505060406137eb878288016136dc565b925050606085013567ffffffffffffffff81111561380857600080fd5b61381487828801613688565b91505092959194509250565b6000806040838503121561383357600080fd5b600061384185828601613634565b925050602061385285828601613649565b9150509250929050565b6000806040838503121561386f57600080fd5b600061387d85828601613634565b925050602061388e858286016136dc565b9150509250929050565b6000602082840312156138aa57600080fd5b60006138b88482850161365e565b91505092915050565b6000602082840312156138d357600080fd5b60006138e184828501613673565b91505092915050565b6000602082840312156138fc57600080fd5b600082013567ffffffffffffffff81111561391657600080fd5b613922848285016136b2565b91505092915050565b60006020828403121561393d57600080fd5b600061394b848285016136dc565b91505092915050565b60006139608383613aea565b905092915050565b60006139748383614622565b60208301905092915050565b61398981614ce9565b82525050565b61399881614cd7565b82525050565b60006139a982614c26565b6139b38185614c6c565b9350836020820285016139c585614bf1565b8060005b85811015613a0157848403895281516139e28582613954565b94506139ed83614c52565b925060208a019950506001810190506139c9565b50829750879550505050505092915050565b6000613a1e82614c31565b613a288185614c7d565b9350613a3383614c01565b8060005b83811015613a64578151613a4b8882613968565b9750613a5683614c5f565b925050600181019050613a37565b5085935050505092915050565b613a7a81614cfb565b82525050565b6000613a8b82614c3c565b613a958185614c8e565b9350613aa5818560208601614d6c565b613aae81614da1565b840191505092915050565b6000613ac482614c3c565b613ace8185614c9f565b9350613ade818560208601614d6c565b80840191505092915050565b6000613af582614c47565b613aff8185614caa565b9350613b0f818560208601614d6c565b613b1881614da1565b840191505092915050565b6000613b2e82614c47565b613b388185614cbb565b9350613b48818560208601614d6c565b613b5181614da1565b840191505092915050565b6000613b6782614c47565b613b718185614ccc565b9350613b81818560208601614d6c565b80840191505092915050565b600081546001811660008114613baa5760018114613bd057613c14565b607f6002830416613bbb8187614cbb565b955060ff198316865260208601935050613c14565b60028204613bde8187614cbb565b9550613be985614c11565b60005b82811015613c0b57815481890152600182019150602081019050613bec565b80880195505050505b505092915050565b6000613c29602983614cbb565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f662046726f677300000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c8f602283614cbb565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cf5603283614cbb565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613d5b602683614cbb565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613dc1601c83614cbb565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613e01601b83614cbb565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000613e41602083614cbb565b91507f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d6000830152602082019050919050565b6000613e81602083614cbb565b91507f43616e206f6e6c79206d696e742032302046726f677320617420612074696d656000830152602082019050919050565b6000613ec1602483614cbb565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f27601983614cbb565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613f67601f83614cbb565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000613fa7601e83614cbb565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000613fe7602683614cbb565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061404d602c83614cbb565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006140b3603883614cbb565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614119602a83614cbb565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061417f602283614cbb565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006141e5602083614cbb565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614225602183614cbb565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061428b602c83614cbb565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006142f1601a83614cbb565b91507f43686f6f736520612046726f672077697468696e2072616e67650000000000006000830152602082019050919050565b6000614331601a83614cbb565b91507f43484f4f534520412046524f472057495448494e2052414e47450000000000006000830152602082019050919050565b6000614371602083614cbb565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006143b1602983614cbb565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614417602f83614cbb565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061447d602183614cbb565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006144e3602283614cbb565b91507f53616c65206d7573742062652061637469766520746f206d696e74206120467260008301527f6f670000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614549601683614cbb565b91507f4c6963656e736520616c7265616479206c6f636b6564000000000000000000006000830152602082019050919050565b6000614589603183614cbb565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006145ef601d83614cbb565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b61462b81614d53565b82525050565b61463a81614d53565b82525050565b600061464c8284613ab9565b915081905092915050565b60006146638285613b5c565b915061466f8284613b5c565b91508190509392505050565b6000602082019050614690600083018461398f565b92915050565b60006080820190506146ab6000830187613980565b6146b8602083018661398f565b6146c56040830185614631565b81810360608301526146d78184613a80565b905095945050505050565b600060208201905081810360008301526146fc818461399e565b905092915050565b6000602082019050818103600083015261471e8184613a13565b905092915050565b600060208201905061473b6000830184613a71565b92915050565b6000602082019050818103600083015261475b8184613b23565b905092915050565b6000602082019050818103600083015261477d8184613b8d565b905092915050565b6000602082019050818103600083015261479e81613c1c565b9050919050565b600060208201905081810360008301526147be81613c82565b9050919050565b600060208201905081810360008301526147de81613ce8565b9050919050565b600060208201905081810360008301526147fe81613d4e565b9050919050565b6000602082019050818103600083015261481e81613db4565b9050919050565b6000602082019050818103600083015261483e81613df4565b9050919050565b6000602082019050818103600083015261485e81613e34565b9050919050565b6000602082019050818103600083015261487e81613e74565b9050919050565b6000602082019050818103600083015261489e81613eb4565b9050919050565b600060208201905081810360008301526148be81613f1a565b9050919050565b600060208201905081810360008301526148de81613f5a565b9050919050565b600060208201905081810360008301526148fe81613f9a565b9050919050565b6000602082019050818103600083015261491e81613fda565b9050919050565b6000602082019050818103600083015261493e81614040565b9050919050565b6000602082019050818103600083015261495e816140a6565b9050919050565b6000602082019050818103600083015261497e8161410c565b9050919050565b6000602082019050818103600083015261499e81614172565b9050919050565b600060208201905081810360008301526149be816141d8565b9050919050565b600060208201905081810360008301526149de81614218565b9050919050565b600060208201905081810360008301526149fe8161427e565b9050919050565b60006020820190508181036000830152614a1e816142e4565b9050919050565b60006020820190508181036000830152614a3e81614324565b9050919050565b60006020820190508181036000830152614a5e81614364565b9050919050565b60006020820190508181036000830152614a7e816143a4565b9050919050565b60006020820190508181036000830152614a9e8161440a565b9050919050565b60006020820190508181036000830152614abe81614470565b9050919050565b60006020820190508181036000830152614ade816144d6565b9050919050565b60006020820190508181036000830152614afe8161453c565b9050919050565b60006020820190508181036000830152614b1e8161457c565b9050919050565b60006020820190508181036000830152614b3e816145e2565b9050919050565b6000602082019050614b5a6000830184614631565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614b8757614b86614d9f565b5b8060405250919050565b600067ffffffffffffffff821115614bac57614bab614d9f565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614bdc57614bdb614d9f565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614ce282614d33565b9050919050565b6000614cf482614d33565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614d8a578082015181840152602081019050614d6f565b83811115614d99576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b614dbb81614cd7565b8114614dc657600080fd5b50565b614dd281614cfb565b8114614ddd57600080fd5b50565b614de981614d07565b8114614df457600080fd5b50565b614e0081614d53565b8114614e0b57600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220424cdc4a55fba7d46bd8f344767895963468bcd5d874e231c8494864e28782a664736f6c63430007060033

Deployed Bytecode Sourcemap

66915:4494:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10235:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51519:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54305:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53835:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68330:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53313:211;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67247:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55195:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67930:390;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53075:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68572:89;;;;;;;;;;;;;:::i;:::-;;67791:131;;;;;;;;;;;;;:::i;:::-;;55571:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53601:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68463:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69837:675;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51275:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52894:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67571:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50992:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66230:148;;;;;;;;;;;;;:::i;:::-;;68671:540;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65579:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70524:194;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51688:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67098:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67462:40;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54598:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70851:553;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69653:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55793:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69493:125;;;;;;;;;;;;;:::i;:::-;;67001:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51863:792;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69258:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67321:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54964:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67421:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66533:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67371:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10235:150;10320:4;10344:20;:33;10365:11;10344:33;;;;;;;;;;;;;;;;;;;;;;;;;;;10337:40;;10235:150;;;:::o;51519:100::-;51573:13;51606:5;51599:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51519:100;:::o;54305:221::-;54381:7;54409:16;54417:7;54409;:16::i;:::-;54401:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54494:15;:24;54510:7;54494:24;;;;;;;;;;;;;;;;;;;;;54487:31;;54305:221;;;:::o;53835:404::-;53916:13;53932:23;53947:7;53932:14;:23::i;:::-;53916:39;;53980:5;53974:11;;:2;:11;;;;53966:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;54060:5;54044:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;54069:44;54093:5;54100:12;:10;:12::i;:::-;54069:23;:44::i;:::-;54044:69;54036:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;54210:21;54219:2;54223:7;54210:8;:21::i;:::-;53835:404;;;:::o;68330:125::-;65810:12;:10;:12::i;:::-;65799:23;;:7;:5;:7::i;:::-;:23;;;65791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68433:14:::1;68415:15;:32;;;;;;;;;;;;:::i;:::-;;68330:125:::0;:::o;53313:211::-;53374:7;53495:21;:12;:19;:21::i;:::-;53488:28;;53313:211;:::o;67247:53::-;67283:17;67247:53;:::o;55195:305::-;55356:41;55375:12;:10;:12::i;:::-;55389:7;55356:18;:41::i;:::-;55348:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;55464:28;55474:4;55480:2;55484:7;55464:9;:28::i;:::-;55195:305;;;:::o;67930:390::-;65810:12;:10;:12::i;:::-;65799:23;;:7;:5;:7::i;:::-;:23;;;65791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68017:11:::1;68031:13;:11;:13::i;:::-;68017:27;;68080:1;68063:14;:18;:51;;;;;68103:11;;68085:14;:29;;68063:51;68055:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;68167:6;68162:95;68183:14;68179:1;:18;68162:95;;;68219:26;68229:3;68243:1;68234:6;:10;68219:9;:26::i;:::-;68199:3;;;;;;;68162:95;;;;68281:31;68297:14;68281:11;;:15;;:31;;;;:::i;:::-;68267:11;:45;;;;65870:1;67930:390:::0;;:::o;53075:162::-;53172:7;53199:30;53223:5;53199:13;:20;53213:5;53199:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;53192:37;;53075:162;;;;:::o;68572:89::-;65810:12;:10;:12::i;:::-;65799:23;;:7;:5;:7::i;:::-;:23;;;65791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68641:12:::1;;;;;;;;;;;68640:13;68625:12;;:28;;;;;;;;;;;;;;;;;;68572:89::o:0;67791:131::-;65810:12;:10;:12::i;:::-;65799:23;;:7;:5;:7::i;:::-;:23;;;65791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67839:12:::1;67854:21;67839:36;;67886:10;:19;;:28;67906:7;67886:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;65870:1;67791:131::o:0;55571:151::-;55675:39;55692:4;55698:2;55702:7;55675:39;;;;;;;;;;;;:16;:39::i;:::-;55571:151;;;:::o;53601:172::-;53676:7;53697:15;53718:22;53734:5;53718:12;:15;;:22;;;;:::i;:::-;53696:44;;;53758:7;53751:14;;;53601:172;;;:::o;68463:99::-;65810:12;:10;:12::i;:::-;65799:23;;:7;:5;:7::i;:::-;:23;;;65791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68534:20:::1;68546:7;68534:11;:20::i;:::-;68463:99:::0;:::o;69837:675::-;69910:12;;;;;;;;;;;69902:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;69997:1;69980:14;:18;:55;;;;;67360:2;70002:14;:33;;69980:55;69972:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;67407:5;70091:33;70109:14;70091:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:46;;70083:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;70215:29;70229:14;67283:17;70215:13;;:29;;;;:::i;:::-;70202:9;:42;;70194:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;70297:6;70293:210;70313:14;70309:1;:18;70293:210;;;70349:14;70366:13;:11;:13::i;:::-;70349:30;;67407:5;70398:13;:11;:13::i;:::-;:25;70394:98;;;70444:32;70454:10;70466:9;70444;:32::i;:::-;70394:98;70293:210;70329:3;;;;;;;70293:210;;;;69837:675;:::o;51275:177::-;51347:7;51374:70;51391:7;51374:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;51367:77;;51275:177;;;:::o;52894:97::-;52942:13;52975:8;52968:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52894:97;:::o;67571:29::-;;;;:::o;50992:221::-;51064:7;51109:1;51092:19;;:5;:19;;;;51084:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;51176:29;:13;:20;51190:5;51176:20;;;;;;;;;;;;;;;:27;:29::i;:::-;51169:36;;50992:221;;;:::o;66230:148::-;65810:12;:10;:12::i;:::-;65799:23;;:7;:5;:7::i;:::-;:23;;;65791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66337:1:::1;66300:40;;66321:6;;;;;;;;;;;66300:40;;;;;;;;;;;;66368:1;66351:6;;:19;;;;;;;;;;;;;;;;;;66230:148::o:0;68671:540::-;68732:16;68762:18;68783:17;68793:6;68783:9;:17::i;:::-;68762:38;;68829:1;68815:10;:15;68811:393;;;68906:1;68892:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68885:23;;;;;68811:393;68941:23;68981:10;68967:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68941:51;;69007:13;69035:130;69059:10;69051:5;:18;69035:130;;;69115:34;69135:6;69143:5;69115:19;:34::i;:::-;69099:6;69106:5;69099:13;;;;;;;;;;;;;:50;;;;;69071:7;;;;;;;69035:130;;;69186:6;69179:13;;;;;68671:540;;;;:::o;65579:87::-;65625:7;65652:6;;;;;;;;;;;65645:13;;65579:87;:::o;70524:194::-;70582:13;70628;:11;:13::i;:::-;70617:8;:24;70608:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;70691:9;:19;70701:8;70691:19;;;;;;;;;;;70684:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70524:194;;;:::o;51688:104::-;51744:13;51777:7;51770:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51688:104;:::o;67098:31::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;67462:40::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54598:295::-;54713:12;:10;:12::i;:::-;54701:24;;:8;:24;;;;54693:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;54813:8;54768:18;:32;54787:12;:10;:12::i;:::-;54768:32;;;;;;;;;;;;;;;:42;54801:8;54768:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;54866:8;54837:48;;54852:12;:10;:12::i;:::-;54837:48;;;54876:8;54837:48;;;;;;:::i;:::-;;;;;;;;54598:295;;:::o;70851:553::-;70915:15;70944:18;70965:17;70975:6;70965:9;:17::i;:::-;70944:38;;71011:1;70997:10;:15;70993:404;;;71087:1;71074:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71067:22;;;;;70993:404;71122:22;71160:10;71147:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71122:49;;71186:13;71214:144;71238:10;71230:5;:18;71214:144;;;71294:9;:47;71305:34;71325:6;71333:5;71305:19;:34::i;:::-;71294:47;;;;;;;;;;;71278:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:6;71285:5;71278:13;;;;;;;;;;;;;:63;;;;71250:7;;;;;;;71214:144;;;71379:6;71372:13;;;;;70851:553;;;;:::o;69653:174::-;65810:12;:10;:12::i;:::-;65799:23;;:7;:5;:7::i;:::-;:23;;;65791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69753:5:::1;69736:22;;:13;;;;;;;;;;;:22;;;69728:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;69811:8;69796:12;:23;;;;;;;;;;;;:::i;:::-;;69653:174:::0;:::o;55793:285::-;55925:41;55944:12;:10;:12::i;:::-;55958:7;55925:18;:41::i;:::-;55917:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;56031:39;56045:4;56051:2;56055:7;56064:5;56031:13;:39::i;:::-;55793:285;;;;:::o;69493:125::-;65810:12;:10;:12::i;:::-;65799:23;;:7;:5;:7::i;:::-;:23;;;65791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69561:4:::1;69544:13;;:21;;;;;;;;;;;;;;;;;;69581:29;69597:12;69581:29;;;;;;:::i;:::-;;;;;;;;69493:125::o:0;67001:34::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51863:792::-;51936:13;51970:16;51978:7;51970;:16::i;:::-;51962:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;52051:23;52077:10;:19;52088:7;52077:19;;;;;;;;;;;52051:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52107:18;52128:9;:7;:9::i;:::-;52107:30;;52235:1;52219:4;52213:18;:23;52209:72;;;52260:9;52253:16;;;;;;52209:72;52411:1;52391:9;52385:23;:27;52381:108;;;52460:4;52466:9;52443:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52429:48;;;;;;52381:108;52621:4;52627:18;:7;:16;:18::i;:::-;52604:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52590:57;;;;51863:792;;;;:::o;69258:174::-;69310:13;69350;:11;:13::i;:::-;69344:3;:19;69336:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;69412:12;69405:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69258:174;;;:::o;67321:41::-;67360:2;67321:41;:::o;54964:164::-;55061:4;55085:18;:25;55104:5;55085:25;;;;;;;;;;;;;;;:35;55111:8;55085:35;;;;;;;;;;;;;;;;;;;;;;;;;55078:42;;54964:164;;;;:::o;67421:32::-;;;;;;;;;;;;;:::o;66533:244::-;65810:12;:10;:12::i;:::-;65799:23;;:7;:5;:7::i;:::-;:23;;;65791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66642:1:::1;66622:22;;:8;:22;;;;66614:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;66732:8;66703:38;;66724:6;;;;;;;;;;;66703:38;;;;;;;;;;;;66761:8;66752:6;;:17;;;;;;;;;;;;;;;;;;66533:244:::0;:::o;67371:41::-;67407:5;67371:41;:::o;57545:127::-;57610:4;57634:30;57656:7;57634:12;:21;;:30;;;;:::i;:::-;57627:37;;57545:127;;;:::o;667:106::-;720:15;755:10;748:17;;667:106;:::o;63563:192::-;63665:2;63638:15;:24;63654:7;63638:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;63721:7;63717:2;63683:46;;63692:23;63707:7;63692:14;:23::i;:::-;63683:46;;;;;;;;;;;;63563:192;;:::o;44278:123::-;44347:7;44374:19;44382:3;:10;;44374:7;:19::i;:::-;44367:26;;44278:123;;;:::o;57839:355::-;57932:4;57957:16;57965:7;57957;:16::i;:::-;57949:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;58033:13;58049:23;58064:7;58049:14;:23::i;:::-;58033:39;;58102:5;58091:16;;:7;:16;;;:51;;;;58135:7;58111:31;;:20;58123:7;58111:11;:20::i;:::-;:31;;;58091:51;:94;;;;58146:39;58170:5;58177:7;58146:23;:39::i;:::-;58091:94;58083:103;;;57839:355;;;;:::o;60975:599::-;61100:4;61073:31;;:23;61088:7;61073:14;:23::i;:::-;:31;;;61065:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;61201:1;61187:16;;:2;:16;;;;61179:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;61257:39;61278:4;61284:2;61288:7;61257:20;:39::i;:::-;61361:29;61378:1;61382:7;61361:8;:29::i;:::-;61403:35;61430:7;61403:13;:19;61417:4;61403:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;61449:30;61471:7;61449:13;:17;61463:2;61449:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;61492:29;61509:7;61518:2;61492:12;:16;;:29;;;;;:::i;:::-;;61558:7;61554:2;61539:27;;61548:4;61539:27;;;;;;;;;;;;60975:599;;;:::o;58537:110::-;58613:26;58623:2;58627:7;58613:26;;;;;;;;;;;;:9;:26::i;:::-;58537:110;;:::o;14259:158::-;14317:7;14350:1;14345;:6;;14337:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;14408:1;14404;:5;14397:12;;14259:158;;;;:::o;36069:137::-;36140:7;36175:22;36179:3;:10;;36191:5;36175:3;:22::i;:::-;36167:31;;36160:38;;36069:137;;;;:::o;44740:236::-;44820:7;44829;44850:11;44863:13;44880:22;44884:3;:10;;44896:5;44880:3;:22::i;:::-;44849:53;;;;44929:3;44921:12;;44959:5;44951:14;;44913:55;;;;;;44740:236;;;;;:::o;62175:100::-;62259:8;62248;:19;;;;;;;;;;;;:::i;:::-;;62175:100;:::o;13797:179::-;13855:7;13875:9;13891:1;13887;:5;13875:17;;13916:1;13911;:6;;13903:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;13967:1;13960:8;;;13797:179;;;;:::o;14676:220::-;14734:7;14763:1;14758;:6;14754:20;;;14773:1;14766:8;;;;14754:20;14785:9;14801:1;14797;:5;14785:17;;14830:1;14825;14821;:5;;;;;;:10;14813:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;14887:1;14880:8;;;14676:220;;;;;:::o;46026:213::-;46133:7;46184:44;46189:3;:10;;46209:3;46201:12;;46215;46184:4;:44::i;:::-;46176:53;;46153:78;;46026:213;;;;;:::o;35611:114::-;35671:7;35698:19;35706:3;:10;;35698:7;:19::i;:::-;35691:26;;35611:114;;;:::o;56960:272::-;57074:28;57084:4;57090:2;57094:7;57074:9;:28::i;:::-;57121:48;57144:4;57150:2;57154:7;57163:5;57121:22;:48::i;:::-;57113:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;56960:272;;;;:::o;46490:746::-;46546:13;46776:1;46767:5;:10;46763:53;;;46794:10;;;;;;;;;;;;;;;;;;;;;46763:53;46826:12;46841:5;46826:20;;46857:14;46882:78;46897:1;46889:4;:9;46882:78;;46915:8;;;;;;;46946:2;46938:10;;;;;;;;;46882:78;;;46970:19;47002:6;46992:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46970:39;;47020:13;47045:1;47036:6;:10;47020:26;;47064:5;47057:12;;47080:117;47095:1;47087:4;:9;47080:117;;47156:2;47149:4;:9;;;;;;47144:2;:14;47131:29;;47113:6;47120:7;;;;;;;47113:15;;;;;;;;;;;:47;;;;;;;;;;;47183:2;47175:10;;;;;;;;;47080:117;;;47221:6;47207:21;;;;;;46490:746;;;;:::o;44039:151::-;44123:4;44147:35;44157:3;:10;;44177:3;44169:12;;44147:9;:35::i;:::-;44140:42;;44039:151;;;;:::o;40857:110::-;40913:7;40940:3;:12;;:19;;;;40933:26;;40857:110;;;:::o;64368:93::-;;;;:::o;35156:137::-;35226:4;35250:35;35258:3;:10;;35278:5;35270:14;;35250:7;:35::i;:::-;35243:42;;35156:137;;;;:::o;34849:131::-;34916:4;34940:32;34945:3;:10;;34965:5;34957:14;;34940:4;:32::i;:::-;34933:39;;34849:131;;;;:::o;43462:185::-;43551:4;43575:64;43580:3;:10;;43600:3;43592:12;;43630:5;43614:23;;43606:32;;43575:4;:64::i;:::-;43568:71;;43462:185;;;;;:::o;58874:250::-;58970:18;58976:2;58980:7;58970:5;:18::i;:::-;59007:54;59038:1;59042:2;59046:7;59055:5;59007:22;:54::i;:::-;58999:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;58874:250;;;:::o;31107:204::-;31174:7;31223:5;31202:3;:11;;:18;;;;:26;31194:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31285:3;:11;;31297:5;31285:18;;;;;;;;;;;;;;;;31278:25;;31107:204;;;;:::o;41322:279::-;41389:7;41398;41448:5;41426:3;:12;;:19;;;;:27;41418:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;41505:22;41530:3;:12;;41543:5;41530:19;;;;;;;;;;;;;;;;;;41505:44;;41568:5;:10;;;41580:5;:12;;;41560:33;;;;;41322:279;;;;;:::o;42819:319::-;42913:7;42933:16;42952:3;:12;;:17;42965:3;42952:17;;;;;;;;;;;;42933:36;;43000:1;42988:8;:13;;43003:12;42980:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;43070:3;:12;;43094:1;43083:8;:12;43070:26;;;;;;;;;;;;;;;;;;:33;;;43063:40;;;42819:319;;;;;:::o;30654:109::-;30710:7;30737:3;:11;;:18;;;;30730:25;;30654:109;;;:::o;62840:604::-;62961:4;62988:15;:2;:13;;;:15::i;:::-;62983:60;;63027:4;63020:11;;;;62983:60;63053:23;63079:252;63132:45;;;63192:12;:10;:12::i;:::-;63219:4;63238:7;63260:5;63095:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63079:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;63053:278;;63342:13;63369:10;63358:32;;;;;;;;;;;;:::i;:::-;63342:48;;47989:10;63419:16;;63409:26;;;:6;:26;;;;63401:35;;;;62840:604;;;;;;;:::o;40637:125::-;40708:4;40753:1;40732:3;:12;;:17;40745:3;40732:17;;;;;;;;;;;;:22;;40725:29;;40637:125;;;;:::o;28809:1544::-;28875:4;28993:18;29014:3;:12;;:19;29027:5;29014:19;;;;;;;;;;;;28993:40;;29064:1;29050:10;:15;29046:1300;;29412:21;29449:1;29436:10;:14;29412:38;;29465:17;29506:1;29485:3;:11;;:18;;;;:22;29465:42;;29752:17;29772:3;:11;;29784:9;29772:22;;;;;;;;;;;;;;;;29752:42;;29918:9;29889:3;:11;;29901:13;29889:26;;;;;;;;;;;;;;;:38;;;;30037:1;30021:13;:17;29995:3;:12;;:23;30008:9;29995:23;;;;;;;;;;;:43;;;;30147:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;30242:3;:12;;:19;30255:5;30242:19;;;;;;;;;;;30235:26;;;30285:4;30278:11;;;;;;;;29046:1300;30329:5;30322:12;;;28809:1544;;;;;:::o;28219:414::-;28282:4;28304:21;28314:3;28319:5;28304:9;:21::i;:::-;28299:327;;28342:3;:11;;28359:5;28342:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28525:3;:11;;:18;;;;28503:3;:12;;:19;28516:5;28503:19;;;;;;;;;;;:40;;;;28565:4;28558:11;;;;28299:327;28609:5;28602:12;;28219:414;;;;;:::o;38137:692::-;38213:4;38329:16;38348:3;:12;;:17;38361:3;38348:17;;;;;;;;;;;;38329:36;;38394:1;38382:8;:13;38378:444;;;38449:3;:12;;38467:38;;;;;;;;38484:3;38467:38;;;;38497:5;38467:38;;;38449:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38664:3;:12;;:19;;;;38644:3;:12;;:17;38657:3;38644:17;;;;;;;;;;;:39;;;;38705:4;38698:11;;;;;38378:444;38778:5;38742:3;:12;;38766:1;38755:8;:12;38742:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;38805:5;38798:12;;;38137:692;;;;;;:::o;59460:404::-;59554:1;59540:16;;:2;:16;;;;59532:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;59613:16;59621:7;59613;:16::i;:::-;59612:17;59604:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;59675:45;59704:1;59708:2;59712:7;59675:20;:45::i;:::-;59733:30;59755:7;59733:13;:17;59747:2;59733:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;59776:29;59793:7;59802:2;59776:12;:16;;:29;;;;;:::i;:::-;;59848:7;59844:2;59823:33;;59840:1;59823:33;;;;;;;;;;;;59460:404;;:::o;19238:422::-;19298:4;19506:12;19617:7;19605:20;19597:28;;19651:1;19644:4;:8;19637:15;;;19238:422;;;:::o;22156:195::-;22259:12;22291:52;22313:6;22321:4;22327:1;22330:12;22291:21;:52::i;:::-;22284:59;;22156:195;;;;;:::o;30439:129::-;30512:4;30559:1;30536:3;:12;;:19;30549:5;30536:19;;;;;;;;;;;;:24;;30529:31;;30439:129;;;;:::o;23208:530::-;23335:12;23393:5;23368:21;:30;;23360:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;23460:18;23471:6;23460:10;:18::i;:::-;23452:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;23586:12;23600:23;23627:6;:11;;23647:5;23655:4;23627:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23585:75;;;;23678:52;23696:7;23705:10;23717:12;23678:17;:52::i;:::-;23671:59;;;;23208:530;;;;;;:::o;25748:742::-;25863:12;25892:7;25888:595;;;25923:10;25916:17;;;;25888:595;26057:1;26037:10;:17;:21;26033:439;;;26300:10;26294:17;26361:15;26348:10;26344:2;26340:19;26333:44;26248:148;26443:12;26436:20;;;;;;;;;;;:::i;:::-;;;;;;;;25748: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:::-;;6208:66;6270:3;6262:6;6208:66;:::i;:::-;6194:80;;6184:96;;;;:::o;6286:179::-;;6376:46;6418:3;6410:6;6376:46;:::i;:::-;6454:4;6449:3;6445:14;6431:28;;6366:99;;;;:::o;6471:142::-;6574:32;6600:5;6574:32;:::i;:::-;6569:3;6562:45;6552:61;;:::o;6619:118::-;6706:24;6724:5;6706:24;:::i;:::-;6701:3;6694:37;6684:53;;:::o;6771:991::-;;6939:64;6997:5;6939:64;:::i;:::-;7019:96;7108:6;7103:3;7019:96;:::i;:::-;7012:103;;7141:3;7186:4;7178:6;7174:17;7169:3;7165:27;7216:66;7276:5;7216:66;:::i;:::-;7305:7;7336:1;7321:396;7346:6;7343:1;7340:13;7321:396;;;7417:9;7411:4;7407:20;7402:3;7395:33;7468:6;7462:13;7496:84;7575:4;7560:13;7496:84;:::i;:::-;7488:92;;7603:70;7666:6;7603:70;:::i;:::-;7593:80;;7702:4;7697:3;7693:14;7686:21;;7381:336;7368:1;7365;7361:9;7356:14;;7321:396;;;7325:14;7733:4;7726:11;;7753:3;7746:10;;6915:847;;;;;;;;;:::o;7798:732::-;;7946:54;7994:5;7946:54;:::i;:::-;8016:86;8095:6;8090:3;8016:86;:::i;:::-;8009:93;;8126:56;8176:5;8126:56;:::i;:::-;8205:7;8236:1;8221:284;8246:6;8243:1;8240:13;8221:284;;;8322:6;8316:13;8349:63;8408:3;8393:13;8349:63;:::i;:::-;8342:70;;8435:60;8488:6;8435:60;:::i;:::-;8425:70;;8281:224;8268:1;8265;8261:9;8256:14;;8221:284;;;8225:14;8521:3;8514:10;;7922:608;;;;;;;:::o;8536:109::-;8617:21;8632:5;8617:21;:::i;:::-;8612:3;8605:34;8595:50;;:::o;8651:360::-;;8765:38;8797:5;8765:38;:::i;:::-;8819:70;8882:6;8877:3;8819:70;:::i;:::-;8812:77;;8898:52;8943:6;8938:3;8931:4;8924:5;8920:16;8898:52;:::i;:::-;8975:29;8997:6;8975:29;:::i;:::-;8970:3;8966:39;8959:46;;8741:270;;;;;:::o;9017:373::-;;9149:38;9181:5;9149:38;:::i;:::-;9203:88;9284:6;9279:3;9203:88;:::i;:::-;9196:95;;9300:52;9345:6;9340:3;9333:4;9326:5;9322:16;9300:52;:::i;:::-;9377:6;9372:3;9368:16;9361:23;;9125:265;;;;;:::o;9396:344::-;;9502:39;9535:5;9502:39;:::i;:::-;9557:61;9611:6;9606:3;9557:61;:::i;:::-;9550:68;;9627:52;9672:6;9667:3;9660:4;9653:5;9649:16;9627:52;:::i;:::-;9704:29;9726:6;9704:29;:::i;:::-;9699:3;9695:39;9688:46;;9478:262;;;;;:::o;9746:364::-;;9862:39;9895:5;9862:39;:::i;:::-;9917:71;9981:6;9976:3;9917:71;:::i;:::-;9910:78;;9997:52;10042:6;10037:3;10030:4;10023:5;10019:16;9997:52;:::i;:::-;10074:29;10096:6;10074:29;:::i;:::-;10069:3;10065:39;10058:46;;9838:272;;;;;:::o;10116:377::-;;10250:39;10283:5;10250:39;:::i;:::-;10305:89;10387:6;10382:3;10305:89;:::i;:::-;10298:96;;10403:52;10448:6;10443:3;10436:4;10429:5;10425:16;10403:52;:::i;:::-;10480:6;10475:3;10471:16;10464:23;;10226:267;;;;;:::o;10523:937::-;;10645:5;10639:12;10682:1;10671:9;10667:17;10698:1;10693:281;;;;10988:1;10983:471;;;;10660:794;;10693:281;10783:4;10779:1;10768:9;10764:17;10760:28;10808:71;10872:6;10867:3;10808:71;:::i;:::-;10801:78;;10923:4;10919:9;10908;10904:25;10899:3;10892:38;10959:4;10954:3;10950:14;10943:21;;10700:274;10693:281;;10983:471;11064:1;11053:9;11049:17;11086:71;11150:6;11145:3;11086:71;:::i;:::-;11079:78;;11185:38;11217:5;11185:38;:::i;:::-;11245:1;11259:154;11273:6;11270:1;11267:13;11259:154;;;11347:7;11341:14;11337:1;11332:3;11328:11;11321:35;11397:1;11388:7;11384:15;11373:26;;11295:4;11292:1;11288:12;11283:17;;11259:154;;;11442:1;11437:3;11433:11;11426:18;;10990:464;;;10660:794;;10612:848;;;;;:::o;11466:373::-;;11629:67;11693:2;11688:3;11629:67;:::i;:::-;11622:74;;11726:34;11722:1;11717:3;11713:11;11706:55;11792:11;11787:2;11782:3;11778:12;11771:33;11830:2;11825:3;11821:12;11814:19;;11612:227;;;:::o;11845:366::-;;12008:67;12072:2;12067:3;12008:67;:::i;:::-;12001:74;;12105:34;12101:1;12096:3;12092:11;12085:55;12171:4;12166:2;12161:3;12157:12;12150:26;12202:2;12197:3;12193:12;12186:19;;11991:220;;;:::o;12217:382::-;;12380:67;12444:2;12439:3;12380:67;:::i;:::-;12373:74;;12477:34;12473:1;12468:3;12464:11;12457:55;12543:20;12538:2;12533:3;12529:12;12522:42;12590:2;12585:3;12581:12;12574:19;;12363:236;;;:::o;12605:370::-;;12768:67;12832:2;12827:3;12768:67;:::i;:::-;12761:74;;12865:34;12861:1;12856:3;12852:11;12845:55;12931:8;12926:2;12921:3;12917:12;12910:30;12966:2;12961:3;12957:12;12950:19;;12751:224;;;:::o;12981:326::-;;13144:67;13208:2;13203:3;13144:67;:::i;:::-;13137:74;;13241:30;13237:1;13232:3;13228:11;13221:51;13298:2;13293:3;13289:12;13282:19;;13127:180;;;:::o;13313:325::-;;13476:67;13540:2;13535:3;13476:67;:::i;:::-;13469:74;;13573:29;13569:1;13564:3;13560:11;13553:50;13629:2;13624:3;13620:12;13613:19;;13459:179;;;:::o;13644:330::-;;13807:67;13871:2;13866:3;13807:67;:::i;:::-;13800:74;;13904:34;13900:1;13895:3;13891:11;13884:55;13965:2;13960:3;13956:12;13949:19;;13790:184;;;:::o;13980:330::-;;14143:67;14207:2;14202:3;14143:67;:::i;:::-;14136:74;;14240:34;14236:1;14231:3;14227:11;14220:55;14301:2;14296:3;14292:12;14285:19;;14126:184;;;:::o;14316:368::-;;14479:67;14543:2;14538:3;14479:67;:::i;:::-;14472:74;;14576:34;14572:1;14567:3;14563:11;14556:55;14642:6;14637:2;14632:3;14628:12;14621:28;14675:2;14670:3;14666:12;14659:19;;14462:222;;;:::o;14690:323::-;;14853:67;14917:2;14912:3;14853:67;:::i;:::-;14846:74;;14950:27;14946:1;14941:3;14937:11;14930:48;15004:2;14999:3;14995:12;14988:19;;14836:177;;;:::o;15019:329::-;;15182:67;15246:2;15241:3;15182:67;:::i;:::-;15175:74;;15279:33;15275:1;15270:3;15266:11;15259:54;15339:2;15334:3;15330:12;15323:19;;15165:183;;;:::o;15354:328::-;;15517:67;15581:2;15576:3;15517:67;:::i;:::-;15510:74;;15614:32;15610:1;15605:3;15601:11;15594:53;15673:2;15668:3;15664:12;15657:19;;15500:182;;;:::o;15688:370::-;;15851:67;15915:2;15910:3;15851:67;:::i;:::-;15844:74;;15948:34;15944:1;15939:3;15935:11;15928:55;16014:8;16009:2;16004:3;16000:12;15993:30;16049:2;16044:3;16040:12;16033:19;;15834:224;;;:::o;16064:376::-;;16227:67;16291:2;16286:3;16227:67;:::i;:::-;16220:74;;16324:34;16320:1;16315:3;16311:11;16304:55;16390:14;16385:2;16380:3;16376:12;16369:36;16431:2;16426:3;16422:12;16415:19;;16210:230;;;:::o;16446:388::-;;16609:67;16673:2;16668:3;16609:67;:::i;:::-;16602:74;;16706:34;16702:1;16697:3;16693:11;16686:55;16772:26;16767:2;16762:3;16758:12;16751:48;16825:2;16820:3;16816:12;16809:19;;16592:242;;;:::o;16840:374::-;;17003:67;17067:2;17062:3;17003:67;:::i;:::-;16996:74;;17100:34;17096:1;17091:3;17087:11;17080:55;17166:12;17161:2;17156:3;17152:12;17145:34;17205:2;17200:3;17196:12;17189:19;;16986:228;;;:::o;17220:366::-;;17383:67;17447:2;17442:3;17383:67;:::i;:::-;17376:74;;17480:34;17476:1;17471:3;17467:11;17460:55;17546:4;17541:2;17536:3;17532:12;17525:26;17577:2;17572:3;17568:12;17561:19;;17366:220;;;:::o;17592:330::-;;17755:67;17819:2;17814:3;17755:67;:::i;:::-;17748:74;;17852:34;17848:1;17843:3;17839:11;17832:55;17913:2;17908:3;17904:12;17897:19;;17738:184;;;:::o;17928:365::-;;18091:67;18155:2;18150:3;18091:67;:::i;:::-;18084:74;;18188:34;18184:1;18179:3;18175:11;18168:55;18254:3;18249:2;18244:3;18240:12;18233:25;18284:2;18279:3;18275:12;18268:19;;18074:219;;;:::o;18299:376::-;;18462:67;18526:2;18521:3;18462:67;:::i;:::-;18455:74;;18559:34;18555:1;18550:3;18546:11;18539:55;18625:14;18620:2;18615:3;18611:12;18604:36;18666:2;18661:3;18657:12;18650:19;;18445:230;;;:::o;18681:324::-;;18844:67;18908:2;18903:3;18844:67;:::i;:::-;18837:74;;18941:28;18937:1;18932:3;18928:11;18921:49;18996:2;18991:3;18987:12;18980:19;;18827:178;;;:::o;19011:324::-;;19174:67;19238:2;19233:3;19174:67;:::i;:::-;19167:74;;19271:28;19267:1;19262:3;19258:11;19251:49;19326:2;19321:3;19317:12;19310:19;;19157:178;;;:::o;19341:330::-;;19504:67;19568:2;19563:3;19504:67;:::i;:::-;19497:74;;19601:34;19597:1;19592:3;19588:11;19581:55;19662:2;19657:3;19653:12;19646:19;;19487:184;;;:::o;19677:373::-;;19840:67;19904:2;19899:3;19840:67;:::i;:::-;19833:74;;19937:34;19933:1;19928:3;19924:11;19917:55;20003:11;19998:2;19993:3;19989:12;19982:33;20041:2;20036:3;20032:12;20025:19;;19823:227;;;:::o;20056:379::-;;20219:67;20283:2;20278:3;20219:67;:::i;:::-;20212:74;;20316:34;20312:1;20307:3;20303:11;20296:55;20382:17;20377:2;20372:3;20368:12;20361:39;20426:2;20421:3;20417:12;20410:19;;20202:233;;;:::o;20441:365::-;;20604:67;20668:2;20663:3;20604:67;:::i;:::-;20597:74;;20701:34;20697:1;20692:3;20688:11;20681:55;20767:3;20762:2;20757:3;20753:12;20746:25;20797:2;20792:3;20788:12;20781:19;;20587:219;;;:::o;20812:366::-;;20975:67;21039:2;21034:3;20975:67;:::i;:::-;20968:74;;21072:34;21068:1;21063:3;21059:11;21052:55;21138:4;21133:2;21128:3;21124:12;21117:26;21169:2;21164:3;21160:12;21153:19;;20958:220;;;:::o;21184:320::-;;21347:67;21411:2;21406:3;21347:67;:::i;:::-;21340:74;;21444:24;21440:1;21435:3;21431:11;21424:45;21495:2;21490:3;21486:12;21479:19;;21330:174;;;:::o;21510:381::-;;21673:67;21737:2;21732:3;21673:67;:::i;:::-;21666:74;;21770:34;21766:1;21761:3;21757:11;21750:55;21836:19;21831:2;21826:3;21822:12;21815:41;21882:2;21877:3;21873:12;21866:19;;21656:235;;;:::o;21897:327::-;;22060:67;22124:2;22119:3;22060:67;:::i;:::-;22053:74;;22157:31;22153:1;22148:3;22144:11;22137:52;22215:2;22210:3;22206:12;22199:19;;22043:181;;;:::o;22230:108::-;22307:24;22325:5;22307:24;:::i;:::-;22302:3;22295:37;22285:53;;:::o;22344:118::-;22431:24;22449:5;22431:24;:::i;:::-;22426:3;22419:37;22409:53;;:::o;22468:271::-;;22620:93;22709:3;22700:6;22620:93;:::i;:::-;22613:100;;22730:3;22723:10;;22602:137;;;;:::o;22745:435::-;;22947:95;23038:3;23029:6;22947:95;:::i;:::-;22940:102;;23059:95;23150:3;23141:6;23059:95;:::i;:::-;23052:102;;23171:3;23164:10;;22929:251;;;;;:::o;23186:222::-;;23317:2;23306:9;23302:18;23294:26;;23330:71;23398:1;23387:9;23383:17;23374:6;23330:71;:::i;:::-;23284:124;;;;:::o;23414:672::-;;23663:3;23652:9;23648:19;23640:27;;23677:87;23761:1;23750:9;23746:17;23737:6;23677:87;:::i;:::-;23774:72;23842:2;23831:9;23827:18;23818:6;23774:72;:::i;:::-;23856;23924:2;23913:9;23909:18;23900:6;23856:72;:::i;:::-;23975:9;23969:4;23965:20;23960:2;23949:9;23945:18;23938:48;24003:76;24074:4;24065:6;24003:76;:::i;:::-;23995:84;;23630:456;;;;;;;:::o;24092:413::-;;24293:2;24282:9;24278:18;24270:26;;24342:9;24336:4;24332:20;24328:1;24317:9;24313:17;24306:47;24370:128;24493:4;24484:6;24370:128;:::i;:::-;24362:136;;24260:245;;;;:::o;24511:373::-;;24692:2;24681:9;24677:18;24669:26;;24741:9;24735:4;24731:20;24727:1;24716:9;24712:17;24705:47;24769:108;24872:4;24863:6;24769:108;:::i;:::-;24761:116;;24659:225;;;;:::o;24890:210::-;;25015:2;25004:9;25000:18;24992:26;;25028:65;25090:1;25079:9;25075:17;25066:6;25028:65;:::i;:::-;24982:118;;;;:::o;25106:313::-;;25257:2;25246:9;25242:18;25234:26;;25306:9;25300:4;25296:20;25292:1;25281:9;25277:17;25270:47;25334:78;25407:4;25398:6;25334:78;:::i;:::-;25326:86;;25224:195;;;;:::o;25425:307::-;;25573:2;25562:9;25558:18;25550:26;;25622:9;25616:4;25612:20;25608:1;25597:9;25593:17;25586:47;25650:75;25720:4;25711:6;25650:75;:::i;:::-;25642:83;;25540:192;;;;:::o;25738:419::-;;25942:2;25931:9;25927:18;25919:26;;25991:9;25985:4;25981:20;25977:1;25966:9;25962:17;25955:47;26019:131;26145:4;26019:131;:::i;:::-;26011:139;;25909:248;;;:::o;26163:419::-;;26367:2;26356:9;26352:18;26344:26;;26416:9;26410:4;26406:20;26402:1;26391:9;26387:17;26380:47;26444:131;26570:4;26444:131;:::i;:::-;26436:139;;26334:248;;;:::o;26588:419::-;;26792:2;26781:9;26777:18;26769:26;;26841:9;26835:4;26831:20;26827:1;26816:9;26812:17;26805:47;26869:131;26995:4;26869:131;:::i;:::-;26861:139;;26759:248;;;:::o;27013:419::-;;27217:2;27206:9;27202:18;27194:26;;27266:9;27260:4;27256:20;27252:1;27241:9;27237:17;27230:47;27294:131;27420:4;27294:131;:::i;:::-;27286:139;;27184:248;;;:::o;27438:419::-;;27642:2;27631:9;27627:18;27619:26;;27691:9;27685:4;27681:20;27677:1;27666:9;27662:17;27655:47;27719:131;27845:4;27719:131;:::i;:::-;27711:139;;27609:248;;;:::o;27863:419::-;;28067:2;28056:9;28052:18;28044:26;;28116:9;28110:4;28106:20;28102:1;28091:9;28087:17;28080:47;28144:131;28270:4;28144:131;:::i;:::-;28136:139;;28034:248;;;:::o;28288:419::-;;28492:2;28481:9;28477:18;28469:26;;28541:9;28535:4;28531:20;28527:1;28516:9;28512:17;28505:47;28569:131;28695:4;28569:131;:::i;:::-;28561:139;;28459:248;;;:::o;28713:419::-;;28917:2;28906:9;28902:18;28894:26;;28966:9;28960:4;28956:20;28952:1;28941:9;28937:17;28930:47;28994:131;29120:4;28994:131;:::i;:::-;28986:139;;28884:248;;;:::o;29138:419::-;;29342:2;29331:9;29327:18;29319:26;;29391:9;29385:4;29381:20;29377:1;29366:9;29362:17;29355:47;29419:131;29545:4;29419:131;:::i;:::-;29411:139;;29309:248;;;:::o;29563:419::-;;29767:2;29756:9;29752:18;29744:26;;29816:9;29810:4;29806:20;29802:1;29791:9;29787:17;29780:47;29844:131;29970:4;29844:131;:::i;:::-;29836:139;;29734:248;;;:::o;29988:419::-;;30192:2;30181:9;30177:18;30169:26;;30241:9;30235:4;30231:20;30227:1;30216:9;30212:17;30205:47;30269:131;30395:4;30269:131;:::i;:::-;30261:139;;30159:248;;;:::o;30413:419::-;;30617:2;30606:9;30602:18;30594:26;;30666:9;30660:4;30656:20;30652:1;30641:9;30637:17;30630:47;30694:131;30820:4;30694:131;:::i;:::-;30686:139;;30584:248;;;:::o;30838:419::-;;31042:2;31031:9;31027:18;31019:26;;31091:9;31085:4;31081:20;31077:1;31066:9;31062:17;31055:47;31119:131;31245:4;31119:131;:::i;:::-;31111:139;;31009:248;;;:::o;31263:419::-;;31467:2;31456:9;31452:18;31444:26;;31516:9;31510:4;31506:20;31502:1;31491:9;31487:17;31480:47;31544:131;31670:4;31544:131;:::i;:::-;31536:139;;31434:248;;;:::o;31688:419::-;;31892:2;31881:9;31877:18;31869:26;;31941:9;31935:4;31931:20;31927:1;31916:9;31912:17;31905:47;31969:131;32095:4;31969:131;:::i;:::-;31961:139;;31859:248;;;:::o;32113:419::-;;32317:2;32306:9;32302:18;32294:26;;32366:9;32360:4;32356:20;32352:1;32341:9;32337:17;32330:47;32394:131;32520:4;32394:131;:::i;:::-;32386:139;;32284:248;;;:::o;32538:419::-;;32742:2;32731:9;32727:18;32719:26;;32791:9;32785:4;32781:20;32777:1;32766:9;32762:17;32755:47;32819:131;32945:4;32819:131;:::i;:::-;32811:139;;32709:248;;;:::o;32963:419::-;;33167:2;33156:9;33152:18;33144:26;;33216:9;33210:4;33206:20;33202:1;33191:9;33187:17;33180:47;33244:131;33370:4;33244:131;:::i;:::-;33236:139;;33134:248;;;:::o;33388:419::-;;33592:2;33581:9;33577:18;33569:26;;33641:9;33635:4;33631:20;33627:1;33616:9;33612:17;33605:47;33669:131;33795:4;33669:131;:::i;:::-;33661:139;;33559:248;;;:::o;33813:419::-;;34017:2;34006:9;34002:18;33994:26;;34066:9;34060:4;34056:20;34052:1;34041:9;34037:17;34030:47;34094:131;34220:4;34094:131;:::i;:::-;34086:139;;33984:248;;;:::o;34238:419::-;;34442:2;34431:9;34427:18;34419:26;;34491:9;34485:4;34481:20;34477:1;34466:9;34462:17;34455:47;34519:131;34645:4;34519:131;:::i;:::-;34511:139;;34409:248;;;:::o;34663:419::-;;34867:2;34856:9;34852:18;34844:26;;34916:9;34910:4;34906:20;34902:1;34891:9;34887:17;34880:47;34944:131;35070:4;34944:131;:::i;:::-;34936:139;;34834:248;;;:::o;35088:419::-;;35292:2;35281:9;35277:18;35269:26;;35341:9;35335:4;35331:20;35327:1;35316:9;35312:17;35305:47;35369:131;35495:4;35369:131;:::i;:::-;35361:139;;35259:248;;;:::o;35513:419::-;;35717:2;35706:9;35702:18;35694:26;;35766:9;35760:4;35756:20;35752:1;35741:9;35737:17;35730:47;35794:131;35920:4;35794:131;:::i;:::-;35786:139;;35684:248;;;:::o;35938:419::-;;36142:2;36131:9;36127:18;36119:26;;36191:9;36185:4;36181:20;36177:1;36166:9;36162:17;36155:47;36219:131;36345:4;36219:131;:::i;:::-;36211:139;;36109:248;;;:::o;36363:419::-;;36567:2;36556:9;36552:18;36544:26;;36616:9;36610:4;36606:20;36602:1;36591:9;36587:17;36580:47;36644:131;36770:4;36644:131;:::i;:::-;36636:139;;36534:248;;;:::o;36788:419::-;;36992:2;36981:9;36977:18;36969:26;;37041:9;37035:4;37031:20;37027:1;37016:9;37012:17;37005:47;37069:131;37195:4;37069:131;:::i;:::-;37061:139;;36959:248;;;:::o;37213:419::-;;37417:2;37406:9;37402:18;37394:26;;37466:9;37460:4;37456:20;37452:1;37441:9;37437:17;37430:47;37494:131;37620:4;37494:131;:::i;:::-;37486:139;;37384:248;;;:::o;37638:419::-;;37842:2;37831:9;37827:18;37819:26;;37891:9;37885:4;37881:20;37877:1;37866:9;37862:17;37855:47;37919:131;38045:4;37919:131;:::i;:::-;37911:139;;37809:248;;;:::o;38063:419::-;;38267:2;38256:9;38252:18;38244:26;;38316:9;38310:4;38306:20;38302:1;38291:9;38287:17;38280:47;38344:131;38470:4;38344:131;:::i;:::-;38336:139;;38234:248;;;:::o;38488:222::-;;38619:2;38608:9;38604:18;38596:26;;38632:71;38700:1;38689:9;38685:17;38676:6;38632:71;:::i;:::-;38586:124;;;;:::o;38716:278::-;;38782:2;38776:9;38766:19;;38824:4;38816:6;38812:17;38931:6;38919:10;38916:22;38895:18;38883:10;38880:34;38877:62;38874:2;;;38942:13;;:::i;:::-;38874:2;38977:10;38973:2;38966:22;38756:238;;;;:::o;39000:326::-;;39151:18;39143:6;39140:30;39137:2;;;39173:13;;:::i;:::-;39137:2;39253:4;39249:9;39242:4;39234:6;39230:17;39226:33;39218:41;;39314:4;39308;39304:15;39296:23;;39066:260;;;:::o;39332:327::-;;39484:18;39476:6;39473:30;39470:2;;;39506:13;;:::i;:::-;39470:2;39586:4;39582:9;39575:4;39567:6;39563:17;39559:33;39551:41;;39647:4;39641;39637:15;39629:23;;39399:260;;;:::o;39665:142::-;;39765:3;39757:11;;39795:4;39790:3;39786:14;39778:22;;39747:60;;;:::o;39813:132::-;;39903:3;39895:11;;39933:4;39928:3;39924:14;39916:22;;39885:60;;;:::o;39951:141::-;;40023:3;40015:11;;40046:3;40043:1;40036:14;40080:4;40077:1;40067:18;40059:26;;40005:87;;;:::o;40098:124::-;;40209:5;40203:12;40193:22;;40182:40;;;:::o;40228:114::-;;40329:5;40323:12;40313:22;;40302:40;;;:::o;40348:98::-;;40433:5;40427:12;40417:22;;40406:40;;;:::o;40452:99::-;;40538:5;40532:12;40522:22;;40511:40;;;:::o;40557:123::-;;40669:4;40664:3;40660:14;40652:22;;40642:38;;;:::o;40686:113::-;;40788:4;40783:3;40779:14;40771:22;;40761:38;;;:::o;40805:194::-;;40948:6;40943:3;40936:19;40988:4;40983:3;40979:14;40964:29;;40926:73;;;;:::o;41005:184::-;;41138:6;41133:3;41126:19;41178:4;41173:3;41169:14;41154:29;;41116:73;;;;:::o;41195:168::-;;41312:6;41307:3;41300:19;41352:4;41347:3;41343:14;41328:29;;41290:73;;;;:::o;41369:147::-;;41507:3;41492:18;;41482:34;;;;:::o;41522:159::-;;41630:6;41625:3;41618:19;41670:4;41665:3;41661:14;41646:29;;41608:73;;;;:::o;41687:169::-;;41805:6;41800:3;41793:19;41845:4;41840:3;41836:14;41821:29;;41783:73;;;;:::o;41862:148::-;;42001:3;41986:18;;41976:34;;;;:::o;42016:96::-;;42082:24;42100:5;42082:24;:::i;:::-;42071:35;;42061:51;;;:::o;42118:104::-;;42192:24;42210:5;42192:24;:::i;:::-;42181:35;;42171:51;;;:::o;42228:90::-;;42305:5;42298:13;42291:21;42280:32;;42270:48;;;:::o;42324:149::-;;42400:66;42393:5;42389:78;42378:89;;42368:105;;;:::o;42479:126::-;;42556:42;42549:5;42545:54;42534:65;;42524:81;;;:::o;42611:77::-;;42677:5;42666:16;;42656:32;;;:::o;42694:154::-;42778:6;42773:3;42768;42755:30;42840:1;42831:6;42826:3;42822:16;42815:27;42745:103;;;:::o;42854:307::-;42922:1;42932:113;42946:6;42943:1;42940:13;42932:113;;;43031:1;43026:3;43022:11;43016:18;43012:1;43007:3;43003:11;42996:39;42968:2;42965:1;42961:10;42956:15;;42932:113;;;43063:6;43060:1;43057:13;43054:2;;;43143:1;43134:6;43129:3;43125:16;43118:27;43054:2;42903:258;;;;:::o;43167:48::-;43200:9;43221:102;;43313:2;43309:7;43304:2;43297:5;43293:14;43289:28;43279:38;;43269:54;;;:::o;43329:122::-;43402:24;43420:5;43402:24;:::i;:::-;43395:5;43392:35;43382:2;;43441:1;43438;43431:12;43382:2;43372:79;:::o;43457:116::-;43527:21;43542:5;43527:21;:::i;:::-;43520:5;43517:32;43507:2;;43563:1;43560;43553:12;43507:2;43497:76;:::o;43579:120::-;43651:23;43668:5;43651:23;:::i;:::-;43644:5;43641:34;43631:2;;43689:1;43686;43679:12;43631:2;43621:78;:::o;43705:122::-;43778:24;43796:5;43778:24;:::i;:::-;43771:5;43768:35;43758:2;;43817:1;43814;43807:12;43758:2;43748:79;:::o

Swarm Source

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