ETH Price: $3,278.50 (+0.84%)
Gas: 2 Gwei

Token

CryptoFroges (FROGES)
 

Overview

Max Total Supply

19 FROGES

Holders

10

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
regente.eth
Balance
1 FROGES
0x6cdd7327a426aeb2e1259d2432efa5c1dec2dc4c
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
CryptoFroges

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-11
*/

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


// CryptoFroges ethereum contract

pragma solidity ^0.7.0;
pragma abicoder v2;

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

    uint256 public constant frogePrice = 50000000000000000; //0.05eth

    uint public constant maxFrogePurchase = 20;

    uint256 public constant MAX_FROGES = 10000;

    bool public saleIsActive = false;

    // This Froges are reserved for the team (giveaways and promotional purposes)
    uint public frogeReserve = 100;

    constructor() ERC721("CryptoFroges", "FROGES") { }
    
    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        msg.sender.transfer(balance);
    }
    
    function reserveFroges(address _to, uint256 _reserveAmount) public onlyOwner {        
        uint supply = totalSupply();
        require(_reserveAmount > 0 && _reserveAmount <= frogeReserve, "Not enough froges left for the team");
        for (uint i = 0; i < _reserveAmount; i++) {
            _safeMint(_to, supply + i);
        }
        frogeReserve = frogeReserve.sub(_reserveAmount);
    }


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


    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }
    
    
    function tokensOfOwner(address _owner) external view returns(uint256[] memory ) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }

    
    function mintCryptoFroge(uint numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint Froges");
        require(numberOfTokens > 0 && numberOfTokens <= maxFrogePurchase, "You can only mint 20 froges at a time.");
        require(totalSupply().add(numberOfTokens) <= MAX_FROGES, "Purchase would exceed max supply of Froges.");
        require(msg.value >= frogePrice.mul(numberOfTokens), "Ether value sent is incorrect.");
        
        for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = totalSupply();
            if (totalSupply() < MAX_FROGES) {
                _safeMint(msg.sender, mintIndex);
            }
        }

    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FROGES","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":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"frogePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"frogeReserve","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":"maxFrogePurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintCryptoFroge","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":"reserveFroges","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a60146101000a81548160ff0219169083151502179055506064600b553480156200003157600080fd5b506040518060400160405280600c81526020017f43727970746f46726f67657300000000000000000000000000000000000000008152506040518060400160405280600681526020017f46524f4745530000000000000000000000000000000000000000000000000000815250620000b66301ffc9a760e01b620001e960201b60201c565b8160069080519060200190620000ce929190620002c9565b508060079080519060200190620000e7929190620002c9565b50620001006380ac58cd60e01b620001e960201b60201c565b62000118635b5e139f60e01b620001e960201b60201c565b6200013063780e9d6360e01b620001e960201b60201c565b5050600062000144620002c160201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620003f4565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916141562000255576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200024c90620003c1565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200030157600085556200034d565b82601f106200031c57805160ff19168380011785556200034d565b828001600101855582156200034d579182015b828111156200034c5782518255916020019190600101906200032f565b5b5090506200035c919062000360565b5090565b5b808211156200037b57600081600090555060010162000361565b5090565b60006200038e601c83620003e3565b91507f4552433136353a20696e76616c696420696e74657266616365206964000000006000830152602082019050919050565b60006020820190508181036000830152620003dc816200037f565b9050919050565b600082825260208201905092915050565b6141e880620004046000396000f3fe6080604052600436106101d85760003560e01c80636352211e1161010257806395d89b4111610095578063d65064a911610064578063d65064a91461069d578063e985e9c5146106c8578063eb8d244414610705578063f2fde38b14610730576101d8565b806395d89b41146105e3578063a22cb4651461060e578063b88d4fde14610637578063c87b56dd14610660576101d8565b8063715018a6116100d1578063715018a61461054857806373fde0581461055f5780638462151c1461057b5780638da5cb5b146105b8576101d8565b80636352211e1461047a5780636c0360eb146104b75780636f046686146104e257806370a082311461050b576101d8565b80632f745c591161017a57806342842e0e1161014957806342842e0e146103c05780634f6ccce7146103e957806355f804b31461042657806360aa9fcb1461044f576101d8565b80632f745c591461032a57806334918dfd14610367578063377e1c411461037e5780633ccfd60b146103a9576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d65780632c01d622146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612ea9565b610759565b6040516102119190613b50565b60405180910390f35b34801561022657600080fd5b5061022f6107c0565b60405161023c9190613b6b565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612f3c565b610862565b6040516102799190613ac7565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612e6d565b6108e7565b005b3480156102b757600080fd5b506102c06109ff565b6040516102cd9190613eed565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190612d67565b610a10565b005b34801561030b57600080fd5b50610314610a70565b6040516103219190613eed565b60405180910390f35b34801561033657600080fd5b50610351600480360381019061034c9190612e6d565b610a7b565b60405161035e9190613eed565b60405180910390f35b34801561037357600080fd5b5061037c610ad6565b005b34801561038a57600080fd5b50610393610b7e565b6040516103a09190613eed565b60405180910390f35b3480156103b557600080fd5b506103be610b83565b005b3480156103cc57600080fd5b506103e760048036038101906103e29190612d67565b610c4e565b005b3480156103f557600080fd5b50610410600480360381019061040b9190612f3c565b610c6e565b60405161041d9190613eed565b60405180910390f35b34801561043257600080fd5b5061044d60048036038101906104489190612efb565b610c91565b005b34801561045b57600080fd5b50610464610d19565b6040516104719190613eed565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c9190612f3c565b610d1f565b6040516104ae9190613ac7565b60405180910390f35b3480156104c357600080fd5b506104cc610d56565b6040516104d99190613b6b565b60405180910390f35b3480156104ee57600080fd5b5061050960048036038101906105049190612e6d565b610df8565b005b34801561051757600080fd5b50610532600480360381019061052d9190612d02565b610f16565b60405161053f9190613eed565b60405180910390f35b34801561055457600080fd5b5061055d610fd5565b005b61057960048036038101906105749190612f3c565b611112565b005b34801561058757600080fd5b506105a2600480360381019061059d9190612d02565b6112b0565b6040516105af9190613b2e565b60405180910390f35b3480156105c457600080fd5b506105cd6113a9565b6040516105da9190613ac7565b60405180910390f35b3480156105ef57600080fd5b506105f86113d3565b6040516106059190613b6b565b60405180910390f35b34801561061a57600080fd5b5061063560048036038101906106309190612e31565b611475565b005b34801561064357600080fd5b5061065e60048036038101906106599190612db6565b6115f6565b005b34801561066c57600080fd5b5061068760048036038101906106829190612f3c565b611658565b6040516106949190613b6b565b60405180910390f35b3480156106a957600080fd5b506106b26117db565b6040516106bf9190613eed565b60405180910390f35b3480156106d457600080fd5b506106ef60048036038101906106ea9190612d2b565b6117e1565b6040516106fc9190613b50565b60405180910390f35b34801561071157600080fd5b5061071a611875565b6040516107279190613b50565b60405180910390f35b34801561073c57600080fd5b5061075760048036038101906107529190612d02565b611888565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156108585780601f1061082d57610100808354040283529160200191610858565b820191906000526020600020905b81548152906001019060200180831161083b57829003601f168201915b5050505050905090565b600061086d82611a34565b6108ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a390613ded565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f282610d1f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095a90613e6d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610982611a51565b73ffffffffffffffffffffffffffffffffffffffff1614806109b157506109b0816109ab611a51565b6117e1565b5b6109f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e790613ced565b60405180910390fd5b6109fa8383611a59565b505050565b6000610a0b6002611b12565b905090565b610a21610a1b611a51565b82611b27565b610a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5790613ead565b60405180910390fd5b610a6b838383611c05565b505050565b66b1a2bc2ec5000081565b6000610ace82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611e1c90919063ffffffff16565b905092915050565b610ade611a51565b73ffffffffffffffffffffffffffffffffffffffff16610afc6113a9565b73ffffffffffffffffffffffffffffffffffffffff1614610b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4990613e0d565b60405180910390fd5b600a60149054906101000a900460ff1615600a60146101000a81548160ff021916908315150217905550565b601481565b610b8b611a51565b73ffffffffffffffffffffffffffffffffffffffff16610ba96113a9565b73ffffffffffffffffffffffffffffffffffffffff1614610bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf690613e0d565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c4a573d6000803e3d6000fd5b5050565b610c69838383604051806020016040528060008152506115f6565b505050565b600080610c85836002611e3690919063ffffffff16565b50905080915050919050565b610c99611a51565b73ffffffffffffffffffffffffffffffffffffffff16610cb76113a9565b73ffffffffffffffffffffffffffffffffffffffff1614610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0490613e0d565b60405180910390fd5b610d1681611e62565b50565b600b5481565b6000610d4f8260405180606001604052806029815260200161418a602991396002611e7c9092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610dee5780601f10610dc357610100808354040283529160200191610dee565b820191906000526020600020905b815481529060010190602001808311610dd157829003601f168201915b5050505050905090565b610e00611a51565b73ffffffffffffffffffffffffffffffffffffffff16610e1e6113a9565b73ffffffffffffffffffffffffffffffffffffffff1614610e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6b90613e0d565b60405180910390fd5b6000610e7e6109ff565b9050600082118015610e925750600b548211155b610ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec890613d2d565b60405180910390fd5b60005b82811015610ef557610ee884828401611e9b565b8080600101915050610ed4565b50610f0b82600b54611eb990919063ffffffff16565b600b81905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7e90613d4d565b60405180910390fd5b610fce600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611f09565b9050919050565b610fdd611a51565b73ffffffffffffffffffffffffffffffffffffffff16610ffb6113a9565b73ffffffffffffffffffffffffffffffffffffffff1614611051576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104890613e0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600a60149054906101000a900460ff16611161576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115890613d6d565b60405180910390fd5b600081118015611172575060148111155b6111b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a890613d0d565b60405180910390fd5b6127106111ce826111c06109ff565b611f1e90919063ffffffff16565b111561120f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120690613bad565b60405180910390fd5b6112298166b1a2bc2ec50000611f7390919063ffffffff16565b34101561126b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126290613e8d565b60405180910390fd5b60005b818110156112ac5760006112806109ff565b905061271061128d6109ff565b101561129e5761129d3382611e9b565b5b50808060010191505061126e565b5050565b606060006112bd83610f16565b9050600081141561131857600067ffffffffffffffff811180156112e057600080fd5b5060405190808252806020026020018201604052801561130f5781602001602082028036833780820191505090505b509150506113a4565b60008167ffffffffffffffff8111801561133157600080fd5b506040519080825280602002602001820160405280156113605781602001602082028036833780820191505090505b50905060005b8281101561139d576113788582610a7b565b82828151811061138457fe5b6020026020010181815250508080600101915050611366565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561146b5780601f106114405761010080835404028352916020019161146b565b820191906000526020600020905b81548152906001019060200180831161144e57829003601f168201915b5050505050905090565b61147d611a51565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e290613c6d565b60405180910390fd5b80600560006114f8611a51565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115a5611a51565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115ea9190613b50565b60405180910390a35050565b611607611601611a51565b83611b27565b611646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163d90613ead565b60405180910390fd5b61165284848484611fe3565b50505050565b606061166382611a34565b6116a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169990613e4d565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561174b5780601f106117205761010080835404028352916020019161174b565b820191906000526020600020905b81548152906001019060200180831161172e57829003601f168201915b50505050509050600061175c610d56565b90506000815114156117725781925050506117d6565b6000825111156117a757808260405160200161178f929190613aa3565b604051602081830303815290604052925050506117d6565b806117b18561203f565b6040516020016117c2929190613aa3565b604051602081830303815290604052925050505b919050565b61271081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60149054906101000a900460ff1681565b611890611a51565b73ffffffffffffffffffffffffffffffffffffffff166118ae6113a9565b73ffffffffffffffffffffffffffffffffffffffff1614611904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fb90613e0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196b90613bed565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611a4a82600261218690919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611acc83610d1f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b20826000016121a0565b9050919050565b6000611b3282611a34565b611b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6890613ccd565b60405180910390fd5b6000611b7c83610d1f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611beb57508373ffffffffffffffffffffffffffffffffffffffff16611bd384610862565b73ffffffffffffffffffffffffffffffffffffffff16145b80611bfc5750611bfb81856117e1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c2582610d1f565b73ffffffffffffffffffffffffffffffffffffffff1614611c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7290613e2d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce290613c4d565b60405180910390fd5b611cf68383836121b1565b611d01600082611a59565b611d5281600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206121b690919063ffffffff16565b50611da481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206121d090919063ffffffff16565b50611dbb818360026121ea9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000611e2b836000018361221f565b60001c905092915050565b600080600080611e49866000018661228c565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190611e78929190612b1e565b5050565b6000611e8f846000018460001b8461230f565b60001c90509392505050565b611eb58282604051806020016040528060008152506123a0565b5050565b600082821115611efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef590613c8d565b60405180910390fd5b818303905092915050565b6000611f17826000016123fb565b9050919050565b600080828401905083811015611f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6090613c2d565b60405180910390fd5b8091505092915050565b600080831415611f865760009050611fdd565b6000828402905082848281611f9757fe5b0414611fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcf90613dcd565b60405180910390fd5b809150505b92915050565b611fee848484611c05565b611ffa8484848461240c565b612039576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203090613bcd565b60405180910390fd5b50505050565b60606000821415612087576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612181565b600082905060005b600082146120b1578080600101915050600a82816120a957fe5b04915061208f565b60008167ffffffffffffffff811180156120ca57600080fd5b506040519080825280601f01601f1916602001820160405280156120fd5781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461217957600a848161211e57fe5b0660300160f81b8282806001900393508151811061213857fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161217157fe5b04935061210c565b819450505050505b919050565b6000612198836000018360001b612570565b905092915050565b600081600001805490509050919050565b505050565b60006121c8836000018360001b612593565b905092915050565b60006121e2836000018360001b61267b565b905092915050565b6000612216846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b6126eb565b90509392505050565b60008183600001805490501161226a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226190613b8d565b60405180910390fd5b82600001828154811061227957fe5b9060005260206000200154905092915050565b600080828460000180549050116122d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cf90613d8d565b60405180910390fd5b60008460000184815481106122e957fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612371576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123689190613b6b565b60405180910390fd5b5084600001600182038154811061238457fe5b9060005260206000209060020201600101549150509392505050565b6123aa83836127c7565b6123b7600084848461240c565b6123f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ed90613bcd565b60405180910390fd5b505050565b600081600001805490509050919050565b600061242d8473ffffffffffffffffffffffffffffffffffffffff16612955565b61243a5760019050612568565b600061250163150b7a0260e01b61244f611a51565b8887876040516024016124659493929190613ae2565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614158603291398773ffffffffffffffffffffffffffffffffffffffff166129689092919063ffffffff16565b90506000818060200190518101906125199190612ed2565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b6000808360010160008481526020019081526020016000205490506000811461266f57600060018203905060006001866000018054905003905060008660000182815481106125de57fe5b90600052602060002001549050808760000184815481106125fb57fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061263357fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612675565b60009150505b92915050565b60006126878383612980565b6126e05782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506126e5565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415612792578460000160405180604001604052808681526020018581525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010155505084600001805490508560010160008681526020019081526020016000208190555060019150506127c0565b828560000160018303815481106127a557fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612837576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282e90613dad565b60405180910390fd5b61284081611a34565b15612880576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287790613c0d565b60405180910390fd5b61288c600083836121b1565b6128dd81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206121d090919063ffffffff16565b506128f4818360026121ea9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b606061297784846000856129a3565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b6060824710156129e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129df90613cad565b60405180910390fd5b6129f185612955565b612a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2790613ecd565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051612a599190613a8c565b60006040518083038185875af1925050503d8060008114612a96576040519150601f19603f3d011682016040523d82523d6000602084013e612a9b565b606091505b5091509150612aab828286612ab7565b92505050949350505050565b60608315612ac757829050612b17565b600083511115612ada5782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0e9190613b6b565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282612b545760008555612b9b565b82601f10612b6d57805160ff1916838001178555612b9b565b82800160010185558215612b9b579182015b82811115612b9a578251825591602001919060010190612b7f565b5b509050612ba89190612bac565b5090565b5b80821115612bc5576000816000905550600101612bad565b5090565b6000612bdc612bd784613f39565b613f08565b905082815260208101848484011115612bf457600080fd5b612bff8482856140a6565b509392505050565b6000612c1a612c1584613f69565b613f08565b905082815260208101848484011115612c3257600080fd5b612c3d8482856140a6565b509392505050565b600081359050612c54816140fb565b92915050565b600081359050612c6981614112565b92915050565b600081359050612c7e81614129565b92915050565b600081519050612c9381614129565b92915050565b600082601f830112612caa57600080fd5b8135612cba848260208601612bc9565b91505092915050565b600082601f830112612cd457600080fd5b8135612ce4848260208601612c07565b91505092915050565b600081359050612cfc81614140565b92915050565b600060208284031215612d1457600080fd5b6000612d2284828501612c45565b91505092915050565b60008060408385031215612d3e57600080fd5b6000612d4c85828601612c45565b9250506020612d5d85828601612c45565b9150509250929050565b600080600060608486031215612d7c57600080fd5b6000612d8a86828701612c45565b9350506020612d9b86828701612c45565b9250506040612dac86828701612ced565b9150509250925092565b60008060008060808587031215612dcc57600080fd5b6000612dda87828801612c45565b9450506020612deb87828801612c45565b9350506040612dfc87828801612ced565b925050606085013567ffffffffffffffff811115612e1957600080fd5b612e2587828801612c99565b91505092959194509250565b60008060408385031215612e4457600080fd5b6000612e5285828601612c45565b9250506020612e6385828601612c5a565b9150509250929050565b60008060408385031215612e8057600080fd5b6000612e8e85828601612c45565b9250506020612e9f85828601612ced565b9150509250929050565b600060208284031215612ebb57600080fd5b6000612ec984828501612c6f565b91505092915050565b600060208284031215612ee457600080fd5b6000612ef284828501612c84565b91505092915050565b600060208284031215612f0d57600080fd5b600082013567ffffffffffffffff811115612f2757600080fd5b612f3384828501612cc3565b91505092915050565b600060208284031215612f4e57600080fd5b6000612f5c84828501612ced565b91505092915050565b6000612f718383613a6e565b60208301905092915050565b612f8681614032565b82525050565b612f9581614020565b82525050565b6000612fa682613fa9565b612fb08185613fd7565b9350612fbb83613f99565b8060005b83811015612fec578151612fd38882612f65565b9750612fde83613fca565b925050600181019050612fbf565b5085935050505092915050565b61300281614044565b82525050565b600061301382613fb4565b61301d8185613fe8565b935061302d8185602086016140b5565b613036816140ea565b840191505092915050565b600061304c82613fb4565b6130568185613ff9565b93506130668185602086016140b5565b80840191505092915050565b600061307d82613fbf565b6130878185614004565b93506130978185602086016140b5565b6130a0816140ea565b840191505092915050565b60006130b682613fbf565b6130c08185614015565b93506130d08185602086016140b5565b80840191505092915050565b60006130e9602283614004565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061314f602b83614004565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f662046726f6765732e0000000000000000000000000000000000000000006020830152604082019050919050565b60006131b5603283614004565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061321b602683614004565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613281601c83614004565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006132c1601b83614004565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000613301602483614004565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613367601983614004565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006133a7601e83614004565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b60006133e7602683614004565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061344d602c83614004565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006134b3603883614004565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613519602683614004565b91507f596f752063616e206f6e6c79206d696e742032302066726f676573206174206160008301527f2074696d652e00000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061357f602383614004565b91507f4e6f7420656e6f7567682066726f676573206c65667420666f7220746865207460008301527f65616d00000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006135e5602a83614004565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061364b602283614004565b91507f53616c65206d7573742062652061637469766520746f206d696e742046726f6760008301527f65730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006136b1602283614004565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613717602083614004565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613757602183614004565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137bd602c83614004565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613823602083614004565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613863602983614004565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006138c9602f83614004565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061392f602183614004565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613995601e83614004565b91507f45746865722076616c75652073656e7420697320696e636f72726563742e00006000830152602082019050919050565b60006139d5603183614004565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613a3b601d83614004565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b613a778161409c565b82525050565b613a868161409c565b82525050565b6000613a988284613041565b915081905092915050565b6000613aaf82856130ab565b9150613abb82846130ab565b91508190509392505050565b6000602082019050613adc6000830184612f8c565b92915050565b6000608082019050613af76000830187612f7d565b613b046020830186612f8c565b613b116040830185613a7d565b8181036060830152613b238184613008565b905095945050505050565b60006020820190508181036000830152613b488184612f9b565b905092915050565b6000602082019050613b656000830184612ff9565b92915050565b60006020820190508181036000830152613b858184613072565b905092915050565b60006020820190508181036000830152613ba6816130dc565b9050919050565b60006020820190508181036000830152613bc681613142565b9050919050565b60006020820190508181036000830152613be6816131a8565b9050919050565b60006020820190508181036000830152613c068161320e565b9050919050565b60006020820190508181036000830152613c2681613274565b9050919050565b60006020820190508181036000830152613c46816132b4565b9050919050565b60006020820190508181036000830152613c66816132f4565b9050919050565b60006020820190508181036000830152613c868161335a565b9050919050565b60006020820190508181036000830152613ca68161339a565b9050919050565b60006020820190508181036000830152613cc6816133da565b9050919050565b60006020820190508181036000830152613ce681613440565b9050919050565b60006020820190508181036000830152613d06816134a6565b9050919050565b60006020820190508181036000830152613d268161350c565b9050919050565b60006020820190508181036000830152613d4681613572565b9050919050565b60006020820190508181036000830152613d66816135d8565b9050919050565b60006020820190508181036000830152613d868161363e565b9050919050565b60006020820190508181036000830152613da6816136a4565b9050919050565b60006020820190508181036000830152613dc68161370a565b9050919050565b60006020820190508181036000830152613de68161374a565b9050919050565b60006020820190508181036000830152613e06816137b0565b9050919050565b60006020820190508181036000830152613e2681613816565b9050919050565b60006020820190508181036000830152613e4681613856565b9050919050565b60006020820190508181036000830152613e66816138bc565b9050919050565b60006020820190508181036000830152613e8681613922565b9050919050565b60006020820190508181036000830152613ea681613988565b9050919050565b60006020820190508181036000830152613ec6816139c8565b9050919050565b60006020820190508181036000830152613ee681613a2e565b9050919050565b6000602082019050613f026000830184613a7d565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613f2f57613f2e6140e8565b5b8060405250919050565b600067ffffffffffffffff821115613f5457613f536140e8565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613f8457613f836140e8565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061402b8261407c565b9050919050565b600061403d8261407c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156140d35780820151818401526020810190506140b8565b838111156140e2576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b61410481614020565b811461410f57600080fd5b50565b61411b81614044565b811461412657600080fd5b50565b61413281614050565b811461413d57600080fd5b50565b6141498161409c565b811461415457600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220ae098e1013bd7087c245d105c83cbab10f6192290389d000eb5f06c48cc8016f64736f6c63430007060033

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80636352211e1161010257806395d89b4111610095578063d65064a911610064578063d65064a91461069d578063e985e9c5146106c8578063eb8d244414610705578063f2fde38b14610730576101d8565b806395d89b41146105e3578063a22cb4651461060e578063b88d4fde14610637578063c87b56dd14610660576101d8565b8063715018a6116100d1578063715018a61461054857806373fde0581461055f5780638462151c1461057b5780638da5cb5b146105b8576101d8565b80636352211e1461047a5780636c0360eb146104b75780636f046686146104e257806370a082311461050b576101d8565b80632f745c591161017a57806342842e0e1161014957806342842e0e146103c05780634f6ccce7146103e957806355f804b31461042657806360aa9fcb1461044f576101d8565b80632f745c591461032a57806334918dfd14610367578063377e1c411461037e5780633ccfd60b146103a9576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d65780632c01d622146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612ea9565b610759565b6040516102119190613b50565b60405180910390f35b34801561022657600080fd5b5061022f6107c0565b60405161023c9190613b6b565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612f3c565b610862565b6040516102799190613ac7565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612e6d565b6108e7565b005b3480156102b757600080fd5b506102c06109ff565b6040516102cd9190613eed565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190612d67565b610a10565b005b34801561030b57600080fd5b50610314610a70565b6040516103219190613eed565b60405180910390f35b34801561033657600080fd5b50610351600480360381019061034c9190612e6d565b610a7b565b60405161035e9190613eed565b60405180910390f35b34801561037357600080fd5b5061037c610ad6565b005b34801561038a57600080fd5b50610393610b7e565b6040516103a09190613eed565b60405180910390f35b3480156103b557600080fd5b506103be610b83565b005b3480156103cc57600080fd5b506103e760048036038101906103e29190612d67565b610c4e565b005b3480156103f557600080fd5b50610410600480360381019061040b9190612f3c565b610c6e565b60405161041d9190613eed565b60405180910390f35b34801561043257600080fd5b5061044d60048036038101906104489190612efb565b610c91565b005b34801561045b57600080fd5b50610464610d19565b6040516104719190613eed565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c9190612f3c565b610d1f565b6040516104ae9190613ac7565b60405180910390f35b3480156104c357600080fd5b506104cc610d56565b6040516104d99190613b6b565b60405180910390f35b3480156104ee57600080fd5b5061050960048036038101906105049190612e6d565b610df8565b005b34801561051757600080fd5b50610532600480360381019061052d9190612d02565b610f16565b60405161053f9190613eed565b60405180910390f35b34801561055457600080fd5b5061055d610fd5565b005b61057960048036038101906105749190612f3c565b611112565b005b34801561058757600080fd5b506105a2600480360381019061059d9190612d02565b6112b0565b6040516105af9190613b2e565b60405180910390f35b3480156105c457600080fd5b506105cd6113a9565b6040516105da9190613ac7565b60405180910390f35b3480156105ef57600080fd5b506105f86113d3565b6040516106059190613b6b565b60405180910390f35b34801561061a57600080fd5b5061063560048036038101906106309190612e31565b611475565b005b34801561064357600080fd5b5061065e60048036038101906106599190612db6565b6115f6565b005b34801561066c57600080fd5b5061068760048036038101906106829190612f3c565b611658565b6040516106949190613b6b565b60405180910390f35b3480156106a957600080fd5b506106b26117db565b6040516106bf9190613eed565b60405180910390f35b3480156106d457600080fd5b506106ef60048036038101906106ea9190612d2b565b6117e1565b6040516106fc9190613b50565b60405180910390f35b34801561071157600080fd5b5061071a611875565b6040516107279190613b50565b60405180910390f35b34801561073c57600080fd5b5061075760048036038101906107529190612d02565b611888565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156108585780601f1061082d57610100808354040283529160200191610858565b820191906000526020600020905b81548152906001019060200180831161083b57829003601f168201915b5050505050905090565b600061086d82611a34565b6108ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a390613ded565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f282610d1f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095a90613e6d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610982611a51565b73ffffffffffffffffffffffffffffffffffffffff1614806109b157506109b0816109ab611a51565b6117e1565b5b6109f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e790613ced565b60405180910390fd5b6109fa8383611a59565b505050565b6000610a0b6002611b12565b905090565b610a21610a1b611a51565b82611b27565b610a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5790613ead565b60405180910390fd5b610a6b838383611c05565b505050565b66b1a2bc2ec5000081565b6000610ace82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611e1c90919063ffffffff16565b905092915050565b610ade611a51565b73ffffffffffffffffffffffffffffffffffffffff16610afc6113a9565b73ffffffffffffffffffffffffffffffffffffffff1614610b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4990613e0d565b60405180910390fd5b600a60149054906101000a900460ff1615600a60146101000a81548160ff021916908315150217905550565b601481565b610b8b611a51565b73ffffffffffffffffffffffffffffffffffffffff16610ba96113a9565b73ffffffffffffffffffffffffffffffffffffffff1614610bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf690613e0d565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c4a573d6000803e3d6000fd5b5050565b610c69838383604051806020016040528060008152506115f6565b505050565b600080610c85836002611e3690919063ffffffff16565b50905080915050919050565b610c99611a51565b73ffffffffffffffffffffffffffffffffffffffff16610cb76113a9565b73ffffffffffffffffffffffffffffffffffffffff1614610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0490613e0d565b60405180910390fd5b610d1681611e62565b50565b600b5481565b6000610d4f8260405180606001604052806029815260200161418a602991396002611e7c9092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610dee5780601f10610dc357610100808354040283529160200191610dee565b820191906000526020600020905b815481529060010190602001808311610dd157829003601f168201915b5050505050905090565b610e00611a51565b73ffffffffffffffffffffffffffffffffffffffff16610e1e6113a9565b73ffffffffffffffffffffffffffffffffffffffff1614610e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6b90613e0d565b60405180910390fd5b6000610e7e6109ff565b9050600082118015610e925750600b548211155b610ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec890613d2d565b60405180910390fd5b60005b82811015610ef557610ee884828401611e9b565b8080600101915050610ed4565b50610f0b82600b54611eb990919063ffffffff16565b600b81905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7e90613d4d565b60405180910390fd5b610fce600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611f09565b9050919050565b610fdd611a51565b73ffffffffffffffffffffffffffffffffffffffff16610ffb6113a9565b73ffffffffffffffffffffffffffffffffffffffff1614611051576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104890613e0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600a60149054906101000a900460ff16611161576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115890613d6d565b60405180910390fd5b600081118015611172575060148111155b6111b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a890613d0d565b60405180910390fd5b6127106111ce826111c06109ff565b611f1e90919063ffffffff16565b111561120f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120690613bad565b60405180910390fd5b6112298166b1a2bc2ec50000611f7390919063ffffffff16565b34101561126b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126290613e8d565b60405180910390fd5b60005b818110156112ac5760006112806109ff565b905061271061128d6109ff565b101561129e5761129d3382611e9b565b5b50808060010191505061126e565b5050565b606060006112bd83610f16565b9050600081141561131857600067ffffffffffffffff811180156112e057600080fd5b5060405190808252806020026020018201604052801561130f5781602001602082028036833780820191505090505b509150506113a4565b60008167ffffffffffffffff8111801561133157600080fd5b506040519080825280602002602001820160405280156113605781602001602082028036833780820191505090505b50905060005b8281101561139d576113788582610a7b565b82828151811061138457fe5b6020026020010181815250508080600101915050611366565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561146b5780601f106114405761010080835404028352916020019161146b565b820191906000526020600020905b81548152906001019060200180831161144e57829003601f168201915b5050505050905090565b61147d611a51565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e290613c6d565b60405180910390fd5b80600560006114f8611a51565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115a5611a51565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115ea9190613b50565b60405180910390a35050565b611607611601611a51565b83611b27565b611646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163d90613ead565b60405180910390fd5b61165284848484611fe3565b50505050565b606061166382611a34565b6116a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169990613e4d565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561174b5780601f106117205761010080835404028352916020019161174b565b820191906000526020600020905b81548152906001019060200180831161172e57829003601f168201915b50505050509050600061175c610d56565b90506000815114156117725781925050506117d6565b6000825111156117a757808260405160200161178f929190613aa3565b604051602081830303815290604052925050506117d6565b806117b18561203f565b6040516020016117c2929190613aa3565b604051602081830303815290604052925050505b919050565b61271081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60149054906101000a900460ff1681565b611890611a51565b73ffffffffffffffffffffffffffffffffffffffff166118ae6113a9565b73ffffffffffffffffffffffffffffffffffffffff1614611904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fb90613e0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196b90613bed565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611a4a82600261218690919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611acc83610d1f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b20826000016121a0565b9050919050565b6000611b3282611a34565b611b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6890613ccd565b60405180910390fd5b6000611b7c83610d1f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611beb57508373ffffffffffffffffffffffffffffffffffffffff16611bd384610862565b73ffffffffffffffffffffffffffffffffffffffff16145b80611bfc5750611bfb81856117e1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c2582610d1f565b73ffffffffffffffffffffffffffffffffffffffff1614611c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7290613e2d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce290613c4d565b60405180910390fd5b611cf68383836121b1565b611d01600082611a59565b611d5281600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206121b690919063ffffffff16565b50611da481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206121d090919063ffffffff16565b50611dbb818360026121ea9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000611e2b836000018361221f565b60001c905092915050565b600080600080611e49866000018661228c565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190611e78929190612b1e565b5050565b6000611e8f846000018460001b8461230f565b60001c90509392505050565b611eb58282604051806020016040528060008152506123a0565b5050565b600082821115611efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef590613c8d565b60405180910390fd5b818303905092915050565b6000611f17826000016123fb565b9050919050565b600080828401905083811015611f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6090613c2d565b60405180910390fd5b8091505092915050565b600080831415611f865760009050611fdd565b6000828402905082848281611f9757fe5b0414611fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcf90613dcd565b60405180910390fd5b809150505b92915050565b611fee848484611c05565b611ffa8484848461240c565b612039576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203090613bcd565b60405180910390fd5b50505050565b60606000821415612087576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612181565b600082905060005b600082146120b1578080600101915050600a82816120a957fe5b04915061208f565b60008167ffffffffffffffff811180156120ca57600080fd5b506040519080825280601f01601f1916602001820160405280156120fd5781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461217957600a848161211e57fe5b0660300160f81b8282806001900393508151811061213857fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161217157fe5b04935061210c565b819450505050505b919050565b6000612198836000018360001b612570565b905092915050565b600081600001805490509050919050565b505050565b60006121c8836000018360001b612593565b905092915050565b60006121e2836000018360001b61267b565b905092915050565b6000612216846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b6126eb565b90509392505050565b60008183600001805490501161226a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226190613b8d565b60405180910390fd5b82600001828154811061227957fe5b9060005260206000200154905092915050565b600080828460000180549050116122d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cf90613d8d565b60405180910390fd5b60008460000184815481106122e957fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612371576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123689190613b6b565b60405180910390fd5b5084600001600182038154811061238457fe5b9060005260206000209060020201600101549150509392505050565b6123aa83836127c7565b6123b7600084848461240c565b6123f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ed90613bcd565b60405180910390fd5b505050565b600081600001805490509050919050565b600061242d8473ffffffffffffffffffffffffffffffffffffffff16612955565b61243a5760019050612568565b600061250163150b7a0260e01b61244f611a51565b8887876040516024016124659493929190613ae2565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614158603291398773ffffffffffffffffffffffffffffffffffffffff166129689092919063ffffffff16565b90506000818060200190518101906125199190612ed2565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b6000808360010160008481526020019081526020016000205490506000811461266f57600060018203905060006001866000018054905003905060008660000182815481106125de57fe5b90600052602060002001549050808760000184815481106125fb57fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061263357fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612675565b60009150505b92915050565b60006126878383612980565b6126e05782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506126e5565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415612792578460000160405180604001604052808681526020018581525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010155505084600001805490508560010160008681526020019081526020016000208190555060019150506127c0565b828560000160018303815481106127a557fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612837576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282e90613dad565b60405180910390fd5b61284081611a34565b15612880576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287790613c0d565b60405180910390fd5b61288c600083836121b1565b6128dd81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206121d090919063ffffffff16565b506128f4818360026121ea9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b606061297784846000856129a3565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b6060824710156129e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129df90613cad565b60405180910390fd5b6129f185612955565b612a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2790613ecd565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051612a599190613a8c565b60006040518083038185875af1925050503d8060008114612a96576040519150601f19603f3d011682016040523d82523d6000602084013e612a9b565b606091505b5091509150612aab828286612ab7565b92505050949350505050565b60608315612ac757829050612b17565b600083511115612ada5782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0e9190613b6b565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282612b545760008555612b9b565b82601f10612b6d57805160ff1916838001178555612b9b565b82800160010185558215612b9b579182015b82811115612b9a578251825591602001919060010190612b7f565b5b509050612ba89190612bac565b5090565b5b80821115612bc5576000816000905550600101612bad565b5090565b6000612bdc612bd784613f39565b613f08565b905082815260208101848484011115612bf457600080fd5b612bff8482856140a6565b509392505050565b6000612c1a612c1584613f69565b613f08565b905082815260208101848484011115612c3257600080fd5b612c3d8482856140a6565b509392505050565b600081359050612c54816140fb565b92915050565b600081359050612c6981614112565b92915050565b600081359050612c7e81614129565b92915050565b600081519050612c9381614129565b92915050565b600082601f830112612caa57600080fd5b8135612cba848260208601612bc9565b91505092915050565b600082601f830112612cd457600080fd5b8135612ce4848260208601612c07565b91505092915050565b600081359050612cfc81614140565b92915050565b600060208284031215612d1457600080fd5b6000612d2284828501612c45565b91505092915050565b60008060408385031215612d3e57600080fd5b6000612d4c85828601612c45565b9250506020612d5d85828601612c45565b9150509250929050565b600080600060608486031215612d7c57600080fd5b6000612d8a86828701612c45565b9350506020612d9b86828701612c45565b9250506040612dac86828701612ced565b9150509250925092565b60008060008060808587031215612dcc57600080fd5b6000612dda87828801612c45565b9450506020612deb87828801612c45565b9350506040612dfc87828801612ced565b925050606085013567ffffffffffffffff811115612e1957600080fd5b612e2587828801612c99565b91505092959194509250565b60008060408385031215612e4457600080fd5b6000612e5285828601612c45565b9250506020612e6385828601612c5a565b9150509250929050565b60008060408385031215612e8057600080fd5b6000612e8e85828601612c45565b9250506020612e9f85828601612ced565b9150509250929050565b600060208284031215612ebb57600080fd5b6000612ec984828501612c6f565b91505092915050565b600060208284031215612ee457600080fd5b6000612ef284828501612c84565b91505092915050565b600060208284031215612f0d57600080fd5b600082013567ffffffffffffffff811115612f2757600080fd5b612f3384828501612cc3565b91505092915050565b600060208284031215612f4e57600080fd5b6000612f5c84828501612ced565b91505092915050565b6000612f718383613a6e565b60208301905092915050565b612f8681614032565b82525050565b612f9581614020565b82525050565b6000612fa682613fa9565b612fb08185613fd7565b9350612fbb83613f99565b8060005b83811015612fec578151612fd38882612f65565b9750612fde83613fca565b925050600181019050612fbf565b5085935050505092915050565b61300281614044565b82525050565b600061301382613fb4565b61301d8185613fe8565b935061302d8185602086016140b5565b613036816140ea565b840191505092915050565b600061304c82613fb4565b6130568185613ff9565b93506130668185602086016140b5565b80840191505092915050565b600061307d82613fbf565b6130878185614004565b93506130978185602086016140b5565b6130a0816140ea565b840191505092915050565b60006130b682613fbf565b6130c08185614015565b93506130d08185602086016140b5565b80840191505092915050565b60006130e9602283614004565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061314f602b83614004565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f662046726f6765732e0000000000000000000000000000000000000000006020830152604082019050919050565b60006131b5603283614004565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061321b602683614004565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613281601c83614004565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006132c1601b83614004565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000613301602483614004565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613367601983614004565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006133a7601e83614004565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b60006133e7602683614004565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061344d602c83614004565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006134b3603883614004565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613519602683614004565b91507f596f752063616e206f6e6c79206d696e742032302066726f676573206174206160008301527f2074696d652e00000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061357f602383614004565b91507f4e6f7420656e6f7567682066726f676573206c65667420666f7220746865207460008301527f65616d00000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006135e5602a83614004565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061364b602283614004565b91507f53616c65206d7573742062652061637469766520746f206d696e742046726f6760008301527f65730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006136b1602283614004565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613717602083614004565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613757602183614004565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137bd602c83614004565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613823602083614004565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613863602983614004565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006138c9602f83614004565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061392f602183614004565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613995601e83614004565b91507f45746865722076616c75652073656e7420697320696e636f72726563742e00006000830152602082019050919050565b60006139d5603183614004565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613a3b601d83614004565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b613a778161409c565b82525050565b613a868161409c565b82525050565b6000613a988284613041565b915081905092915050565b6000613aaf82856130ab565b9150613abb82846130ab565b91508190509392505050565b6000602082019050613adc6000830184612f8c565b92915050565b6000608082019050613af76000830187612f7d565b613b046020830186612f8c565b613b116040830185613a7d565b8181036060830152613b238184613008565b905095945050505050565b60006020820190508181036000830152613b488184612f9b565b905092915050565b6000602082019050613b656000830184612ff9565b92915050565b60006020820190508181036000830152613b858184613072565b905092915050565b60006020820190508181036000830152613ba6816130dc565b9050919050565b60006020820190508181036000830152613bc681613142565b9050919050565b60006020820190508181036000830152613be6816131a8565b9050919050565b60006020820190508181036000830152613c068161320e565b9050919050565b60006020820190508181036000830152613c2681613274565b9050919050565b60006020820190508181036000830152613c46816132b4565b9050919050565b60006020820190508181036000830152613c66816132f4565b9050919050565b60006020820190508181036000830152613c868161335a565b9050919050565b60006020820190508181036000830152613ca68161339a565b9050919050565b60006020820190508181036000830152613cc6816133da565b9050919050565b60006020820190508181036000830152613ce681613440565b9050919050565b60006020820190508181036000830152613d06816134a6565b9050919050565b60006020820190508181036000830152613d268161350c565b9050919050565b60006020820190508181036000830152613d4681613572565b9050919050565b60006020820190508181036000830152613d66816135d8565b9050919050565b60006020820190508181036000830152613d868161363e565b9050919050565b60006020820190508181036000830152613da6816136a4565b9050919050565b60006020820190508181036000830152613dc68161370a565b9050919050565b60006020820190508181036000830152613de68161374a565b9050919050565b60006020820190508181036000830152613e06816137b0565b9050919050565b60006020820190508181036000830152613e2681613816565b9050919050565b60006020820190508181036000830152613e4681613856565b9050919050565b60006020820190508181036000830152613e66816138bc565b9050919050565b60006020820190508181036000830152613e8681613922565b9050919050565b60006020820190508181036000830152613ea681613988565b9050919050565b60006020820190508181036000830152613ec6816139c8565b9050919050565b60006020820190508181036000830152613ee681613a2e565b9050919050565b6000602082019050613f026000830184613a7d565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613f2f57613f2e6140e8565b5b8060405250919050565b600067ffffffffffffffff821115613f5457613f536140e8565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613f8457613f836140e8565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061402b8261407c565b9050919050565b600061403d8261407c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156140d35780820151818401526020810190506140b8565b838111156140e2576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b61410481614020565b811461410f57600080fd5b50565b61411b81614044565b811461412657600080fd5b50565b61413281614050565b811461413d57600080fd5b50565b6141498161409c565b811461415457600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220ae098e1013bd7087c245d105c83cbab10f6192290389d000eb5f06c48cc8016f64736f6c63430007060033

Deployed Bytecode Sourcemap

66877:2521:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10240:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51525:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54311:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53841:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53319:211;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55201:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66966:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53081:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68033:89;;;;;;;;;;;;;:::i;:::-;;67039:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67366:131;;;;;;;;;;;;;:::i;:::-;;55577:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53607:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67924:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67265:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51281:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52900:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67509:405;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50998:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66236:148;;;;;;;;;;;;;:::i;:::-;;68694:701;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68140:540;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65585:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51694:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54604:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55799:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51869:792;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67090:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54970:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67141:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66539:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10240:150;10325:4;10349:20;:33;10370:11;10349:33;;;;;;;;;;;;;;;;;;;;;;;;;;;10342:40;;10240:150;;;:::o;51525:100::-;51579:13;51612:5;51605:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51525:100;:::o;54311:221::-;54387:7;54415:16;54423:7;54415;:16::i;:::-;54407:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54500:15;:24;54516:7;54500:24;;;;;;;;;;;;;;;;;;;;;54493:31;;54311:221;;;:::o;53841:404::-;53922:13;53938:23;53953:7;53938:14;:23::i;:::-;53922:39;;53986:5;53980:11;;:2;:11;;;;53972:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;54066:5;54050:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;54075:44;54099:5;54106:12;:10;:12::i;:::-;54075:23;:44::i;:::-;54050:69;54042:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;54216:21;54225:2;54229:7;54216:8;:21::i;:::-;53841:404;;;:::o;53319:211::-;53380:7;53501:21;:12;:19;:21::i;:::-;53494:28;;53319:211;:::o;55201:305::-;55362:41;55381:12;:10;:12::i;:::-;55395:7;55362:18;:41::i;:::-;55354:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;55470:28;55480:4;55486:2;55490:7;55470:9;:28::i;:::-;55201:305;;;:::o;66966:54::-;67003:17;66966:54;:::o;53081:162::-;53178:7;53205:30;53229:5;53205:13;:20;53219:5;53205:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;53198:37;;53081:162;;;;:::o;68033:89::-;65816:12;:10;:12::i;:::-;65805:23;;:7;:5;:7::i;:::-;:23;;;65797:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68102:12:::1;;;;;;;;;;;68101:13;68086:12;;:28;;;;;;;;;;;;;;;;;;68033:89::o:0;67039:42::-;67079:2;67039:42;:::o;67366:131::-;65816:12;:10;:12::i;:::-;65805:23;;:7;:5;:7::i;:::-;:23;;;65797:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67414:12:::1;67429:21;67414:36;;67461:10;:19;;:28;67481:7;67461:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;65876:1;67366:131::o:0;55577:151::-;55681:39;55698:4;55704:2;55708:7;55681:39;;;;;;;;;;;;:16;:39::i;:::-;55577:151;;;:::o;53607:172::-;53682:7;53703:15;53724:22;53740:5;53724:12;:15;;:22;;;;:::i;:::-;53702:44;;;53764:7;53757:14;;;53607:172;;;:::o;67924:99::-;65816:12;:10;:12::i;:::-;65805:23;;:7;:5;:7::i;:::-;:23;;;65797:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67995:20:::1;68007:7;67995:11;:20::i;:::-;67924:99:::0;:::o;67265:30::-;;;;:::o;51281:177::-;51353:7;51380:70;51397:7;51380:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;51373:77;;51281:177;;;:::o;52900:97::-;52948:13;52981:8;52974:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52900:97;:::o;67509:405::-;65816:12;:10;:12::i;:::-;65805:23;;:7;:5;:7::i;:::-;:23;;;65797:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67605:11:::1;67619:13;:11;:13::i;:::-;67605:27;;67668:1;67651:14;:18;:52;;;;;67691:12;;67673:14;:30;;67651:52;67643:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;67759:6;67754:95;67775:14;67771:1;:18;67754:95;;;67811:26;67821:3;67835:1;67826:6;:10;67811:9;:26::i;:::-;67791:3;;;;;;;67754:95;;;;67874:32;67891:14;67874:12;;:16;;:32;;;;:::i;:::-;67859:12;:47;;;;65876:1;67509:405:::0;;:::o;50998:221::-;51070:7;51115:1;51098:19;;:5;:19;;;;51090:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;51182:29;:13;:20;51196:5;51182:20;;;;;;;;;;;;;;;:27;:29::i;:::-;51175:36;;50998:221;;;:::o;66236:148::-;65816:12;:10;:12::i;:::-;65805:23;;:7;:5;:7::i;:::-;:23;;;65797:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66343:1:::1;66306:40;;66327:6;;;;;;;;;;;66306:40;;;;;;;;;;;;66374:1;66357:6;;:19;;;;;;;;;;;;;;;;;;66236:148::o:0;68694:701::-;68774:12;;;;;;;;;;;68766:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;68861:1;68844:14;:18;:56;;;;;67079:2;68866:14;:34;;68844:56;68836:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;67127:5;68962:33;68980:14;68962:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:47;;68954:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;69089:30;69104:14;67003:17;69089:14;;:30;;;;:::i;:::-;69076:9;:43;;69068:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;69179:6;69175:211;69195:14;69191:1;:18;69175:211;;;69231:14;69248:13;:11;:13::i;:::-;69231:30;;67127:5;69280:13;:11;:13::i;:::-;:26;69276:99;;;69327:32;69337:10;69349:9;69327;:32::i;:::-;69276:99;69175:211;69211:3;;;;;;;69175:211;;;;68694:701;:::o;68140:540::-;68201:16;68231:18;68252:17;68262:6;68252:9;:17::i;:::-;68231:38;;68298:1;68284:10;:15;68280:393;;;68375:1;68361:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68354:23;;;;;68280:393;68410:23;68450:10;68436:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68410:51;;68476:13;68504:130;68528:10;68520:5;:18;68504:130;;;68584:34;68604:6;68612:5;68584:19;:34::i;:::-;68568:6;68575:5;68568:13;;;;;;;;;;;;;:50;;;;;68540:7;;;;;;;68504:130;;;68655:6;68648:13;;;;;68140:540;;;;:::o;65585:87::-;65631:7;65658:6;;;;;;;;;;;65651:13;;65585:87;:::o;51694:104::-;51750:13;51783:7;51776:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51694:104;:::o;54604:295::-;54719:12;:10;:12::i;:::-;54707:24;;:8;:24;;;;54699:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;54819:8;54774:18;:32;54793:12;:10;:12::i;:::-;54774:32;;;;;;;;;;;;;;;:42;54807:8;54774:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;54872:8;54843:48;;54858:12;:10;:12::i;:::-;54843:48;;;54882:8;54843:48;;;;;;:::i;:::-;;;;;;;;54604:295;;:::o;55799:285::-;55931:41;55950:12;:10;:12::i;:::-;55964:7;55931:18;:41::i;:::-;55923:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;56037:39;56051:4;56057:2;56061:7;56070:5;56037:13;:39::i;:::-;55799:285;;;;:::o;51869:792::-;51942:13;51976:16;51984:7;51976;:16::i;:::-;51968:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;52057:23;52083:10;:19;52094:7;52083:19;;;;;;;;;;;52057:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52113:18;52134:9;:7;:9::i;:::-;52113:30;;52241:1;52225:4;52219:18;:23;52215:72;;;52266:9;52259:16;;;;;;52215:72;52417:1;52397:9;52391:23;:27;52387:108;;;52466:4;52472:9;52449:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52435:48;;;;;;52387:108;52627:4;52633:18;:7;:16;:18::i;:::-;52610:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52596:57;;;;51869:792;;;;:::o;67090:42::-;67127:5;67090:42;:::o;54970:164::-;55067:4;55091:18;:25;55110:5;55091:25;;;;;;;;;;;;;;;:35;55117:8;55091:35;;;;;;;;;;;;;;;;;;;;;;;;;55084:42;;54970:164;;;;:::o;67141:32::-;;;;;;;;;;;;;:::o;66539:244::-;65816:12;:10;:12::i;:::-;65805:23;;:7;:5;:7::i;:::-;:23;;;65797:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66648:1:::1;66628:22;;:8;:22;;;;66620:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;66738:8;66709:38;;66730:6;;;;;;;;;;;66709:38;;;;;;;;;;;;66767:8;66758:6;;:17;;;;;;;;;;;;;;;;;;66539:244:::0;:::o;57551:127::-;57616:4;57640:30;57662:7;57640:12;:21;;:30;;;;:::i;:::-;57633:37;;57551:127;;;:::o;672:106::-;725:15;760:10;753:17;;672:106;:::o;63569:192::-;63671:2;63644:15;:24;63660:7;63644:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;63727:7;63723:2;63689:46;;63698:23;63713:7;63698:14;:23::i;:::-;63689:46;;;;;;;;;;;;63569:192;;:::o;44283:123::-;44352:7;44379:19;44387:3;:10;;44379:7;:19::i;:::-;44372:26;;44283:123;;;:::o;57845:355::-;57938:4;57963:16;57971:7;57963;:16::i;:::-;57955:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;58039:13;58055:23;58070:7;58055:14;:23::i;:::-;58039:39;;58108:5;58097:16;;:7;:16;;;:51;;;;58141:7;58117:31;;:20;58129:7;58117:11;:20::i;:::-;:31;;;58097:51;:94;;;;58152:39;58176:5;58183:7;58152:23;:39::i;:::-;58097:94;58089:103;;;57845:355;;;;:::o;60981:599::-;61106:4;61079:31;;:23;61094:7;61079:14;:23::i;:::-;:31;;;61071:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;61207:1;61193:16;;:2;:16;;;;61185:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;61263:39;61284:4;61290:2;61294:7;61263:20;:39::i;:::-;61367:29;61384:1;61388:7;61367:8;:29::i;:::-;61409:35;61436:7;61409:13;:19;61423:4;61409:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;61455:30;61477:7;61455:13;:17;61469:2;61455:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;61498:29;61515:7;61524:2;61498:12;:16;;:29;;;;;:::i;:::-;;61564:7;61560:2;61545:27;;61554:4;61545:27;;;;;;;;;;;;60981:599;;;:::o;36074:137::-;36145:7;36180:22;36184:3;:10;;36196:5;36180:3;:22::i;:::-;36172:31;;36165:38;;36074:137;;;;:::o;44745:236::-;44825:7;44834;44855:11;44868:13;44885:22;44889:3;:10;;44901:5;44885:3;:22::i;:::-;44854:53;;;;44934:3;44926:12;;44964:5;44956:14;;44918:55;;;;;;44745:236;;;;;:::o;62181:100::-;62265:8;62254;:19;;;;;;;;;;;;:::i;:::-;;62181:100;:::o;46031:213::-;46138:7;46189:44;46194:3;:10;;46214:3;46206:12;;46220;46189:4;:44::i;:::-;46181:53;;46158:78;;46031:213;;;;;:::o;58543:110::-;58619:26;58629:2;58633:7;58619:26;;;;;;;;;;;;:9;:26::i;:::-;58543:110;;:::o;14264:158::-;14322:7;14355:1;14350;:6;;14342:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;14413:1;14409;:5;14402:12;;14264:158;;;;:::o;35616:114::-;35676:7;35703:19;35711:3;:10;;35703:7;:19::i;:::-;35696:26;;35616:114;;;:::o;13802:179::-;13860:7;13880:9;13896:1;13892;:5;13880:17;;13921:1;13916;:6;;13908:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;13972:1;13965:8;;;13802:179;;;;:::o;14681:220::-;14739:7;14768:1;14763;:6;14759:20;;;14778:1;14771:8;;;;14759:20;14790:9;14806:1;14802;:5;14790:17;;14835:1;14830;14826;:5;;;;;;:10;14818:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;14892:1;14885:8;;;14681:220;;;;;:::o;56966:272::-;57080:28;57090:4;57096:2;57100:7;57080:9;:28::i;:::-;57127:48;57150:4;57156:2;57160:7;57169:5;57127:22;:48::i;:::-;57119:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;56966:272;;;;:::o;46495:746::-;46551:13;46781:1;46772:5;:10;46768:53;;;46799:10;;;;;;;;;;;;;;;;;;;;;46768:53;46831:12;46846:5;46831:20;;46862:14;46887:78;46902:1;46894:4;:9;46887:78;;46920:8;;;;;;;46951:2;46943:10;;;;;;;;;46887:78;;;46975:19;47007:6;46997:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46975:39;;47025:13;47050:1;47041:6;:10;47025:26;;47069:5;47062:12;;47085:117;47100:1;47092:4;:9;47085:117;;47161:2;47154:4;:9;;;;;;47149:2;:14;47136:29;;47118:6;47125:7;;;;;;;47118:15;;;;;;;;;;;:47;;;;;;;;;;;47188:2;47180:10;;;;;;;;;47085:117;;;47226:6;47212:21;;;;;;46495:746;;;;:::o;44044:151::-;44128:4;44152:35;44162:3;:10;;44182:3;44174:12;;44152:9;:35::i;:::-;44145:42;;44044:151;;;;:::o;40862:110::-;40918:7;40945:3;:12;;:19;;;;40938:26;;40862:110;;;:::o;64374:93::-;;;;:::o;35161:137::-;35231:4;35255:35;35263:3;:10;;35283:5;35275:14;;35255:7;:35::i;:::-;35248:42;;35161:137;;;;:::o;34854:131::-;34921:4;34945:32;34950:3;:10;;34970:5;34962:14;;34945:4;:32::i;:::-;34938:39;;34854:131;;;;:::o;43467:185::-;43556:4;43580:64;43585:3;:10;;43605:3;43597:12;;43635:5;43619:23;;43611:32;;43580:4;:64::i;:::-;43573:71;;43467:185;;;;;:::o;31112:204::-;31179:7;31228:5;31207:3;:11;;:18;;;;:26;31199:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31290:3;:11;;31302:5;31290:18;;;;;;;;;;;;;;;;31283:25;;31112:204;;;;:::o;41327:279::-;41394:7;41403;41453:5;41431:3;:12;;:19;;;;:27;41423:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;41510:22;41535:3;:12;;41548:5;41535:19;;;;;;;;;;;;;;;;;;41510:44;;41573:5;:10;;;41585:5;:12;;;41565:33;;;;;41327:279;;;;;:::o;42824:319::-;42918:7;42938:16;42957:3;:12;;:17;42970:3;42957:17;;;;;;;;;;;;42938:36;;43005:1;42993:8;:13;;43008:12;42985:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;43075:3;:12;;43099:1;43088:8;:12;43075:26;;;;;;;;;;;;;;;;;;:33;;;43068:40;;;42824:319;;;;;:::o;58880:250::-;58976:18;58982:2;58986:7;58976:5;:18::i;:::-;59013:54;59044:1;59048:2;59052:7;59061:5;59013:22;:54::i;:::-;59005:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;58880:250;;;:::o;30659:109::-;30715:7;30742:3;:11;;:18;;;;30735:25;;30659:109;;;:::o;62846:604::-;62967:4;62994:15;:2;:13;;;:15::i;:::-;62989:60;;63033:4;63026:11;;;;62989:60;63059:23;63085:252;63138:45;;;63198:12;:10;:12::i;:::-;63225:4;63244:7;63266:5;63101:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63085:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;63059:278;;63348:13;63375:10;63364:32;;;;;;;;;;;;:::i;:::-;63348:48;;47995:10;63425:16;;63415:26;;;:6;:26;;;;63407:35;;;;62846:604;;;;;;;:::o;40642:125::-;40713:4;40758:1;40737:3;:12;;:17;40750:3;40737:17;;;;;;;;;;;;:22;;40730:29;;40642:125;;;;:::o;28814:1544::-;28880:4;28998:18;29019:3;:12;;:19;29032:5;29019:19;;;;;;;;;;;;28998:40;;29069:1;29055:10;:15;29051:1300;;29417:21;29454:1;29441:10;:14;29417:38;;29470:17;29511:1;29490:3;:11;;:18;;;;:22;29470:42;;29757:17;29777:3;:11;;29789:9;29777:22;;;;;;;;;;;;;;;;29757:42;;29923:9;29894:3;:11;;29906:13;29894:26;;;;;;;;;;;;;;;:38;;;;30042:1;30026:13;:17;30000:3;:12;;:23;30013:9;30000:23;;;;;;;;;;;:43;;;;30152:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;30247:3;:12;;:19;30260:5;30247:19;;;;;;;;;;;30240:26;;;30290:4;30283:11;;;;;;;;29051:1300;30334:5;30327:12;;;28814:1544;;;;;:::o;28224:414::-;28287:4;28309:21;28319:3;28324:5;28309:9;:21::i;:::-;28304:327;;28347:3;:11;;28364:5;28347:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28530:3;:11;;:18;;;;28508:3;:12;;:19;28521:5;28508:19;;;;;;;;;;;:40;;;;28570:4;28563:11;;;;28304:327;28614:5;28607:12;;28224:414;;;;;:::o;38142:692::-;38218:4;38334:16;38353:3;:12;;:17;38366:3;38353:17;;;;;;;;;;;;38334:36;;38399:1;38387:8;:13;38383:444;;;38454:3;:12;;38472:38;;;;;;;;38489:3;38472:38;;;;38502:5;38472:38;;;38454:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38669:3;:12;;:19;;;;38649:3;:12;;:17;38662:3;38649:17;;;;;;;;;;;:39;;;;38710:4;38703:11;;;;;38383:444;38783:5;38747:3;:12;;38771:1;38760:8;:12;38747:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;38810:5;38803:12;;;38142:692;;;;;;:::o;59466:404::-;59560:1;59546:16;;:2;:16;;;;59538:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;59619:16;59627:7;59619;:16::i;:::-;59618:17;59610:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;59681:45;59710:1;59714:2;59718:7;59681:20;:45::i;:::-;59739:30;59761:7;59739:13;:17;59753:2;59739:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;59782:29;59799:7;59808:2;59782:12;:16;;:29;;;;;:::i;:::-;;59854:7;59850:2;59829:33;;59846:1;59829:33;;;;;;;;;;;;59466:404;;:::o;19243:422::-;19303:4;19511:12;19622:7;19610:20;19602:28;;19656:1;19649:4;:8;19642:15;;;19243:422;;;:::o;22161:195::-;22264:12;22296:52;22318:6;22326:4;22332:1;22335:12;22296:21;:52::i;:::-;22289:59;;22161:195;;;;;:::o;30444:129::-;30517:4;30564:1;30541:3;:12;;:19;30554:5;30541:19;;;;;;;;;;;;:24;;30534:31;;30444:129;;;;:::o;23213:530::-;23340:12;23398:5;23373:21;:30;;23365:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;23465:18;23476:6;23465:10;:18::i;:::-;23457:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;23591:12;23605:23;23632:6;:11;;23652:5;23660:4;23632:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23590:75;;;;23683:52;23701:7;23710:10;23722:12;23683:17;:52::i;:::-;23676:59;;;;23213:530;;;;;;:::o;25753:742::-;25868:12;25897:7;25893:595;;;25928:10;25921:17;;;;25893:595;26062:1;26042:10;:17;:21;26038:439;;;26305:10;26299:17;26366:15;26353:10;26349:2;26345:19;26338:44;26253:148;26448:12;26441:20;;;;;;;;;;;:::i;:::-;;;;;;;;25753:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:260::-;;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:52;5116:7;5107:6;5096:9;5092:22;5072:52;:::i;:::-;5062:62;;5018:116;4946:195;;;;:::o;5147:282::-;;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5281:1;5278;5271:12;5233:2;5324:1;5349:63;5404:7;5395:6;5384:9;5380:22;5349:63;:::i;:::-;5339:73;;5295:127;5223:206;;;;:::o;5435:375::-;;5553:2;5541:9;5532:7;5528:23;5524:32;5521:2;;;5569:1;5566;5559:12;5521:2;5640:1;5629:9;5625:17;5612:31;5670:18;5662:6;5659:30;5656:2;;;5702:1;5699;5692:12;5656:2;5730:63;5785:7;5776:6;5765:9;5761:22;5730:63;:::i;:::-;5720:73;;5583:220;5511:299;;;;:::o;5816:262::-;;5924:2;5912:9;5903:7;5899:23;5895:32;5892:2;;;5940:1;5937;5930:12;5892:2;5983:1;6008:53;6053:7;6044:6;6033:9;6029:22;6008:53;:::i;:::-;5998:63;;5954:117;5882:196;;;;:::o;6084:179::-;;6174:46;6216:3;6208:6;6174:46;:::i;:::-;6252:4;6247:3;6243:14;6229:28;;6164:99;;;;:::o;6269:142::-;6372:32;6398:5;6372:32;:::i;:::-;6367:3;6360:45;6350:61;;:::o;6417:118::-;6504:24;6522:5;6504:24;:::i;:::-;6499:3;6492:37;6482:53;;:::o;6571:732::-;;6719:54;6767:5;6719:54;:::i;:::-;6789:86;6868:6;6863:3;6789:86;:::i;:::-;6782:93;;6899:56;6949:5;6899:56;:::i;:::-;6978:7;7009:1;6994:284;7019:6;7016:1;7013:13;6994:284;;;7095:6;7089:13;7122:63;7181:3;7166:13;7122:63;:::i;:::-;7115:70;;7208:60;7261:6;7208:60;:::i;:::-;7198:70;;7054:224;7041:1;7038;7034:9;7029:14;;6994:284;;;6998:14;7294:3;7287:10;;6695:608;;;;;;;:::o;7309:109::-;7390:21;7405:5;7390:21;:::i;:::-;7385:3;7378:34;7368:50;;:::o;7424:360::-;;7538:38;7570:5;7538:38;:::i;:::-;7592:70;7655:6;7650:3;7592:70;:::i;:::-;7585:77;;7671:52;7716:6;7711:3;7704:4;7697:5;7693:16;7671:52;:::i;:::-;7748:29;7770:6;7748:29;:::i;:::-;7743:3;7739:39;7732:46;;7514:270;;;;;:::o;7790:373::-;;7922:38;7954:5;7922:38;:::i;:::-;7976:88;8057:6;8052:3;7976:88;:::i;:::-;7969:95;;8073:52;8118:6;8113:3;8106:4;8099:5;8095:16;8073:52;:::i;:::-;8150:6;8145:3;8141:16;8134:23;;7898:265;;;;;:::o;8169:364::-;;8285:39;8318:5;8285:39;:::i;:::-;8340:71;8404:6;8399:3;8340:71;:::i;:::-;8333:78;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:29;8519:6;8497:29;:::i;:::-;8492:3;8488:39;8481:46;;8261:272;;;;;:::o;8539:377::-;;8673:39;8706:5;8673:39;:::i;:::-;8728:89;8810:6;8805:3;8728:89;:::i;:::-;8721:96;;8826:52;8871:6;8866:3;8859:4;8852:5;8848:16;8826:52;:::i;:::-;8903:6;8898:3;8894:16;8887:23;;8649:267;;;;;:::o;8922:366::-;;9085:67;9149:2;9144:3;9085:67;:::i;:::-;9078:74;;9182:34;9178:1;9173:3;9169:11;9162:55;9248:4;9243:2;9238:3;9234:12;9227:26;9279:2;9274:3;9270:12;9263:19;;9068:220;;;:::o;9294:375::-;;9457:67;9521:2;9516:3;9457:67;:::i;:::-;9450:74;;9554:34;9550:1;9545:3;9541:11;9534:55;9620:13;9615:2;9610:3;9606:12;9599:35;9660:2;9655:3;9651:12;9644:19;;9440:229;;;:::o;9675:382::-;;9838:67;9902:2;9897:3;9838:67;:::i;:::-;9831:74;;9935:34;9931:1;9926:3;9922:11;9915:55;10001:20;9996:2;9991:3;9987:12;9980:42;10048:2;10043:3;10039:12;10032:19;;9821:236;;;:::o;10063:370::-;;10226:67;10290:2;10285:3;10226:67;:::i;:::-;10219:74;;10323:34;10319:1;10314:3;10310:11;10303:55;10389:8;10384:2;10379:3;10375:12;10368:30;10424:2;10419:3;10415:12;10408:19;;10209:224;;;:::o;10439:326::-;;10602:67;10666:2;10661:3;10602:67;:::i;:::-;10595:74;;10699:30;10695:1;10690:3;10686:11;10679:51;10756:2;10751:3;10747:12;10740:19;;10585:180;;;:::o;10771:325::-;;10934:67;10998:2;10993:3;10934:67;:::i;:::-;10927:74;;11031:29;11027:1;11022:3;11018:11;11011:50;11087:2;11082:3;11078:12;11071:19;;10917:179;;;:::o;11102:368::-;;11265:67;11329:2;11324:3;11265:67;:::i;:::-;11258:74;;11362:34;11358:1;11353:3;11349:11;11342:55;11428:6;11423:2;11418:3;11414:12;11407:28;11461:2;11456:3;11452:12;11445:19;;11248:222;;;:::o;11476:323::-;;11639:67;11703:2;11698:3;11639:67;:::i;:::-;11632:74;;11736:27;11732:1;11727:3;11723:11;11716:48;11790:2;11785:3;11781:12;11774:19;;11622:177;;;:::o;11805:328::-;;11968:67;12032:2;12027:3;11968:67;:::i;:::-;11961:74;;12065:32;12061:1;12056:3;12052:11;12045:53;12124:2;12119:3;12115:12;12108:19;;11951:182;;;:::o;12139:370::-;;12302:67;12366:2;12361:3;12302:67;:::i;:::-;12295:74;;12399:34;12395:1;12390:3;12386:11;12379:55;12465:8;12460:2;12455:3;12451:12;12444:30;12500:2;12495:3;12491:12;12484:19;;12285:224;;;:::o;12515:376::-;;12678:67;12742:2;12737:3;12678:67;:::i;:::-;12671:74;;12775:34;12771:1;12766:3;12762:11;12755:55;12841:14;12836:2;12831:3;12827:12;12820:36;12882:2;12877:3;12873:12;12866:19;;12661:230;;;:::o;12897:388::-;;13060:67;13124:2;13119:3;13060:67;:::i;:::-;13053:74;;13157:34;13153:1;13148:3;13144:11;13137:55;13223:26;13218:2;13213:3;13209:12;13202:48;13276:2;13271:3;13267:12;13260:19;;13043:242;;;:::o;13291:370::-;;13454:67;13518:2;13513:3;13454:67;:::i;:::-;13447:74;;13551:34;13547:1;13542:3;13538:11;13531:55;13617:8;13612:2;13607:3;13603:12;13596:30;13652:2;13647:3;13643:12;13636:19;;13437:224;;;:::o;13667:367::-;;13830:67;13894:2;13889:3;13830:67;:::i;:::-;13823:74;;13927:34;13923:1;13918:3;13914:11;13907:55;13993:5;13988:2;13983:3;13979:12;13972:27;14025:2;14020:3;14016:12;14009:19;;13813:221;;;:::o;14040:374::-;;14203:67;14267:2;14262:3;14203:67;:::i;:::-;14196:74;;14300:34;14296:1;14291:3;14287:11;14280:55;14366:12;14361:2;14356:3;14352:12;14345:34;14405:2;14400:3;14396:12;14389:19;;14186:228;;;:::o;14420:366::-;;14583:67;14647:2;14642:3;14583:67;:::i;:::-;14576:74;;14680:34;14676:1;14671:3;14667:11;14660:55;14746:4;14741:2;14736:3;14732:12;14725:26;14777:2;14772:3;14768:12;14761:19;;14566:220;;;:::o;14792:366::-;;14955:67;15019:2;15014:3;14955:67;:::i;:::-;14948:74;;15052:34;15048:1;15043:3;15039:11;15032:55;15118:4;15113:2;15108:3;15104:12;15097:26;15149:2;15144:3;15140:12;15133:19;;14938:220;;;:::o;15164:330::-;;15327:67;15391:2;15386:3;15327:67;:::i;:::-;15320:74;;15424:34;15420:1;15415:3;15411:11;15404:55;15485:2;15480:3;15476:12;15469:19;;15310:184;;;:::o;15500:365::-;;15663:67;15727:2;15722:3;15663:67;:::i;:::-;15656:74;;15760:34;15756:1;15751:3;15747:11;15740:55;15826:3;15821:2;15816:3;15812:12;15805:25;15856:2;15851:3;15847:12;15840:19;;15646:219;;;:::o;15871:376::-;;16034:67;16098:2;16093:3;16034:67;:::i;:::-;16027:74;;16131:34;16127:1;16122:3;16118:11;16111:55;16197:14;16192:2;16187:3;16183:12;16176:36;16238:2;16233:3;16229:12;16222:19;;16017:230;;;:::o;16253:330::-;;16416:67;16480:2;16475:3;16416:67;:::i;:::-;16409:74;;16513:34;16509:1;16504:3;16500:11;16493:55;16574:2;16569:3;16565:12;16558:19;;16399:184;;;:::o;16589:373::-;;16752:67;16816:2;16811:3;16752:67;:::i;:::-;16745:74;;16849:34;16845:1;16840:3;16836:11;16829:55;16915:11;16910:2;16905:3;16901:12;16894:33;16953:2;16948:3;16944:12;16937:19;;16735:227;;;:::o;16968:379::-;;17131:67;17195:2;17190:3;17131:67;:::i;:::-;17124:74;;17228:34;17224:1;17219:3;17215:11;17208:55;17294:17;17289:2;17284:3;17280:12;17273:39;17338:2;17333:3;17329:12;17322:19;;17114:233;;;:::o;17353:365::-;;17516:67;17580:2;17575:3;17516:67;:::i;:::-;17509:74;;17613:34;17609:1;17604:3;17600:11;17593:55;17679:3;17674:2;17669:3;17665:12;17658:25;17709:2;17704:3;17700:12;17693:19;;17499:219;;;:::o;17724:328::-;;17887:67;17951:2;17946:3;17887:67;:::i;:::-;17880:74;;17984:32;17980:1;17975:3;17971:11;17964:53;18043:2;18038:3;18034:12;18027:19;;17870:182;;;:::o;18058:381::-;;18221:67;18285:2;18280:3;18221:67;:::i;:::-;18214:74;;18318:34;18314:1;18309:3;18305:11;18298:55;18384:19;18379:2;18374:3;18370:12;18363:41;18430:2;18425:3;18421:12;18414:19;;18204:235;;;:::o;18445:327::-;;18608:67;18672:2;18667:3;18608:67;:::i;:::-;18601:74;;18705:31;18701:1;18696:3;18692:11;18685:52;18763:2;18758:3;18754:12;18747:19;;18591:181;;;:::o;18778:108::-;18855:24;18873:5;18855:24;:::i;:::-;18850:3;18843:37;18833:53;;:::o;18892:118::-;18979:24;18997:5;18979:24;:::i;:::-;18974:3;18967:37;18957:53;;:::o;19016:271::-;;19168:93;19257:3;19248:6;19168:93;:::i;:::-;19161:100;;19278:3;19271:10;;19150:137;;;;:::o;19293:435::-;;19495:95;19586:3;19577:6;19495:95;:::i;:::-;19488:102;;19607:95;19698:3;19689:6;19607:95;:::i;:::-;19600:102;;19719:3;19712:10;;19477:251;;;;;:::o;19734:222::-;;19865:2;19854:9;19850:18;19842:26;;19878:71;19946:1;19935:9;19931:17;19922:6;19878:71;:::i;:::-;19832:124;;;;:::o;19962:672::-;;20211:3;20200:9;20196:19;20188:27;;20225:87;20309:1;20298:9;20294:17;20285:6;20225:87;:::i;:::-;20322:72;20390:2;20379:9;20375:18;20366:6;20322:72;:::i;:::-;20404;20472:2;20461:9;20457:18;20448:6;20404:72;:::i;:::-;20523:9;20517:4;20513:20;20508:2;20497:9;20493:18;20486:48;20551:76;20622:4;20613:6;20551:76;:::i;:::-;20543:84;;20178:456;;;;;;;:::o;20640:373::-;;20821:2;20810:9;20806:18;20798:26;;20870:9;20864:4;20860:20;20856:1;20845:9;20841:17;20834:47;20898:108;21001:4;20992:6;20898:108;:::i;:::-;20890:116;;20788:225;;;;:::o;21019:210::-;;21144:2;21133:9;21129:18;21121:26;;21157:65;21219:1;21208:9;21204:17;21195:6;21157:65;:::i;:::-;21111:118;;;;:::o;21235:313::-;;21386:2;21375:9;21371:18;21363:26;;21435:9;21429:4;21425:20;21421:1;21410:9;21406:17;21399:47;21463:78;21536:4;21527:6;21463:78;:::i;:::-;21455:86;;21353:195;;;;:::o;21554:419::-;;21758:2;21747:9;21743:18;21735:26;;21807:9;21801:4;21797:20;21793:1;21782:9;21778:17;21771:47;21835:131;21961:4;21835:131;:::i;:::-;21827:139;;21725:248;;;:::o;21979:419::-;;22183:2;22172:9;22168:18;22160:26;;22232:9;22226:4;22222:20;22218:1;22207:9;22203:17;22196:47;22260:131;22386:4;22260:131;:::i;:::-;22252:139;;22150:248;;;:::o;22404:419::-;;22608:2;22597:9;22593:18;22585:26;;22657:9;22651:4;22647:20;22643:1;22632:9;22628:17;22621:47;22685:131;22811:4;22685:131;:::i;:::-;22677:139;;22575:248;;;:::o;22829:419::-;;23033:2;23022:9;23018:18;23010:26;;23082:9;23076:4;23072:20;23068:1;23057:9;23053:17;23046:47;23110:131;23236:4;23110:131;:::i;:::-;23102:139;;23000:248;;;:::o;23254:419::-;;23458:2;23447:9;23443:18;23435:26;;23507:9;23501:4;23497:20;23493:1;23482:9;23478:17;23471:47;23535:131;23661:4;23535:131;:::i;:::-;23527:139;;23425:248;;;:::o;23679:419::-;;23883:2;23872:9;23868:18;23860:26;;23932:9;23926:4;23922:20;23918:1;23907:9;23903:17;23896:47;23960:131;24086:4;23960:131;:::i;:::-;23952:139;;23850:248;;;:::o;24104:419::-;;24308:2;24297:9;24293:18;24285:26;;24357:9;24351:4;24347:20;24343:1;24332:9;24328:17;24321:47;24385:131;24511:4;24385:131;:::i;:::-;24377:139;;24275:248;;;:::o;24529:419::-;;24733:2;24722:9;24718:18;24710:26;;24782:9;24776:4;24772:20;24768:1;24757:9;24753:17;24746:47;24810:131;24936:4;24810:131;:::i;:::-;24802:139;;24700:248;;;:::o;24954:419::-;;25158:2;25147:9;25143:18;25135:26;;25207:9;25201:4;25197:20;25193:1;25182:9;25178:17;25171:47;25235:131;25361:4;25235:131;:::i;:::-;25227:139;;25125:248;;;:::o;25379:419::-;;25583:2;25572:9;25568:18;25560:26;;25632:9;25626:4;25622:20;25618:1;25607:9;25603:17;25596:47;25660:131;25786:4;25660:131;:::i;:::-;25652:139;;25550:248;;;:::o;25804:419::-;;26008:2;25997:9;25993:18;25985:26;;26057:9;26051:4;26047:20;26043:1;26032:9;26028:17;26021:47;26085:131;26211:4;26085:131;:::i;:::-;26077:139;;25975:248;;;:::o;26229:419::-;;26433:2;26422:9;26418:18;26410:26;;26482:9;26476:4;26472:20;26468:1;26457:9;26453:17;26446:47;26510:131;26636:4;26510:131;:::i;:::-;26502:139;;26400:248;;;:::o;26654:419::-;;26858:2;26847:9;26843:18;26835:26;;26907:9;26901:4;26897:20;26893:1;26882:9;26878:17;26871:47;26935:131;27061:4;26935:131;:::i;:::-;26927:139;;26825:248;;;:::o;27079:419::-;;27283:2;27272:9;27268:18;27260:26;;27332:9;27326:4;27322:20;27318:1;27307:9;27303:17;27296:47;27360:131;27486:4;27360:131;:::i;:::-;27352:139;;27250:248;;;:::o;27504:419::-;;27708:2;27697:9;27693:18;27685:26;;27757:9;27751:4;27747:20;27743:1;27732:9;27728:17;27721:47;27785:131;27911:4;27785:131;:::i;:::-;27777:139;;27675:248;;;:::o;27929:419::-;;28133:2;28122:9;28118:18;28110:26;;28182:9;28176:4;28172:20;28168:1;28157:9;28153:17;28146:47;28210:131;28336:4;28210:131;:::i;:::-;28202:139;;28100:248;;;:::o;28354:419::-;;28558:2;28547:9;28543:18;28535:26;;28607:9;28601:4;28597:20;28593:1;28582:9;28578:17;28571:47;28635:131;28761:4;28635:131;:::i;:::-;28627:139;;28525:248;;;:::o;28779:419::-;;28983:2;28972:9;28968:18;28960:26;;29032:9;29026:4;29022:20;29018:1;29007:9;29003:17;28996:47;29060:131;29186:4;29060:131;:::i;:::-;29052:139;;28950:248;;;:::o;29204:419::-;;29408:2;29397:9;29393:18;29385:26;;29457:9;29451:4;29447:20;29443:1;29432:9;29428:17;29421:47;29485:131;29611:4;29485:131;:::i;:::-;29477:139;;29375:248;;;:::o;29629:419::-;;29833:2;29822:9;29818:18;29810:26;;29882:9;29876:4;29872:20;29868:1;29857:9;29853:17;29846:47;29910:131;30036:4;29910:131;:::i;:::-;29902:139;;29800:248;;;:::o;30054:419::-;;30258:2;30247:9;30243:18;30235:26;;30307:9;30301:4;30297:20;30293:1;30282:9;30278:17;30271:47;30335:131;30461:4;30335:131;:::i;:::-;30327:139;;30225:248;;;:::o;30479:419::-;;30683:2;30672:9;30668:18;30660:26;;30732:9;30726:4;30722:20;30718:1;30707:9;30703:17;30696:47;30760:131;30886:4;30760:131;:::i;:::-;30752:139;;30650:248;;;:::o;30904:419::-;;31108:2;31097:9;31093:18;31085:26;;31157:9;31151:4;31147:20;31143:1;31132:9;31128:17;31121:47;31185:131;31311:4;31185:131;:::i;:::-;31177:139;;31075:248;;;:::o;31329:419::-;;31533:2;31522:9;31518:18;31510:26;;31582:9;31576:4;31572:20;31568:1;31557:9;31553:17;31546:47;31610:131;31736:4;31610:131;:::i;:::-;31602:139;;31500:248;;;:::o;31754:419::-;;31958:2;31947:9;31943:18;31935:26;;32007:9;32001:4;31997:20;31993:1;31982:9;31978:17;31971:47;32035:131;32161:4;32035:131;:::i;:::-;32027:139;;31925:248;;;:::o;32179:419::-;;32383:2;32372:9;32368:18;32360:26;;32432:9;32426:4;32422:20;32418:1;32407:9;32403:17;32396:47;32460:131;32586:4;32460:131;:::i;:::-;32452:139;;32350:248;;;:::o;32604:419::-;;32808:2;32797:9;32793:18;32785:26;;32857:9;32851:4;32847:20;32843:1;32832:9;32828:17;32821:47;32885:131;33011:4;32885:131;:::i;:::-;32877:139;;32775:248;;;:::o;33029:222::-;;33160:2;33149:9;33145:18;33137:26;;33173:71;33241:1;33230:9;33226:17;33217:6;33173:71;:::i;:::-;33127:124;;;;:::o;33257:278::-;;33323:2;33317:9;33307:19;;33365:4;33357:6;33353:17;33472:6;33460:10;33457:22;33436:18;33424:10;33421:34;33418:62;33415:2;;;33483:13;;:::i;:::-;33415:2;33518:10;33514:2;33507:22;33297:238;;;;:::o;33541:326::-;;33692:18;33684:6;33681:30;33678:2;;;33714:13;;:::i;:::-;33678:2;33794:4;33790:9;33783:4;33775:6;33771:17;33767:33;33759:41;;33855:4;33849;33845:15;33837:23;;33607:260;;;:::o;33873:327::-;;34025:18;34017:6;34014:30;34011:2;;;34047:13;;:::i;:::-;34011:2;34127:4;34123:9;34116:4;34108:6;34104:17;34100:33;34092:41;;34188:4;34182;34178:15;34170:23;;33940:260;;;:::o;34206:132::-;;34296:3;34288:11;;34326:4;34321:3;34317:14;34309:22;;34278:60;;;:::o;34344:114::-;;34445:5;34439:12;34429:22;;34418:40;;;:::o;34464:98::-;;34549:5;34543:12;34533:22;;34522:40;;;:::o;34568:99::-;;34654:5;34648:12;34638:22;;34627:40;;;:::o;34673:113::-;;34775:4;34770:3;34766:14;34758:22;;34748:38;;;:::o;34792:184::-;;34925:6;34920:3;34913:19;34965:4;34960:3;34956:14;34941:29;;34903:73;;;;:::o;34982:168::-;;35099:6;35094:3;35087:19;35139:4;35134:3;35130:14;35115:29;;35077:73;;;;:::o;35156:147::-;;35294:3;35279:18;;35269:34;;;;:::o;35309:169::-;;35427:6;35422:3;35415:19;35467:4;35462:3;35458:14;35443:29;;35405:73;;;;:::o;35484:148::-;;35623:3;35608:18;;35598:34;;;;:::o;35638:96::-;;35704:24;35722:5;35704:24;:::i;:::-;35693:35;;35683:51;;;:::o;35740:104::-;;35814:24;35832:5;35814:24;:::i;:::-;35803:35;;35793:51;;;:::o;35850:90::-;;35927:5;35920:13;35913:21;35902:32;;35892:48;;;:::o;35946:149::-;;36022:66;36015:5;36011:78;36000:89;;35990:105;;;:::o;36101:126::-;;36178:42;36171:5;36167:54;36156:65;;36146:81;;;:::o;36233:77::-;;36299:5;36288:16;;36278:32;;;:::o;36316:154::-;36400:6;36395:3;36390;36377:30;36462:1;36453:6;36448:3;36444:16;36437:27;36367:103;;;:::o;36476:307::-;36544:1;36554:113;36568:6;36565:1;36562:13;36554:113;;;36653:1;36648:3;36644:11;36638:18;36634:1;36629:3;36625:11;36618:39;36590:2;36587:1;36583:10;36578:15;;36554:113;;;36685:6;36682:1;36679:13;36676:2;;;36765:1;36756:6;36751:3;36747:16;36740:27;36676:2;36525:258;;;;:::o;36789:48::-;36822:9;36843:102;;36935:2;36931:7;36926:2;36919:5;36915:14;36911:28;36901:38;;36891:54;;;:::o;36951:122::-;37024:24;37042:5;37024:24;:::i;:::-;37017:5;37014:35;37004:2;;37063:1;37060;37053:12;37004:2;36994:79;:::o;37079:116::-;37149:21;37164:5;37149:21;:::i;:::-;37142:5;37139:32;37129:2;;37185:1;37182;37175:12;37129:2;37119:76;:::o;37201:120::-;37273:23;37290:5;37273:23;:::i;:::-;37266:5;37263:34;37253:2;;37311:1;37308;37301:12;37253:2;37243:78;:::o;37327:122::-;37400:24;37418:5;37400:24;:::i;:::-;37393:5;37390:35;37380:2;;37439:1;37436;37429:12;37380:2;37370:79;:::o

Swarm Source

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