ETH Price: $2,704.90 (-2.81%)

Ishihara Plates (ISHIHARA)
 

Overview

TokenID

237

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

'Ishihara Plates' is an NFT collection that runs parallel to the traditional analogue Ishihara color test: a functional utility distilled into an object with its own artistic merit. All Ishihara Plates are created through both a generative script, and hand-selected aesthetic properties.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
IshiharaPlates

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// GO TO LINE 1888 TO SEE WHERE THE CONTRACT STARTS
 
// 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;
    }
}



pragma solidity ^0.7.0;
pragma abicoder v2;

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

    string public ISHIHARA_PROVENANCE = "";
    
    string public LICENSE_TEXT = ""; // IT IS WHAT IT SAYS
    
    bool licenseLocked = false; // TEAM CAN'T EDIT THE LICENSE AFTER THIS GETS TRUE

    uint256 public constant ishiharaPrice = 80000000000000000; // 0.08 ETH

    uint public constant maxIshiharaPurchase = 10;

    uint256 public constant MAX_ISHIHARA = 999;

    bool public saleIsActive = false;
    
    mapping(uint => string) public ishiharaNames;
    
    // Reserve - Giveaways etc...
    uint public ishiharaReserve = 60;

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

    event licenseisLocked(string _licenseText);

    constructor() ERC721("Ishihara Plates", "ISHIHARA") { }
    
    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        (bool success, ) = msg.sender.call{value:balance}("");
        require(success, "Transfer failed.");
    }
    
    function reserveIshihara(address _to, uint256 _reserveAmount) public onlyOwner {        
        uint supply = totalSupply();
        require(_reserveAmount > 0 && _reserveAmount <= ishiharaReserve, "Not enough reserve left for team");
        for (uint i = 0; i < _reserveAmount; i++) {
            _safeMint(_to, supply + i);
        }
        ishiharaReserve = ishiharaReserve.sub(_reserveAmount);
    }


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

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

    // Toggles minting capability on and off
    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }
    
    
    function tokensOfOwner(address _owner) external view returns(uint256[] memory ) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }
    
    // Returns the license for tokens
    function tokenLicense(uint _id) public view returns(string memory) {
        require(_id < totalSupply(), "CHOOSE A ISHIHARA PLATE WITHIN RANGE");
        return LICENSE_TEXT;
    }
    
    // Locks the license to prevent further changes 
    function lockLicense() public onlyOwner {
        licenseLocked =  true;
        emit licenseisLocked(LICENSE_TEXT);
    }
    
    // Change the license
    function changeLicense(string memory _license) public onlyOwner {
        require(licenseLocked == false, "License already locked");
        LICENSE_TEXT = _license;
    }
    
    
    function mintIshihara(uint numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint a Ishihara Plate");
        require(numberOfTokens > 0 && numberOfTokens <= maxIshiharaPurchase, "Can only mint 10 tokens at a time");
        require(totalSupply().add(numberOfTokens) <= MAX_ISHIHARA, "Purchase would exceed max supply of Ishihara Plates");
        require(msg.value >= ishiharaPrice.mul(numberOfTokens), "Ether value sent is not correct");
        
        for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = totalSupply();
            if (totalSupply() < MAX_ISHIHARA) {
                _safeMint(msg.sender, mintIndex);
            }
        }

    }
    
    function viewIshiharaName(uint _tokenId) public view returns( string memory ){
        require( _tokenId < totalSupply(), "Choose a Ishihara Plate within range" );
        return ishiharaNames[_tokenId];
    }
    
    
    // GET ALL ISHIHARA PLATES OF A WALLET AS AN ARRAY OF STRINGS. WOULD BE BETTER MAYBE IF IT RETURNED A STRUCT WITH ID-NAME MATCH
    function ishiharaNamesOfOwner(address _owner) external view returns(string[] memory ) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            return new string[](0);
        } else {
            string[] memory result = new string[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = ishiharaNames[ tokenOfOwnerByIndex(_owner, index) ] ;
            }
            return result;
        }
    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_by","type":"address"},{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"_name","type":"string"}],"name":"ishiharaNameChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_licenseText","type":"string"}],"name":"licenseisLocked","type":"event"},{"inputs":[],"name":"ISHIHARA_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LICENSE_TEXT","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ISHIHARA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_license","type":"string"}],"name":"changeLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"ishiharaNames","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"ishiharaNamesOfOwner","outputs":[{"internalType":"string[]","name":"","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ishiharaPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ishiharaReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxIshiharaPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintIshihara","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":"reserveIshihara","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"tokenLicense","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"viewIshiharaName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600b90805190602001906200002b92919062000334565b5060405180602001604052806000815250600c90805190602001906200005392919062000334565b506000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff021916908315150217905550603c600f553480156200009c57600080fd5b506040518060400160405280600f81526020017f497368696861726120506c6174657300000000000000000000000000000000008152506040518060400160405280600881526020017f4953484948415241000000000000000000000000000000000000000000000000815250620001216301ffc9a760e01b6200025460201b60201c565b81600690805190602001906200013992919062000334565b5080600790805190602001906200015292919062000334565b506200016b6380ac58cd60e01b6200025460201b60201c565b62000183635b5e139f60e01b6200025460201b60201c565b6200019b63780e9d6360e01b6200025460201b60201c565b50506000620001af6200032c60201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200045f565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620002c0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b7906200042c565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200036c5760008555620003b8565b82601f106200038757805160ff1916838001178555620003b8565b82800160010185558215620003b8579182015b82811115620003b75782518255916020019190600101906200039a565b5b509050620003c79190620003cb565b5090565b5b80821115620003e6576000816000905550600101620003cc565b5090565b6000620003f9601c836200044e565b91507f4552433136353a20696e76616c696420696e74657266616365206964000000006000830152602082019050919050565b600060208201905081810360008301526200044781620003ea565b9050919050565b600082825260208201905092915050565b615006806200046f6000396000f3fe60806040526004361061023b5760003560e01c8063674adf081161012e578063a22cb465116100ab578063d9b137b21161006f578063d9b137b214610885578063dea8ea11146108c2578063e985e9c5146108de578063eb8d24441461091b578063f2fde38b146109465761023b565b8063a22cb465146107b6578063b09904b5146107df578063b88d4fde14610808578063bf4702fc14610831578063c87b56dd146108485761023b565b8063866bd4b6116100f2578063866bd4b6146106cd5780638da5cb5b146106f857806395d89b41146107235780639c3e72bd1461074e578063a1941fae146107795761023b565b8063674adf08146105e65780636c0360eb1461061157806370a082311461063c578063715018a6146106795780638462151c146106905761023b565b8063314b4e70116101bc5780634cd25b72116101805780634cd25b72146104dd5780634f6ccce71461050657806355f804b3146105435780636352211e1461056c57806363f6c638146105a95761023b565b8063314b4e701461043057806334918dfd1461045b5780633ccfd60b1461047257806342842e0e1461048957806345972b00146104b25761023b565b806318160ddd1161020357806318160ddd146103375780631a7c1f8f1461036257806323b872dd1461038d5780632a5e35bc146103b65780632f745c59146103f35761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e5578063109695231461030e575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906138fe565b61096f565b604051610274919061486d565b60405180910390f35b34801561028957600080fd5b506102926109d6565b60405161029f9190614888565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613991565b610a78565b6040516102dc91906147c2565b60405180910390f35b3480156102f157600080fd5b5061030c600480360381019061030791906138c2565b610afd565b005b34801561031a57600080fd5b5061033560048036038101906103309190613950565b610c15565b005b34801561034357600080fd5b5061034c610cab565b6040516103599190614cac565b60405180910390f35b34801561036e57600080fd5b50610377610cbc565b6040516103849190614cac565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af91906137bc565b610cc8565b005b3480156103c257600080fd5b506103dd60048036038101906103d89190613991565b610d28565b6040516103ea9190614888565b60405180910390f35b3480156103ff57600080fd5b5061041a600480360381019061041591906138c2565b610e26565b6040516104279190614cac565b60405180910390f35b34801561043c57600080fd5b50610445610e81565b6040516104529190614cac565b60405180910390f35b34801561046757600080fd5b50610470610e86565b005b34801561047e57600080fd5b50610487610f2e565b005b34801561049557600080fd5b506104b060048036038101906104ab91906137bc565b61105f565b005b3480156104be57600080fd5b506104c761107f565b6040516104d49190614cac565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff91906138c2565b611085565b005b34801561051257600080fd5b5061052d60048036038101906105289190613991565b6111a3565b60405161053a9190614cac565b60405180910390f35b34801561054f57600080fd5b5061056a60048036038101906105659190613950565b6111c6565b005b34801561057857600080fd5b50610593600480360381019061058e9190613991565b61124e565b6040516105a091906147c2565b60405180910390f35b3480156105b557600080fd5b506105d060048036038101906105cb9190613757565b611285565b6040516105dd9190614829565b60405180910390f35b3480156105f257600080fd5b506105fb611432565b6040516106089190614888565b60405180910390f35b34801561061d57600080fd5b506106266114d0565b6040516106339190614888565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e9190613757565b611572565b6040516106709190614cac565b60405180910390f35b34801561068557600080fd5b5061068e611631565b005b34801561069c57600080fd5b506106b760048036038101906106b29190613757565b61176e565b6040516106c4919061484b565b60405180910390f35b3480156106d957600080fd5b506106e2611867565b6040516106ef9190614cac565b60405180910390f35b34801561070457600080fd5b5061070d61186d565b60405161071a91906147c2565b60405180910390f35b34801561072f57600080fd5b50610738611897565b6040516107459190614888565b60405180910390f35b34801561075a57600080fd5b50610763611939565b6040516107709190614888565b60405180910390f35b34801561078557600080fd5b506107a0600480360381019061079b9190613991565b6119d7565b6040516107ad9190614888565b60405180910390f35b3480156107c257600080fd5b506107dd60048036038101906107d89190613886565b611a87565b005b3480156107eb57600080fd5b5061080660048036038101906108019190613950565b611c08565b005b34801561081457600080fd5b5061082f600480360381019061082a919061380b565b611cf4565b005b34801561083d57600080fd5b50610846611d56565b005b34801561085457600080fd5b5061086f600480360381019061086a9190613991565b611e27565b60405161087c9190614888565b60405180910390f35b34801561089157600080fd5b506108ac60048036038101906108a79190613991565b611faa565b6040516108b99190614888565b60405180910390f35b6108dc60048036038101906108d79190613991565b612097565b005b3480156108ea57600080fd5b5061090560048036038101906109009190613780565b612236565b604051610912919061486d565b60405180910390f35b34801561092757600080fd5b506109306122ca565b60405161093d919061486d565b60405180910390f35b34801561095257600080fd5b5061096d60048036038101906109689190613757565b6122dd565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610a6e5780601f10610a4357610100808354040283529160200191610a6e565b820191906000526020600020905b815481529060010190602001808311610a5157829003601f168201915b5050505050905090565b6000610a8382612489565b610ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab990614b2c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b088261124e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7090614bac565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b986124a6565b73ffffffffffffffffffffffffffffffffffffffff161480610bc75750610bc681610bc16124a6565b612236565b5b610c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfd90614a8c565b60405180910390fd5b610c1083836124ae565b505050565b610c1d6124a6565b73ffffffffffffffffffffffffffffffffffffffff16610c3b61186d565b73ffffffffffffffffffffffffffffffffffffffff1614610c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8890614b4c565b60405180910390fd5b80600b9080519060200190610ca7929190613573565b5050565b6000610cb76002612567565b905090565b67011c37937e08000081565b610cd9610cd36124a6565b8261257c565b610d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0f90614c0c565b60405180910390fd5b610d2383838361265a565b505050565b6060610d32610cab565b8210610d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6a90614c4c565b60405180910390fd5b600e60008381526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e1a5780601f10610def57610100808354040283529160200191610e1a565b820191906000526020600020905b815481529060010190602001808311610dfd57829003601f168201915b50505050509050919050565b6000610e7982600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061287190919063ffffffff16565b905092915050565b600a81565b610e8e6124a6565b73ffffffffffffffffffffffffffffffffffffffff16610eac61186d565b73ffffffffffffffffffffffffffffffffffffffff1614610f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef990614b4c565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b610f366124a6565b73ffffffffffffffffffffffffffffffffffffffff16610f5461186d565b73ffffffffffffffffffffffffffffffffffffffff1614610faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa190614b4c565b60405180910390fd5b600047905060003373ffffffffffffffffffffffffffffffffffffffff1682604051610fd5906147ad565b60006040518083038185875af1925050503d8060008114611012576040519150601f19603f3d011682016040523d82523d6000602084013e611017565b606091505b505090508061105b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105290614bec565b60405180910390fd5b5050565b61107a83838360405180602001604052806000815250611cf4565b505050565b6103e781565b61108d6124a6565b73ffffffffffffffffffffffffffffffffffffffff166110ab61186d565b73ffffffffffffffffffffffffffffffffffffffff1614611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f890614b4c565b60405180910390fd5b600061110b610cab565b905060008211801561111f5750600f548211155b61115e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611155906149ac565b60405180910390fd5b60005b82811015611182576111758482840161288b565b8080600101915050611161565b5061119882600f546128a990919063ffffffff16565b600f81905550505050565b6000806111ba8360026128f990919063ffffffff16565b50905080915050919050565b6111ce6124a6565b73ffffffffffffffffffffffffffffffffffffffff166111ec61186d565b73ffffffffffffffffffffffffffffffffffffffff1614611242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123990614b4c565b60405180910390fd5b61124b81612925565b50565b600061127e82604051806060016040528060298152602001614fa860299139600261293f9092919063ffffffff16565b9050919050565b6060600061129283611572565b905060008114156112f257600067ffffffffffffffff811180156112b557600080fd5b506040519080825280602002602001820160405280156112e957816020015b60608152602001906001900390816112d45790505b5091505061142d565b60008167ffffffffffffffff8111801561130b57600080fd5b5060405190808252806020026020018201604052801561133f57816020015b606081526020019060019003908161132a5790505b50905060005b8281101561142657600e600061135b8784610e26565b81526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113fd5780601f106113d2576101008083540402835291602001916113fd565b820191906000526020600020905b8154815290600101906020018083116113e057829003601f168201915b505050505082828151811061140e57fe5b60200260200101819052508080600101915050611345565b8193505050505b919050565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114c85780601f1061149d576101008083540402835291602001916114c8565b820191906000526020600020905b8154815290600101906020018083116114ab57829003601f168201915b505050505081565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156115685780601f1061153d57610100808354040283529160200191611568565b820191906000526020600020905b81548152906001019060200180831161154b57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115da90614aac565b60405180910390fd5b61162a600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061295e565b9050919050565b6116396124a6565b73ffffffffffffffffffffffffffffffffffffffff1661165761186d565b73ffffffffffffffffffffffffffffffffffffffff16146116ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a490614b4c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6060600061177b83611572565b905060008114156117d657600067ffffffffffffffff8111801561179e57600080fd5b506040519080825280602002602001820160405280156117cd5781602001602082028036833780820191505090505b50915050611862565b60008167ffffffffffffffff811180156117ef57600080fd5b5060405190808252806020026020018201604052801561181e5781602001602082028036833780820191505090505b50905060005b8281101561185b576118368582610e26565b82828151811061184257fe5b6020026020010181815250508080600101915050611824565b8193505050505b919050565b600f5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561192f5780601f106119045761010080835404028352916020019161192f565b820191906000526020600020905b81548152906001019060200180831161191257829003601f168201915b5050505050905090565b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156119cf5780601f106119a4576101008083540402835291602001916119cf565b820191906000526020600020905b8154815290600101906020018083116119b257829003601f168201915b505050505081565b600e6020528060005260406000206000915090508054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611a7f5780601f10611a5457610100808354040283529160200191611a7f565b820191906000526020600020905b815481529060010190602001808311611a6257829003601f168201915b505050505081565b611a8f6124a6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af4906149ec565b60405180910390fd5b8060056000611b0a6124a6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bb76124a6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bfc919061486d565b60405180910390a35050565b611c106124a6565b73ffffffffffffffffffffffffffffffffffffffff16611c2e61186d565b73ffffffffffffffffffffffffffffffffffffffff1614611c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7b90614b4c565b60405180910390fd5b60001515600d60009054906101000a900460ff16151514611cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd190614bcc565b60405180910390fd5b80600c9080519060200190611cf0929190613573565b5050565b611d05611cff6124a6565b8361257c565b611d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3b90614c0c565b60405180910390fd5b611d5084848484612973565b50505050565b611d5e6124a6565b73ffffffffffffffffffffffffffffffffffffffff16611d7c61186d565b73ffffffffffffffffffffffffffffffffffffffff1614611dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc990614b4c565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055507f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0600c604051611e1d91906148aa565b60405180910390a1565b6060611e3282612489565b611e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6890614b8c565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611f1a5780601f10611eef57610100808354040283529160200191611f1a565b820191906000526020600020905b815481529060010190602001808311611efd57829003601f168201915b505050505090506000611f2b6114d0565b9050600081511415611f41578192505050611fa5565b600082511115611f76578082604051602001611f5e929190614789565b60405160208183030381529060405292505050611fa5565b80611f80856129cf565b604051602001611f91929190614789565b604051602081830303815290604052925050505b919050565b6060611fb4610cab565b8210611ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fec9061492c565b60405180910390fd5b600c8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561208b5780601f106120605761010080835404028352916020019161208b565b820191906000526020600020905b81548152906001019060200180831161206e57829003601f168201915b50505050509050919050565b600d60019054906101000a900460ff166120e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dd90614c6c565b60405180910390fd5b6000811180156120f75750600a8111155b612136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212d90614c8c565b60405180910390fd5b6103e761215382612145610cab565b612b1690919063ffffffff16565b1115612194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218b9061498c565b60405180910390fd5b6121af8167011c37937e080000612b6b90919063ffffffff16565b3410156121f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e890614a0c565b60405180910390fd5b60005b81811015612232576000612206610cab565b90506103e7612213610cab565b101561222457612223338261288b565b5b5080806001019150506121f4565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60019054906101000a900460ff1681565b6122e56124a6565b73ffffffffffffffffffffffffffffffffffffffff1661230361186d565b73ffffffffffffffffffffffffffffffffffffffff1614612359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235090614b4c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c09061490c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061249f826002612bdb90919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166125218361124e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061257582600001612bf5565b9050919050565b600061258782612489565b6125c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bd90614a6c565b60405180910390fd5b60006125d18361124e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061264057508373ffffffffffffffffffffffffffffffffffffffff1661262884610a78565b73ffffffffffffffffffffffffffffffffffffffff16145b8061265157506126508185612236565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661267a8261124e565b73ffffffffffffffffffffffffffffffffffffffff16146126d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c790614b6c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612740576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612737906149cc565b60405180910390fd5b61274b838383612c06565b6127566000826124ae565b6127a781600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612c0b90919063ffffffff16565b506127f981600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612c2590919063ffffffff16565b5061281081836002612c3f9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006128808360000183612c74565b60001c905092915050565b6128a5828260405180602001604052806000815250612ce1565b5050565b6000828211156128ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e590614a2c565b60405180910390fd5b818303905092915050565b60008060008061290c8660000186612d3c565b915091508160001c8160001c9350935050509250929050565b806009908051906020019061293b929190613573565b5050565b6000612952846000018460001b84612dbf565b60001c90509392505050565b600061296c82600001612e50565b9050919050565b61297e84848461265a565b61298a84848484612e61565b6129c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c0906148ec565b60405180910390fd5b50505050565b60606000821415612a17576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b11565b600082905060005b60008214612a41578080600101915050600a8281612a3957fe5b049150612a1f565b60008167ffffffffffffffff81118015612a5a57600080fd5b506040519080825280601f01601f191660200182016040528015612a8d5781602001600182028036833780820191505090505b50905060006001830390508593505b60008414612b0957600a8481612aae57fe5b0660300160f81b82828060019003935081518110612ac857fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481612b0157fe5b049350612a9c565b819450505050505b919050565b600080828401905083811015612b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b589061496c565b60405180910390fd5b8091505092915050565b600080831415612b7e5760009050612bd5565b6000828402905082848281612b8f57fe5b0414612bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc790614b0c565b60405180910390fd5b809150505b92915050565b6000612bed836000018360001b612fc5565b905092915050565b600081600001805490509050919050565b505050565b6000612c1d836000018360001b612fe8565b905092915050565b6000612c37836000018360001b6130d0565b905092915050565b6000612c6b846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b613140565b90509392505050565b600081836000018054905011612cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb6906148cc565b60405180910390fd5b826000018281548110612cce57fe5b9060005260206000200154905092915050565b612ceb838361321c565b612cf86000848484612e61565b612d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2e906148ec565b60405180910390fd5b505050565b60008082846000018054905011612d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7f90614acc565b60405180910390fd5b6000846000018481548110612d9957fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e189190614888565b60405180910390fd5b50846000016001820381548110612e3457fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b6000612e828473ffffffffffffffffffffffffffffffffffffffff166133aa565b612e8f5760019050612fbd565b6000612f5663150b7a0260e01b612ea46124a6565b888787604051602401612eba94939291906147dd565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614f76603291398773ffffffffffffffffffffffffffffffffffffffff166133bd9092919063ffffffff16565b9050600081806020019051810190612f6e9190613927565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b600080836001016000848152602001908152602001600020549050600081146130c4576000600182039050600060018660000180549050039050600086600001828154811061303357fe5b906000526020600020015490508087600001848154811061305057fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061308857fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506130ca565b60009150505b92915050565b60006130dc83836133d5565b61313557826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061313a565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156131e757846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050613215565b828560000160018303815481106131fa57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561328c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328390614aec565b60405180910390fd5b61329581612489565b156132d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132cc9061494c565b60405180910390fd5b6132e160008383612c06565b61333281600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612c2590919063ffffffff16565b5061334981836002612c3f9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606133cc84846000856133f8565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b60608247101561343d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343490614a4c565b60405180910390fd5b613446856133aa565b613485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347c90614c2c565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516134ae9190614772565b60006040518083038185875af1925050503d80600081146134eb576040519150601f19603f3d011682016040523d82523d6000602084013e6134f0565b606091505b509150915061350082828661350c565b92505050949350505050565b6060831561351c5782905061356c565b60008351111561352f5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135639190614888565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826135a957600085556135f0565b82601f106135c257805160ff19168380011785556135f0565b828001600101855582156135f0579182015b828111156135ef5782518255916020019190600101906135d4565b5b5090506135fd9190613601565b5090565b5b8082111561361a576000816000905550600101613602565b5090565b600061363161362c84614cf8565b614cc7565b90508281526020810184848401111561364957600080fd5b613654848285614ec4565b509392505050565b600061366f61366a84614d28565b614cc7565b90508281526020810184848401111561368757600080fd5b613692848285614ec4565b509392505050565b6000813590506136a981614f19565b92915050565b6000813590506136be81614f30565b92915050565b6000813590506136d381614f47565b92915050565b6000815190506136e881614f47565b92915050565b600082601f8301126136ff57600080fd5b813561370f84826020860161361e565b91505092915050565b600082601f83011261372957600080fd5b813561373984826020860161365c565b91505092915050565b60008135905061375181614f5e565b92915050565b60006020828403121561376957600080fd5b60006137778482850161369a565b91505092915050565b6000806040838503121561379357600080fd5b60006137a18582860161369a565b92505060206137b28582860161369a565b9150509250929050565b6000806000606084860312156137d157600080fd5b60006137df8682870161369a565b93505060206137f08682870161369a565b925050604061380186828701613742565b9150509250925092565b6000806000806080858703121561382157600080fd5b600061382f8782880161369a565b94505060206138408782880161369a565b935050604061385187828801613742565b925050606085013567ffffffffffffffff81111561386e57600080fd5b61387a878288016136ee565b91505092959194509250565b6000806040838503121561389957600080fd5b60006138a78582860161369a565b92505060206138b8858286016136af565b9150509250929050565b600080604083850312156138d557600080fd5b60006138e38582860161369a565b92505060206138f485828601613742565b9150509250929050565b60006020828403121561391057600080fd5b600061391e848285016136c4565b91505092915050565b60006020828403121561393957600080fd5b6000613947848285016136d9565b91505092915050565b60006020828403121561396257600080fd5b600082013567ffffffffffffffff81111561397c57600080fd5b61398884828501613718565b91505092915050565b6000602082840312156139a357600080fd5b60006139b184828501613742565b91505092915050565b60006139c68383613b50565b905092915050565b60006139da8383614754565b60208301905092915050565b6139ef81614e50565b82525050565b6139fe81614e3e565b82525050565b6000613a0f82614d8d565b613a198185614dd3565b935083602082028501613a2b85614d58565b8060005b85811015613a675784840389528151613a4885826139ba565b9450613a5383614db9565b925060208a01995050600181019050613a2f565b50829750879550505050505092915050565b6000613a8482614d98565b613a8e8185614de4565b9350613a9983614d68565b8060005b83811015613aca578151613ab188826139ce565b9750613abc83614dc6565b925050600181019050613a9d565b5085935050505092915050565b613ae081614e62565b82525050565b6000613af182614da3565b613afb8185614df5565b9350613b0b818560208601614ed3565b613b1481614f08565b840191505092915050565b6000613b2a82614da3565b613b348185614e06565b9350613b44818560208601614ed3565b80840191505092915050565b6000613b5b82614dae565b613b658185614e11565b9350613b75818560208601614ed3565b613b7e81614f08565b840191505092915050565b6000613b9482614dae565b613b9e8185614e22565b9350613bae818560208601614ed3565b613bb781614f08565b840191505092915050565b6000613bcd82614dae565b613bd78185614e33565b9350613be7818560208601614ed3565b80840191505092915050565b600081546001811660008114613c105760018114613c3657613c7a565b607f6002830416613c218187614e22565b955060ff198316865260208601935050613c7a565b60028204613c448187614e22565b9550613c4f85614d78565b60005b82811015613c7157815481890152600182019150602081019050613c52565b80880195505050505b505092915050565b6000613c8f602283614e22565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cf5603283614e22565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613d5b602683614e22565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613dc1602483614e22565b91507f43484f4f5345204120495348494841524120504c4154452057495448494e205260008301527f414e4745000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e27601c83614e22565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613e67601b83614e22565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000613ea7603383614e22565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f6620497368696861726120506c61746573000000000000000000000000006020830152604082019050919050565b6000613f0d602083614e22565b91507f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d6000830152602082019050919050565b6000613f4d602483614e22565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fb3601983614e22565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613ff3601f83614e22565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000614033601e83614e22565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000614073602683614e22565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140d9602c83614e22565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061413f603883614e22565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006141a5602a83614e22565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061420b602283614e22565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614271602083614e22565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006142b1602183614e22565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614317602c83614e22565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061437d602083614e22565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006143bd602983614e22565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614423602f83614e22565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614489602183614e22565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006144ef601683614e22565b91507f4c6963656e736520616c7265616479206c6f636b6564000000000000000000006000830152602082019050919050565b600061452f600083614e06565b9150600082019050919050565b6000614549601083614e22565b91507f5472616e73666572206661696c65642e000000000000000000000000000000006000830152602082019050919050565b6000614589603183614e22565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006145ef601d83614e22565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b600061462f602483614e22565b91507f43686f6f7365206120497368696861726120506c6174652077697468696e207260008301527f616e6765000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614695602c83614e22565b91507f53616c65206d7573742062652061637469766520746f206d696e74206120497360008301527f68696861726120506c61746500000000000000000000000000000000000000006020830152604082019050919050565b60006146fb602183614e22565b91507f43616e206f6e6c79206d696e7420313020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61475d81614eba565b82525050565b61476c81614eba565b82525050565b600061477e8284613b1f565b915081905092915050565b60006147958285613bc2565b91506147a18284613bc2565b91508190509392505050565b60006147b882614522565b9150819050919050565b60006020820190506147d760008301846139f5565b92915050565b60006080820190506147f260008301876139e6565b6147ff60208301866139f5565b61480c6040830185614763565b818103606083015261481e8184613ae6565b905095945050505050565b600060208201905081810360008301526148438184613a04565b905092915050565b600060208201905081810360008301526148658184613a79565b905092915050565b60006020820190506148826000830184613ad7565b92915050565b600060208201905081810360008301526148a28184613b89565b905092915050565b600060208201905081810360008301526148c48184613bf3565b905092915050565b600060208201905081810360008301526148e581613c82565b9050919050565b6000602082019050818103600083015261490581613ce8565b9050919050565b6000602082019050818103600083015261492581613d4e565b9050919050565b6000602082019050818103600083015261494581613db4565b9050919050565b6000602082019050818103600083015261496581613e1a565b9050919050565b6000602082019050818103600083015261498581613e5a565b9050919050565b600060208201905081810360008301526149a581613e9a565b9050919050565b600060208201905081810360008301526149c581613f00565b9050919050565b600060208201905081810360008301526149e581613f40565b9050919050565b60006020820190508181036000830152614a0581613fa6565b9050919050565b60006020820190508181036000830152614a2581613fe6565b9050919050565b60006020820190508181036000830152614a4581614026565b9050919050565b60006020820190508181036000830152614a6581614066565b9050919050565b60006020820190508181036000830152614a85816140cc565b9050919050565b60006020820190508181036000830152614aa581614132565b9050919050565b60006020820190508181036000830152614ac581614198565b9050919050565b60006020820190508181036000830152614ae5816141fe565b9050919050565b60006020820190508181036000830152614b0581614264565b9050919050565b60006020820190508181036000830152614b25816142a4565b9050919050565b60006020820190508181036000830152614b458161430a565b9050919050565b60006020820190508181036000830152614b6581614370565b9050919050565b60006020820190508181036000830152614b85816143b0565b9050919050565b60006020820190508181036000830152614ba581614416565b9050919050565b60006020820190508181036000830152614bc58161447c565b9050919050565b60006020820190508181036000830152614be5816144e2565b9050919050565b60006020820190508181036000830152614c058161453c565b9050919050565b60006020820190508181036000830152614c258161457c565b9050919050565b60006020820190508181036000830152614c45816145e2565b9050919050565b60006020820190508181036000830152614c6581614622565b9050919050565b60006020820190508181036000830152614c8581614688565b9050919050565b60006020820190508181036000830152614ca5816146ee565b9050919050565b6000602082019050614cc16000830184614763565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614cee57614ced614f06565b5b8060405250919050565b600067ffffffffffffffff821115614d1357614d12614f06565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614d4357614d42614f06565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614e4982614e9a565b9050919050565b6000614e5b82614e9a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614ef1578082015181840152602081019050614ed6565b83811115614f00576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b614f2281614e3e565b8114614f2d57600080fd5b50565b614f3981614e62565b8114614f4457600080fd5b50565b614f5081614e6e565b8114614f5b57600080fd5b50565b614f6781614eba565b8114614f7257600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220972bc05986d14762ace836939abda823845125832d810189a67e0dc1b311738064736f6c63430007060033

Deployed Bytecode

0x60806040526004361061023b5760003560e01c8063674adf081161012e578063a22cb465116100ab578063d9b137b21161006f578063d9b137b214610885578063dea8ea11146108c2578063e985e9c5146108de578063eb8d24441461091b578063f2fde38b146109465761023b565b8063a22cb465146107b6578063b09904b5146107df578063b88d4fde14610808578063bf4702fc14610831578063c87b56dd146108485761023b565b8063866bd4b6116100f2578063866bd4b6146106cd5780638da5cb5b146106f857806395d89b41146107235780639c3e72bd1461074e578063a1941fae146107795761023b565b8063674adf08146105e65780636c0360eb1461061157806370a082311461063c578063715018a6146106795780638462151c146106905761023b565b8063314b4e70116101bc5780634cd25b72116101805780634cd25b72146104dd5780634f6ccce71461050657806355f804b3146105435780636352211e1461056c57806363f6c638146105a95761023b565b8063314b4e701461043057806334918dfd1461045b5780633ccfd60b1461047257806342842e0e1461048957806345972b00146104b25761023b565b806318160ddd1161020357806318160ddd146103375780631a7c1f8f1461036257806323b872dd1461038d5780632a5e35bc146103b65780632f745c59146103f35761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e5578063109695231461030e575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906138fe565b61096f565b604051610274919061486d565b60405180910390f35b34801561028957600080fd5b506102926109d6565b60405161029f9190614888565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613991565b610a78565b6040516102dc91906147c2565b60405180910390f35b3480156102f157600080fd5b5061030c600480360381019061030791906138c2565b610afd565b005b34801561031a57600080fd5b5061033560048036038101906103309190613950565b610c15565b005b34801561034357600080fd5b5061034c610cab565b6040516103599190614cac565b60405180910390f35b34801561036e57600080fd5b50610377610cbc565b6040516103849190614cac565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af91906137bc565b610cc8565b005b3480156103c257600080fd5b506103dd60048036038101906103d89190613991565b610d28565b6040516103ea9190614888565b60405180910390f35b3480156103ff57600080fd5b5061041a600480360381019061041591906138c2565b610e26565b6040516104279190614cac565b60405180910390f35b34801561043c57600080fd5b50610445610e81565b6040516104529190614cac565b60405180910390f35b34801561046757600080fd5b50610470610e86565b005b34801561047e57600080fd5b50610487610f2e565b005b34801561049557600080fd5b506104b060048036038101906104ab91906137bc565b61105f565b005b3480156104be57600080fd5b506104c761107f565b6040516104d49190614cac565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff91906138c2565b611085565b005b34801561051257600080fd5b5061052d60048036038101906105289190613991565b6111a3565b60405161053a9190614cac565b60405180910390f35b34801561054f57600080fd5b5061056a60048036038101906105659190613950565b6111c6565b005b34801561057857600080fd5b50610593600480360381019061058e9190613991565b61124e565b6040516105a091906147c2565b60405180910390f35b3480156105b557600080fd5b506105d060048036038101906105cb9190613757565b611285565b6040516105dd9190614829565b60405180910390f35b3480156105f257600080fd5b506105fb611432565b6040516106089190614888565b60405180910390f35b34801561061d57600080fd5b506106266114d0565b6040516106339190614888565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e9190613757565b611572565b6040516106709190614cac565b60405180910390f35b34801561068557600080fd5b5061068e611631565b005b34801561069c57600080fd5b506106b760048036038101906106b29190613757565b61176e565b6040516106c4919061484b565b60405180910390f35b3480156106d957600080fd5b506106e2611867565b6040516106ef9190614cac565b60405180910390f35b34801561070457600080fd5b5061070d61186d565b60405161071a91906147c2565b60405180910390f35b34801561072f57600080fd5b50610738611897565b6040516107459190614888565b60405180910390f35b34801561075a57600080fd5b50610763611939565b6040516107709190614888565b60405180910390f35b34801561078557600080fd5b506107a0600480360381019061079b9190613991565b6119d7565b6040516107ad9190614888565b60405180910390f35b3480156107c257600080fd5b506107dd60048036038101906107d89190613886565b611a87565b005b3480156107eb57600080fd5b5061080660048036038101906108019190613950565b611c08565b005b34801561081457600080fd5b5061082f600480360381019061082a919061380b565b611cf4565b005b34801561083d57600080fd5b50610846611d56565b005b34801561085457600080fd5b5061086f600480360381019061086a9190613991565b611e27565b60405161087c9190614888565b60405180910390f35b34801561089157600080fd5b506108ac60048036038101906108a79190613991565b611faa565b6040516108b99190614888565b60405180910390f35b6108dc60048036038101906108d79190613991565b612097565b005b3480156108ea57600080fd5b5061090560048036038101906109009190613780565b612236565b604051610912919061486d565b60405180910390f35b34801561092757600080fd5b506109306122ca565b60405161093d919061486d565b60405180910390f35b34801561095257600080fd5b5061096d60048036038101906109689190613757565b6122dd565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610a6e5780601f10610a4357610100808354040283529160200191610a6e565b820191906000526020600020905b815481529060010190602001808311610a5157829003601f168201915b5050505050905090565b6000610a8382612489565b610ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab990614b2c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b088261124e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7090614bac565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b986124a6565b73ffffffffffffffffffffffffffffffffffffffff161480610bc75750610bc681610bc16124a6565b612236565b5b610c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfd90614a8c565b60405180910390fd5b610c1083836124ae565b505050565b610c1d6124a6565b73ffffffffffffffffffffffffffffffffffffffff16610c3b61186d565b73ffffffffffffffffffffffffffffffffffffffff1614610c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8890614b4c565b60405180910390fd5b80600b9080519060200190610ca7929190613573565b5050565b6000610cb76002612567565b905090565b67011c37937e08000081565b610cd9610cd36124a6565b8261257c565b610d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0f90614c0c565b60405180910390fd5b610d2383838361265a565b505050565b6060610d32610cab565b8210610d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6a90614c4c565b60405180910390fd5b600e60008381526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e1a5780601f10610def57610100808354040283529160200191610e1a565b820191906000526020600020905b815481529060010190602001808311610dfd57829003601f168201915b50505050509050919050565b6000610e7982600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061287190919063ffffffff16565b905092915050565b600a81565b610e8e6124a6565b73ffffffffffffffffffffffffffffffffffffffff16610eac61186d565b73ffffffffffffffffffffffffffffffffffffffff1614610f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef990614b4c565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b610f366124a6565b73ffffffffffffffffffffffffffffffffffffffff16610f5461186d565b73ffffffffffffffffffffffffffffffffffffffff1614610faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa190614b4c565b60405180910390fd5b600047905060003373ffffffffffffffffffffffffffffffffffffffff1682604051610fd5906147ad565b60006040518083038185875af1925050503d8060008114611012576040519150601f19603f3d011682016040523d82523d6000602084013e611017565b606091505b505090508061105b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105290614bec565b60405180910390fd5b5050565b61107a83838360405180602001604052806000815250611cf4565b505050565b6103e781565b61108d6124a6565b73ffffffffffffffffffffffffffffffffffffffff166110ab61186d565b73ffffffffffffffffffffffffffffffffffffffff1614611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f890614b4c565b60405180910390fd5b600061110b610cab565b905060008211801561111f5750600f548211155b61115e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611155906149ac565b60405180910390fd5b60005b82811015611182576111758482840161288b565b8080600101915050611161565b5061119882600f546128a990919063ffffffff16565b600f81905550505050565b6000806111ba8360026128f990919063ffffffff16565b50905080915050919050565b6111ce6124a6565b73ffffffffffffffffffffffffffffffffffffffff166111ec61186d565b73ffffffffffffffffffffffffffffffffffffffff1614611242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123990614b4c565b60405180910390fd5b61124b81612925565b50565b600061127e82604051806060016040528060298152602001614fa860299139600261293f9092919063ffffffff16565b9050919050565b6060600061129283611572565b905060008114156112f257600067ffffffffffffffff811180156112b557600080fd5b506040519080825280602002602001820160405280156112e957816020015b60608152602001906001900390816112d45790505b5091505061142d565b60008167ffffffffffffffff8111801561130b57600080fd5b5060405190808252806020026020018201604052801561133f57816020015b606081526020019060019003908161132a5790505b50905060005b8281101561142657600e600061135b8784610e26565b81526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113fd5780601f106113d2576101008083540402835291602001916113fd565b820191906000526020600020905b8154815290600101906020018083116113e057829003601f168201915b505050505082828151811061140e57fe5b60200260200101819052508080600101915050611345565b8193505050505b919050565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114c85780601f1061149d576101008083540402835291602001916114c8565b820191906000526020600020905b8154815290600101906020018083116114ab57829003601f168201915b505050505081565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156115685780601f1061153d57610100808354040283529160200191611568565b820191906000526020600020905b81548152906001019060200180831161154b57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115da90614aac565b60405180910390fd5b61162a600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061295e565b9050919050565b6116396124a6565b73ffffffffffffffffffffffffffffffffffffffff1661165761186d565b73ffffffffffffffffffffffffffffffffffffffff16146116ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a490614b4c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6060600061177b83611572565b905060008114156117d657600067ffffffffffffffff8111801561179e57600080fd5b506040519080825280602002602001820160405280156117cd5781602001602082028036833780820191505090505b50915050611862565b60008167ffffffffffffffff811180156117ef57600080fd5b5060405190808252806020026020018201604052801561181e5781602001602082028036833780820191505090505b50905060005b8281101561185b576118368582610e26565b82828151811061184257fe5b6020026020010181815250508080600101915050611824565b8193505050505b919050565b600f5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561192f5780601f106119045761010080835404028352916020019161192f565b820191906000526020600020905b81548152906001019060200180831161191257829003601f168201915b5050505050905090565b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156119cf5780601f106119a4576101008083540402835291602001916119cf565b820191906000526020600020905b8154815290600101906020018083116119b257829003601f168201915b505050505081565b600e6020528060005260406000206000915090508054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611a7f5780601f10611a5457610100808354040283529160200191611a7f565b820191906000526020600020905b815481529060010190602001808311611a6257829003601f168201915b505050505081565b611a8f6124a6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af4906149ec565b60405180910390fd5b8060056000611b0a6124a6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bb76124a6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bfc919061486d565b60405180910390a35050565b611c106124a6565b73ffffffffffffffffffffffffffffffffffffffff16611c2e61186d565b73ffffffffffffffffffffffffffffffffffffffff1614611c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7b90614b4c565b60405180910390fd5b60001515600d60009054906101000a900460ff16151514611cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd190614bcc565b60405180910390fd5b80600c9080519060200190611cf0929190613573565b5050565b611d05611cff6124a6565b8361257c565b611d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3b90614c0c565b60405180910390fd5b611d5084848484612973565b50505050565b611d5e6124a6565b73ffffffffffffffffffffffffffffffffffffffff16611d7c61186d565b73ffffffffffffffffffffffffffffffffffffffff1614611dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc990614b4c565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055507f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0600c604051611e1d91906148aa565b60405180910390a1565b6060611e3282612489565b611e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6890614b8c565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611f1a5780601f10611eef57610100808354040283529160200191611f1a565b820191906000526020600020905b815481529060010190602001808311611efd57829003601f168201915b505050505090506000611f2b6114d0565b9050600081511415611f41578192505050611fa5565b600082511115611f76578082604051602001611f5e929190614789565b60405160208183030381529060405292505050611fa5565b80611f80856129cf565b604051602001611f91929190614789565b604051602081830303815290604052925050505b919050565b6060611fb4610cab565b8210611ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fec9061492c565b60405180910390fd5b600c8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561208b5780601f106120605761010080835404028352916020019161208b565b820191906000526020600020905b81548152906001019060200180831161206e57829003601f168201915b50505050509050919050565b600d60019054906101000a900460ff166120e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dd90614c6c565b60405180910390fd5b6000811180156120f75750600a8111155b612136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212d90614c8c565b60405180910390fd5b6103e761215382612145610cab565b612b1690919063ffffffff16565b1115612194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218b9061498c565b60405180910390fd5b6121af8167011c37937e080000612b6b90919063ffffffff16565b3410156121f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e890614a0c565b60405180910390fd5b60005b81811015612232576000612206610cab565b90506103e7612213610cab565b101561222457612223338261288b565b5b5080806001019150506121f4565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60019054906101000a900460ff1681565b6122e56124a6565b73ffffffffffffffffffffffffffffffffffffffff1661230361186d565b73ffffffffffffffffffffffffffffffffffffffff1614612359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235090614b4c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c09061490c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061249f826002612bdb90919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166125218361124e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061257582600001612bf5565b9050919050565b600061258782612489565b6125c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bd90614a6c565b60405180910390fd5b60006125d18361124e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061264057508373ffffffffffffffffffffffffffffffffffffffff1661262884610a78565b73ffffffffffffffffffffffffffffffffffffffff16145b8061265157506126508185612236565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661267a8261124e565b73ffffffffffffffffffffffffffffffffffffffff16146126d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c790614b6c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612740576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612737906149cc565b60405180910390fd5b61274b838383612c06565b6127566000826124ae565b6127a781600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612c0b90919063ffffffff16565b506127f981600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612c2590919063ffffffff16565b5061281081836002612c3f9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006128808360000183612c74565b60001c905092915050565b6128a5828260405180602001604052806000815250612ce1565b5050565b6000828211156128ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e590614a2c565b60405180910390fd5b818303905092915050565b60008060008061290c8660000186612d3c565b915091508160001c8160001c9350935050509250929050565b806009908051906020019061293b929190613573565b5050565b6000612952846000018460001b84612dbf565b60001c90509392505050565b600061296c82600001612e50565b9050919050565b61297e84848461265a565b61298a84848484612e61565b6129c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c0906148ec565b60405180910390fd5b50505050565b60606000821415612a17576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b11565b600082905060005b60008214612a41578080600101915050600a8281612a3957fe5b049150612a1f565b60008167ffffffffffffffff81118015612a5a57600080fd5b506040519080825280601f01601f191660200182016040528015612a8d5781602001600182028036833780820191505090505b50905060006001830390508593505b60008414612b0957600a8481612aae57fe5b0660300160f81b82828060019003935081518110612ac857fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481612b0157fe5b049350612a9c565b819450505050505b919050565b600080828401905083811015612b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b589061496c565b60405180910390fd5b8091505092915050565b600080831415612b7e5760009050612bd5565b6000828402905082848281612b8f57fe5b0414612bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc790614b0c565b60405180910390fd5b809150505b92915050565b6000612bed836000018360001b612fc5565b905092915050565b600081600001805490509050919050565b505050565b6000612c1d836000018360001b612fe8565b905092915050565b6000612c37836000018360001b6130d0565b905092915050565b6000612c6b846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b613140565b90509392505050565b600081836000018054905011612cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb6906148cc565b60405180910390fd5b826000018281548110612cce57fe5b9060005260206000200154905092915050565b612ceb838361321c565b612cf86000848484612e61565b612d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2e906148ec565b60405180910390fd5b505050565b60008082846000018054905011612d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7f90614acc565b60405180910390fd5b6000846000018481548110612d9957fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e189190614888565b60405180910390fd5b50846000016001820381548110612e3457fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b6000612e828473ffffffffffffffffffffffffffffffffffffffff166133aa565b612e8f5760019050612fbd565b6000612f5663150b7a0260e01b612ea46124a6565b888787604051602401612eba94939291906147dd565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614f76603291398773ffffffffffffffffffffffffffffffffffffffff166133bd9092919063ffffffff16565b9050600081806020019051810190612f6e9190613927565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b600080836001016000848152602001908152602001600020549050600081146130c4576000600182039050600060018660000180549050039050600086600001828154811061303357fe5b906000526020600020015490508087600001848154811061305057fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061308857fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506130ca565b60009150505b92915050565b60006130dc83836133d5565b61313557826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061313a565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156131e757846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050613215565b828560000160018303815481106131fa57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561328c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328390614aec565b60405180910390fd5b61329581612489565b156132d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132cc9061494c565b60405180910390fd5b6132e160008383612c06565b61333281600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612c2590919063ffffffff16565b5061334981836002612c3f9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606133cc84846000856133f8565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b60608247101561343d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343490614a4c565b60405180910390fd5b613446856133aa565b613485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347c90614c2c565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516134ae9190614772565b60006040518083038185875af1925050503d80600081146134eb576040519150601f19603f3d011682016040523d82523d6000602084013e6134f0565b606091505b509150915061350082828661350c565b92505050949350505050565b6060831561351c5782905061356c565b60008351111561352f5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135639190614888565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826135a957600085556135f0565b82601f106135c257805160ff19168380011785556135f0565b828001600101855582156135f0579182015b828111156135ef5782518255916020019190600101906135d4565b5b5090506135fd9190613601565b5090565b5b8082111561361a576000816000905550600101613602565b5090565b600061363161362c84614cf8565b614cc7565b90508281526020810184848401111561364957600080fd5b613654848285614ec4565b509392505050565b600061366f61366a84614d28565b614cc7565b90508281526020810184848401111561368757600080fd5b613692848285614ec4565b509392505050565b6000813590506136a981614f19565b92915050565b6000813590506136be81614f30565b92915050565b6000813590506136d381614f47565b92915050565b6000815190506136e881614f47565b92915050565b600082601f8301126136ff57600080fd5b813561370f84826020860161361e565b91505092915050565b600082601f83011261372957600080fd5b813561373984826020860161365c565b91505092915050565b60008135905061375181614f5e565b92915050565b60006020828403121561376957600080fd5b60006137778482850161369a565b91505092915050565b6000806040838503121561379357600080fd5b60006137a18582860161369a565b92505060206137b28582860161369a565b9150509250929050565b6000806000606084860312156137d157600080fd5b60006137df8682870161369a565b93505060206137f08682870161369a565b925050604061380186828701613742565b9150509250925092565b6000806000806080858703121561382157600080fd5b600061382f8782880161369a565b94505060206138408782880161369a565b935050604061385187828801613742565b925050606085013567ffffffffffffffff81111561386e57600080fd5b61387a878288016136ee565b91505092959194509250565b6000806040838503121561389957600080fd5b60006138a78582860161369a565b92505060206138b8858286016136af565b9150509250929050565b600080604083850312156138d557600080fd5b60006138e38582860161369a565b92505060206138f485828601613742565b9150509250929050565b60006020828403121561391057600080fd5b600061391e848285016136c4565b91505092915050565b60006020828403121561393957600080fd5b6000613947848285016136d9565b91505092915050565b60006020828403121561396257600080fd5b600082013567ffffffffffffffff81111561397c57600080fd5b61398884828501613718565b91505092915050565b6000602082840312156139a357600080fd5b60006139b184828501613742565b91505092915050565b60006139c68383613b50565b905092915050565b60006139da8383614754565b60208301905092915050565b6139ef81614e50565b82525050565b6139fe81614e3e565b82525050565b6000613a0f82614d8d565b613a198185614dd3565b935083602082028501613a2b85614d58565b8060005b85811015613a675784840389528151613a4885826139ba565b9450613a5383614db9565b925060208a01995050600181019050613a2f565b50829750879550505050505092915050565b6000613a8482614d98565b613a8e8185614de4565b9350613a9983614d68565b8060005b83811015613aca578151613ab188826139ce565b9750613abc83614dc6565b925050600181019050613a9d565b5085935050505092915050565b613ae081614e62565b82525050565b6000613af182614da3565b613afb8185614df5565b9350613b0b818560208601614ed3565b613b1481614f08565b840191505092915050565b6000613b2a82614da3565b613b348185614e06565b9350613b44818560208601614ed3565b80840191505092915050565b6000613b5b82614dae565b613b658185614e11565b9350613b75818560208601614ed3565b613b7e81614f08565b840191505092915050565b6000613b9482614dae565b613b9e8185614e22565b9350613bae818560208601614ed3565b613bb781614f08565b840191505092915050565b6000613bcd82614dae565b613bd78185614e33565b9350613be7818560208601614ed3565b80840191505092915050565b600081546001811660008114613c105760018114613c3657613c7a565b607f6002830416613c218187614e22565b955060ff198316865260208601935050613c7a565b60028204613c448187614e22565b9550613c4f85614d78565b60005b82811015613c7157815481890152600182019150602081019050613c52565b80880195505050505b505092915050565b6000613c8f602283614e22565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cf5603283614e22565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613d5b602683614e22565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613dc1602483614e22565b91507f43484f4f5345204120495348494841524120504c4154452057495448494e205260008301527f414e4745000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e27601c83614e22565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613e67601b83614e22565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000613ea7603383614e22565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f6620497368696861726120506c61746573000000000000000000000000006020830152604082019050919050565b6000613f0d602083614e22565b91507f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d6000830152602082019050919050565b6000613f4d602483614e22565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fb3601983614e22565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613ff3601f83614e22565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000614033601e83614e22565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000614073602683614e22565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140d9602c83614e22565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061413f603883614e22565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006141a5602a83614e22565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061420b602283614e22565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614271602083614e22565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006142b1602183614e22565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614317602c83614e22565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061437d602083614e22565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006143bd602983614e22565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614423602f83614e22565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614489602183614e22565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006144ef601683614e22565b91507f4c6963656e736520616c7265616479206c6f636b6564000000000000000000006000830152602082019050919050565b600061452f600083614e06565b9150600082019050919050565b6000614549601083614e22565b91507f5472616e73666572206661696c65642e000000000000000000000000000000006000830152602082019050919050565b6000614589603183614e22565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006145ef601d83614e22565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b600061462f602483614e22565b91507f43686f6f7365206120497368696861726120506c6174652077697468696e207260008301527f616e6765000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614695602c83614e22565b91507f53616c65206d7573742062652061637469766520746f206d696e74206120497360008301527f68696861726120506c61746500000000000000000000000000000000000000006020830152604082019050919050565b60006146fb602183614e22565b91507f43616e206f6e6c79206d696e7420313020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61475d81614eba565b82525050565b61476c81614eba565b82525050565b600061477e8284613b1f565b915081905092915050565b60006147958285613bc2565b91506147a18284613bc2565b91508190509392505050565b60006147b882614522565b9150819050919050565b60006020820190506147d760008301846139f5565b92915050565b60006080820190506147f260008301876139e6565b6147ff60208301866139f5565b61480c6040830185614763565b818103606083015261481e8184613ae6565b905095945050505050565b600060208201905081810360008301526148438184613a04565b905092915050565b600060208201905081810360008301526148658184613a79565b905092915050565b60006020820190506148826000830184613ad7565b92915050565b600060208201905081810360008301526148a28184613b89565b905092915050565b600060208201905081810360008301526148c48184613bf3565b905092915050565b600060208201905081810360008301526148e581613c82565b9050919050565b6000602082019050818103600083015261490581613ce8565b9050919050565b6000602082019050818103600083015261492581613d4e565b9050919050565b6000602082019050818103600083015261494581613db4565b9050919050565b6000602082019050818103600083015261496581613e1a565b9050919050565b6000602082019050818103600083015261498581613e5a565b9050919050565b600060208201905081810360008301526149a581613e9a565b9050919050565b600060208201905081810360008301526149c581613f00565b9050919050565b600060208201905081810360008301526149e581613f40565b9050919050565b60006020820190508181036000830152614a0581613fa6565b9050919050565b60006020820190508181036000830152614a2581613fe6565b9050919050565b60006020820190508181036000830152614a4581614026565b9050919050565b60006020820190508181036000830152614a6581614066565b9050919050565b60006020820190508181036000830152614a85816140cc565b9050919050565b60006020820190508181036000830152614aa581614132565b9050919050565b60006020820190508181036000830152614ac581614198565b9050919050565b60006020820190508181036000830152614ae5816141fe565b9050919050565b60006020820190508181036000830152614b0581614264565b9050919050565b60006020820190508181036000830152614b25816142a4565b9050919050565b60006020820190508181036000830152614b458161430a565b9050919050565b60006020820190508181036000830152614b6581614370565b9050919050565b60006020820190508181036000830152614b85816143b0565b9050919050565b60006020820190508181036000830152614ba581614416565b9050919050565b60006020820190508181036000830152614bc58161447c565b9050919050565b60006020820190508181036000830152614be5816144e2565b9050919050565b60006020820190508181036000830152614c058161453c565b9050919050565b60006020820190508181036000830152614c258161457c565b9050919050565b60006020820190508181036000830152614c45816145e2565b9050919050565b60006020820190508181036000830152614c6581614622565b9050919050565b60006020820190508181036000830152614c8581614688565b9050919050565b60006020820190508181036000830152614ca5816146ee565b9050919050565b6000602082019050614cc16000830184614763565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614cee57614ced614f06565b5b8060405250919050565b600067ffffffffffffffff821115614d1357614d12614f06565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614d4357614d42614f06565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614e4982614e9a565b9050919050565b6000614e5b82614e9a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614ef1578082015181840152602081019050614ed6565b83811115614f00576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b614f2281614e3e565b8114614f2d57600080fd5b50565b614f3981614e62565b8114614f4457600080fd5b50565b614f5081614e6e565b8114614f5b57600080fd5b50565b614f6781614eba565b8114614f7257600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220972bc05986d14762ace836939abda823845125832d810189a67e0dc1b311738064736f6c63430007060033

Deployed Bytecode Sourcemap

66893:4748:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10291:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51576:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54362:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53892:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68380:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53370:211;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67188:57;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55252:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70708:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53132:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67266:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68670:89;;;;;;;;;;;;;:::i;:::-;;67742:203;;;;;;;;;;;;;:::i;:::-;;55628:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67320:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67957:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53658:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68517:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51332:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71071:561;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66984:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52951:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51049:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66287:148;;;;;;;;;;;;;:::i;:::-;;68777:540;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67508:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65636:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51745:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67035:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67416:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54655:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69782:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55850:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69618:125;;;;;;;;;;;;;:::i;:::-;;51920:792;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69368:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69974:722;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55021:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67371:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66590:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10291:150;10376:4;10400:20;:33;10421:11;10400:33;;;;;;;;;;;;;;;;;;;;;;;;;;;10393:40;;10291:150;;;:::o;51576:100::-;51630:13;51663:5;51656:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51576:100;:::o;54362:221::-;54438:7;54466:16;54474:7;54466;:16::i;:::-;54458:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54551:15;:24;54567:7;54551:24;;;;;;;;;;;;;;;;;;;;;54544:31;;54362:221;;;:::o;53892:404::-;53973:13;53989:23;54004:7;53989:14;:23::i;:::-;53973:39;;54037:5;54031:11;;:2;:11;;;;54023:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;54117:5;54101:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;54126:44;54150:5;54157:12;:10;:12::i;:::-;54126:23;:44::i;:::-;54101:69;54093:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;54267:21;54276:2;54280:7;54267:8;:21::i;:::-;53892:404;;;:::o;68380:129::-;65867:12;:10;:12::i;:::-;65856:23;;:7;:5;:7::i;:::-;:23;;;65848:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68487:14:::1;68465:19;:36;;;;;;;;;;;;:::i;:::-;;68380:129:::0;:::o;53370:211::-;53431:7;53552:21;:12;:19;:21::i;:::-;53545:28;;53370:211;:::o;67188:57::-;67228:17;67188:57;:::o;55252:305::-;55413:41;55432:12;:10;:12::i;:::-;55446:7;55413:18;:41::i;:::-;55405:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;55521:28;55531:4;55537:2;55541:7;55521:9;:28::i;:::-;55252:305;;;:::o;70708:212::-;70770:13;70816;:11;:13::i;:::-;70805:8;:24;70796:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;70889:13;:23;70903:8;70889:23;;;;;;;;;;;70882:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70708:212;;;:::o;53132:162::-;53229:7;53256:30;53280:5;53256:13;:20;53270:5;53256:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;53249:37;;53132:162;;;;:::o;67266:45::-;67309:2;67266:45;:::o;68670:89::-;65867:12;:10;:12::i;:::-;65856:23;;:7;:5;:7::i;:::-;:23;;;65848:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68739:12:::1;;;;;;;;;;;68738:13;68723:12;;:28;;;;;;;;;;;;;;;;;;68670:89::o:0;67742:203::-;65867:12;:10;:12::i;:::-;65856:23;;:7;:5;:7::i;:::-;:23;;;65848:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67790:12:::1;67805:21;67790:36;;67838:12;67856:10;:15;;67878:7;67856:34;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67837:53;;;67909:7;67901:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;65927:1;;67742:203::o:0;55628:151::-;55732:39;55749:4;55755:2;55759:7;55732:39;;;;;;;;;;;;:16;:39::i;:::-;55628:151;;;:::o;67320:42::-;67359:3;67320:42;:::o;67957:413::-;65867:12;:10;:12::i;:::-;65856:23;;:7;:5;:7::i;:::-;:23;;;65848:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68055:11:::1;68069:13;:11;:13::i;:::-;68055:27;;68118:1;68101:14;:18;:55;;;;;68141:15;;68123:14;:33;;68101:55;68093:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;68209:6;68204:95;68225:14;68221:1;:18;68204:95;;;68261:26;68271:3;68285:1;68276:6;:10;68261:9;:26::i;:::-;68241:3;;;;;;;68204:95;;;;68327:35;68347:14;68327:15;;:19;;:35;;;;:::i;:::-;68309:15;:53;;;;65927:1;67957:413:::0;;:::o;53658:172::-;53733:7;53754:15;53775:22;53791:5;53775:12;:15;;:22;;;;:::i;:::-;53753:44;;;53815:7;53808:14;;;53658:172;;;:::o;68517:99::-;65867:12;:10;:12::i;:::-;65856:23;;:7;:5;:7::i;:::-;:23;;;65848:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68588:20:::1;68600:7;68588:11;:20::i;:::-;68517:99:::0;:::o;51332:177::-;51404:7;51431:70;51448:7;51431:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;51424:77;;51332:177;;;:::o;71071:561::-;71139:15;71168:18;71189:17;71199:6;71189:9;:17::i;:::-;71168:38;;71235:1;71221:10;:15;71217:408;;;71311:1;71298:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71291:22;;;;;71217:408;71346:22;71384:10;71371:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71346:49;;71410:13;71438:148;71462:10;71454:5;:18;71438:148;;;71518:13;:51;71533:34;71553:6;71561:5;71533:19;:34::i;:::-;71518:51;;;;;;;;;;;71502:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:6;71509:5;71502:13;;;;;;;;;;;;;:67;;;;71474:7;;;;;;;71438:148;;;71607:6;71600:13;;;;;71071:561;;;;:::o;66984:38::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52951:97::-;52999:13;53032:8;53025:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52951:97;:::o;51049:221::-;51121:7;51166:1;51149:19;;:5;:19;;;;51141:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;51233:29;:13;:20;51247:5;51233:20;;;;;;;;;;;;;;;:27;:29::i;:::-;51226:36;;51049:221;;;:::o;66287:148::-;65867:12;:10;:12::i;:::-;65856:23;;:7;:5;:7::i;:::-;:23;;;65848:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66394:1:::1;66357:40;;66378:6;;;;;;;;;;;66357:40;;;;;;;;;;;;66425:1;66408:6;;:19;;;;;;;;;;;;;;;;;;66287:148::o:0;68777:540::-;68838:16;68868:18;68889:17;68899:6;68889:9;:17::i;:::-;68868:38;;68935:1;68921:10;:15;68917:393;;;69012:1;68998:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68991:23;;;;;68917:393;69047:23;69087:10;69073:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69047:51;;69113:13;69141:130;69165:10;69157:5;:18;69141:130;;;69221:34;69241:6;69249:5;69221:19;:34::i;:::-;69205:6;69212:5;69205:13;;;;;;;;;;;;;:50;;;;;69177:7;;;;;;;69141:130;;;69292:6;69285:13;;;;;68777:540;;;;:::o;67508:32::-;;;;:::o;65636:87::-;65682:7;65709:6;;;;;;;;;;;65702:13;;65636:87;:::o;51745:104::-;51801:13;51834:7;51827:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51745:104;:::o;67035:31::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;67416:44::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54655:295::-;54770:12;:10;:12::i;:::-;54758:24;;:8;:24;;;;54750:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;54870:8;54825:18;:32;54844:12;:10;:12::i;:::-;54825:32;;;;;;;;;;;;;;;:42;54858:8;54825:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;54923:8;54894:48;;54909:12;:10;:12::i;:::-;54894:48;;;54933:8;54894:48;;;;;;:::i;:::-;;;;;;;;54655:295;;:::o;69782:174::-;65867:12;:10;:12::i;:::-;65856:23;;:7;:5;:7::i;:::-;:23;;;65848:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69882:5:::1;69865:22;;:13;;;;;;;;;;;:22;;;69857:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;69940:8;69925:12;:23;;;;;;;;;;;;:::i;:::-;;69782:174:::0;:::o;55850:285::-;55982:41;56001:12;:10;:12::i;:::-;56015:7;55982:18;:41::i;:::-;55974:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;56088:39;56102:4;56108:2;56112:7;56121:5;56088:13;:39::i;:::-;55850:285;;;;:::o;69618:125::-;65867:12;:10;:12::i;:::-;65856:23;;:7;:5;:7::i;:::-;:23;;;65848:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69686:4:::1;69669:13;;:21;;;;;;;;;;;;;;;;;;69706:29;69722:12;69706:29;;;;;;:::i;:::-;;;;;;;;69618:125::o:0;51920:792::-;51993:13;52027:16;52035:7;52027;:16::i;:::-;52019:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;52108:23;52134:10;:19;52145:7;52134:19;;;;;;;;;;;52108:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52164:18;52185:9;:7;:9::i;:::-;52164:30;;52292:1;52276:4;52270:18;:23;52266:72;;;52317:9;52310:16;;;;;;52266:72;52468:1;52448:9;52442:23;:27;52438:108;;;52517:4;52523:9;52500:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52486:48;;;;;;52438:108;52678:4;52684:18;:7;:16;:18::i;:::-;52661:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52647:57;;;;51920:792;;;;:::o;69368:184::-;69420:13;69460;:11;:13::i;:::-;69454:3;:19;69446:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69532:12;69525:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69368:184;;;:::o;69974:722::-;70051:12;;;;;;;;;;;70043:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;70148:1;70131:14;:18;:59;;;;;67309:2;70153:14;:37;;70131:59;70123:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;67359:3;70247:33;70265:14;70247:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:49;;70239:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;70384:33;70402:14;67228:17;70384;;:33;;;;:::i;:::-;70371:9;:46;;70363:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;70478:6;70474:213;70494:14;70490:1;:18;70474:213;;;70530:14;70547:13;:11;:13::i;:::-;70530:30;;67359:3;70579:13;:11;:13::i;:::-;:28;70575:101;;;70628:32;70638:10;70650:9;70628;:32::i;:::-;70575:101;70474:213;70510:3;;;;;;;70474:213;;;;69974:722;:::o;55021:164::-;55118:4;55142:18;:25;55161:5;55142:25;;;;;;;;;;;;;;;:35;55168:8;55142:35;;;;;;;;;;;;;;;;;;;;;;;;;55135:42;;55021:164;;;;:::o;67371:32::-;;;;;;;;;;;;;:::o;66590:244::-;65867:12;:10;:12::i;:::-;65856:23;;:7;:5;:7::i;:::-;:23;;;65848:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66699:1:::1;66679:22;;:8;:22;;;;66671:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;66789:8;66760:38;;66781:6;;;;;;;;;;;66760:38;;;;;;;;;;;;66818:8;66809:6;;:17;;;;;;;;;;;;;;;;;;66590:244:::0;:::o;57602:127::-;57667:4;57691:30;57713:7;57691:12;:21;;:30;;;;:::i;:::-;57684:37;;57602:127;;;:::o;723:106::-;776:15;811:10;804:17;;723:106;:::o;63620:192::-;63722:2;63695:15;:24;63711:7;63695:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;63778:7;63774:2;63740:46;;63749:23;63764:7;63749:14;:23::i;:::-;63740:46;;;;;;;;;;;;63620:192;;:::o;44334:123::-;44403:7;44430:19;44438:3;:10;;44430:7;:19::i;:::-;44423:26;;44334:123;;;:::o;57896:355::-;57989:4;58014:16;58022:7;58014;:16::i;:::-;58006:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;58090:13;58106:23;58121:7;58106:14;:23::i;:::-;58090:39;;58159:5;58148:16;;:7;:16;;;:51;;;;58192:7;58168:31;;:20;58180:7;58168:11;:20::i;:::-;:31;;;58148:51;:94;;;;58203:39;58227:5;58234:7;58203:23;:39::i;:::-;58148:94;58140:103;;;57896:355;;;;:::o;61032:599::-;61157:4;61130:31;;:23;61145:7;61130:14;:23::i;:::-;:31;;;61122:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;61258:1;61244:16;;:2;:16;;;;61236:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;61314:39;61335:4;61341:2;61345:7;61314:20;:39::i;:::-;61418:29;61435:1;61439:7;61418:8;:29::i;:::-;61460:35;61487:7;61460:13;:19;61474:4;61460:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;61506:30;61528:7;61506:13;:17;61520:2;61506:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;61549:29;61566:7;61575:2;61549:12;:16;;:29;;;;;:::i;:::-;;61615:7;61611:2;61596:27;;61605:4;61596:27;;;;;;;;;;;;61032:599;;;:::o;36125:137::-;36196:7;36231:22;36235:3;:10;;36247:5;36231:3;:22::i;:::-;36223:31;;36216:38;;36125:137;;;;:::o;58594:110::-;58670:26;58680:2;58684:7;58670:26;;;;;;;;;;;;:9;:26::i;:::-;58594:110;;:::o;14315:158::-;14373:7;14406:1;14401;:6;;14393:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;14464:1;14460;:5;14453:12;;14315:158;;;;:::o;44796:236::-;44876:7;44885;44906:11;44919:13;44936:22;44940:3;:10;;44952:5;44936:3;:22::i;:::-;44905:53;;;;44985:3;44977:12;;45015:5;45007:14;;44969:55;;;;;;44796:236;;;;;:::o;62232:100::-;62316:8;62305;:19;;;;;;;;;;;;:::i;:::-;;62232:100;:::o;46082:213::-;46189:7;46240:44;46245:3;:10;;46265:3;46257:12;;46271;46240:4;:44::i;:::-;46232:53;;46209:78;;46082:213;;;;;:::o;35667:114::-;35727:7;35754:19;35762:3;:10;;35754:7;:19::i;:::-;35747:26;;35667:114;;;:::o;57017:272::-;57131:28;57141:4;57147:2;57151:7;57131:9;:28::i;:::-;57178:48;57201:4;57207:2;57211:7;57220:5;57178:22;:48::i;:::-;57170:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;57017:272;;;;:::o;46546:746::-;46602:13;46832:1;46823:5;:10;46819:53;;;46850:10;;;;;;;;;;;;;;;;;;;;;46819:53;46882:12;46897:5;46882:20;;46913:14;46938:78;46953:1;46945:4;:9;46938:78;;46971:8;;;;;;;47002:2;46994:10;;;;;;;;;46938:78;;;47026:19;47058:6;47048:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47026:39;;47076:13;47101:1;47092:6;:10;47076:26;;47120:5;47113:12;;47136:117;47151:1;47143:4;:9;47136:117;;47212:2;47205:4;:9;;;;;;47200:2;:14;47187:29;;47169:6;47176:7;;;;;;;47169:15;;;;;;;;;;;:47;;;;;;;;;;;47239:2;47231:10;;;;;;;;;47136:117;;;47277:6;47263:21;;;;;;46546:746;;;;:::o;13853:179::-;13911:7;13931:9;13947:1;13943;:5;13931:17;;13972:1;13967;:6;;13959:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;14023:1;14016:8;;;13853:179;;;;:::o;14732:220::-;14790:7;14819:1;14814;:6;14810:20;;;14829:1;14822:8;;;;14810:20;14841:9;14857:1;14853;:5;14841:17;;14886:1;14881;14877;:5;;;;;;:10;14869:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;14943:1;14936:8;;;14732:220;;;;;:::o;44095:151::-;44179:4;44203:35;44213:3;:10;;44233:3;44225:12;;44203:9;:35::i;:::-;44196:42;;44095:151;;;;:::o;40913:110::-;40969:7;40996:3;:12;;:19;;;;40989:26;;40913:110;;;:::o;64425:93::-;;;;:::o;35212:137::-;35282:4;35306:35;35314:3;:10;;35334:5;35326:14;;35306:7;:35::i;:::-;35299:42;;35212:137;;;;:::o;34905:131::-;34972:4;34996:32;35001:3;:10;;35021:5;35013:14;;34996:4;:32::i;:::-;34989:39;;34905:131;;;;:::o;43518:185::-;43607:4;43631:64;43636:3;:10;;43656:3;43648:12;;43686:5;43670:23;;43662:32;;43631:4;:64::i;:::-;43624:71;;43518:185;;;;;:::o;31163:204::-;31230:7;31279:5;31258:3;:11;;:18;;;;:26;31250:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31341:3;:11;;31353:5;31341:18;;;;;;;;;;;;;;;;31334:25;;31163:204;;;;:::o;58931:250::-;59027:18;59033:2;59037:7;59027:5;:18::i;:::-;59064:54;59095:1;59099:2;59103:7;59112:5;59064:22;:54::i;:::-;59056:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;58931:250;;;:::o;41378:279::-;41445:7;41454;41504:5;41482:3;:12;;:19;;;;:27;41474:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;41561:22;41586:3;:12;;41599:5;41586:19;;;;;;;;;;;;;;;;;;41561:44;;41624:5;:10;;;41636:5;:12;;;41616:33;;;;;41378:279;;;;;:::o;42875:319::-;42969:7;42989:16;43008:3;:12;;:17;43021:3;43008:17;;;;;;;;;;;;42989:36;;43056:1;43044:8;:13;;43059:12;43036:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;43126:3;:12;;43150:1;43139:8;:12;43126:26;;;;;;;;;;;;;;;;;;:33;;;43119:40;;;42875:319;;;;;:::o;30710:109::-;30766:7;30793:3;:11;;:18;;;;30786:25;;30710:109;;;:::o;62897:604::-;63018:4;63045:15;:2;:13;;;:15::i;:::-;63040:60;;63084:4;63077:11;;;;63040:60;63110:23;63136:252;63189:45;;;63249:12;:10;:12::i;:::-;63276:4;63295:7;63317:5;63152:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63136:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;63110:278;;63399:13;63426:10;63415:32;;;;;;;;;;;;:::i;:::-;63399:48;;48046:10;63476:16;;63466:26;;;:6;:26;;;;63458:35;;;;62897:604;;;;;;;:::o;40693:125::-;40764:4;40809:1;40788:3;:12;;:17;40801:3;40788:17;;;;;;;;;;;;:22;;40781:29;;40693:125;;;;:::o;28865:1544::-;28931:4;29049:18;29070:3;:12;;:19;29083:5;29070:19;;;;;;;;;;;;29049:40;;29120:1;29106:10;:15;29102:1300;;29468:21;29505:1;29492:10;:14;29468:38;;29521:17;29562:1;29541:3;:11;;:18;;;;:22;29521:42;;29808:17;29828:3;:11;;29840:9;29828:22;;;;;;;;;;;;;;;;29808:42;;29974:9;29945:3;:11;;29957:13;29945:26;;;;;;;;;;;;;;;:38;;;;30093:1;30077:13;:17;30051:3;:12;;:23;30064:9;30051:23;;;;;;;;;;;:43;;;;30203:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;30298:3;:12;;:19;30311:5;30298:19;;;;;;;;;;;30291:26;;;30341:4;30334:11;;;;;;;;29102:1300;30385:5;30378:12;;;28865:1544;;;;;:::o;28275:414::-;28338:4;28360:21;28370:3;28375:5;28360:9;:21::i;:::-;28355:327;;28398:3;:11;;28415:5;28398:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28581:3;:11;;:18;;;;28559:3;:12;;:19;28572:5;28559:19;;;;;;;;;;;:40;;;;28621:4;28614:11;;;;28355:327;28665:5;28658:12;;28275:414;;;;;:::o;38193:692::-;38269:4;38385:16;38404:3;:12;;:17;38417:3;38404:17;;;;;;;;;;;;38385:36;;38450:1;38438:8;:13;38434:444;;;38505:3;:12;;38523:38;;;;;;;;38540:3;38523:38;;;;38553:5;38523:38;;;38505:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38720:3;:12;;:19;;;;38700:3;:12;;:17;38713:3;38700:17;;;;;;;;;;;:39;;;;38761:4;38754:11;;;;;38434:444;38834:5;38798:3;:12;;38822:1;38811:8;:12;38798:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;38861:5;38854:12;;;38193:692;;;;;;:::o;59517:404::-;59611:1;59597:16;;:2;:16;;;;59589:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;59670:16;59678:7;59670;:16::i;:::-;59669:17;59661:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;59732:45;59761:1;59765:2;59769:7;59732:20;:45::i;:::-;59790:30;59812:7;59790:13;:17;59804:2;59790:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;59833:29;59850:7;59859:2;59833:12;:16;;:29;;;;;:::i;:::-;;59905:7;59901:2;59880:33;;59897:1;59880:33;;;;;;;;;;;;59517:404;;:::o;19294:422::-;19354:4;19562:12;19673:7;19661:20;19653:28;;19707:1;19700:4;:8;19693:15;;;19294:422;;;:::o;22212:195::-;22315:12;22347:52;22369:6;22377:4;22383:1;22386:12;22347:21;:52::i;:::-;22340:59;;22212:195;;;;;:::o;30495:129::-;30568:4;30615:1;30592:3;:12;;:19;30605:5;30592:19;;;;;;;;;;;;:24;;30585:31;;30495:129;;;;:::o;23264:530::-;23391:12;23449:5;23424:21;:30;;23416:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;23516:18;23527:6;23516:10;:18::i;:::-;23508:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;23642:12;23656:23;23683:6;:11;;23703:5;23711:4;23683:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23641:75;;;;23734:52;23752:7;23761:10;23773:12;23734:17;:52::i;:::-;23727:59;;;;23264:530;;;;;;:::o;25804:742::-;25919:12;25948:7;25944:595;;;25979:10;25972:17;;;;25944:595;26113:1;26093:10;:17;:21;26089:439;;;26356:10;26350:17;26417:15;26404:10;26400:2;26396:19;26389:44;26304:148;26499:12;26492:20;;;;;;;;;;;:::i;:::-;;;;;;;;25804:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:260::-;;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:52;5116:7;5107:6;5096:9;5092:22;5072:52;:::i;:::-;5062:62;;5018:116;4946:195;;;;:::o;5147:282::-;;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5281:1;5278;5271:12;5233:2;5324:1;5349:63;5404:7;5395:6;5384:9;5380:22;5349:63;:::i;:::-;5339:73;;5295:127;5223:206;;;;:::o;5435:375::-;;5553:2;5541:9;5532:7;5528:23;5524:32;5521:2;;;5569:1;5566;5559:12;5521:2;5640:1;5629:9;5625:17;5612:31;5670:18;5662:6;5659:30;5656:2;;;5702:1;5699;5692:12;5656:2;5730:63;5785:7;5776:6;5765:9;5761:22;5730:63;:::i;:::-;5720:73;;5583:220;5511:299;;;;:::o;5816:262::-;;5924:2;5912:9;5903:7;5899:23;5895:32;5892:2;;;5940:1;5937;5930:12;5892:2;5983:1;6008:53;6053:7;6044:6;6033:9;6029:22;6008:53;:::i;:::-;5998:63;;5954:117;5882:196;;;;:::o;6084:::-;;6208:66;6270:3;6262:6;6208:66;:::i;:::-;6194:80;;6184:96;;;;:::o;6286:179::-;;6376:46;6418:3;6410:6;6376:46;:::i;:::-;6454:4;6449:3;6445:14;6431:28;;6366:99;;;;:::o;6471:142::-;6574:32;6600:5;6574:32;:::i;:::-;6569:3;6562:45;6552:61;;:::o;6619:118::-;6706:24;6724:5;6706:24;:::i;:::-;6701:3;6694:37;6684:53;;:::o;6771:991::-;;6939:64;6997:5;6939:64;:::i;:::-;7019:96;7108:6;7103:3;7019:96;:::i;:::-;7012:103;;7141:3;7186:4;7178:6;7174:17;7169:3;7165:27;7216:66;7276:5;7216:66;:::i;:::-;7305:7;7336:1;7321:396;7346:6;7343:1;7340:13;7321:396;;;7417:9;7411:4;7407:20;7402:3;7395:33;7468:6;7462:13;7496:84;7575:4;7560:13;7496:84;:::i;:::-;7488:92;;7603:70;7666:6;7603:70;:::i;:::-;7593:80;;7702:4;7697:3;7693:14;7686:21;;7381:336;7368:1;7365;7361:9;7356:14;;7321:396;;;7325:14;7733:4;7726:11;;7753:3;7746:10;;6915:847;;;;;;;;;:::o;7798:732::-;;7946:54;7994:5;7946:54;:::i;:::-;8016:86;8095:6;8090:3;8016:86;:::i;:::-;8009:93;;8126:56;8176:5;8126:56;:::i;:::-;8205:7;8236:1;8221:284;8246:6;8243:1;8240:13;8221:284;;;8322:6;8316:13;8349:63;8408:3;8393:13;8349:63;:::i;:::-;8342:70;;8435:60;8488:6;8435:60;:::i;:::-;8425:70;;8281:224;8268:1;8265;8261:9;8256:14;;8221:284;;;8225:14;8521:3;8514:10;;7922:608;;;;;;;:::o;8536:109::-;8617:21;8632:5;8617:21;:::i;:::-;8612:3;8605:34;8595:50;;:::o;8651:360::-;;8765:38;8797:5;8765:38;:::i;:::-;8819:70;8882:6;8877:3;8819:70;:::i;:::-;8812:77;;8898:52;8943:6;8938:3;8931:4;8924:5;8920:16;8898:52;:::i;:::-;8975:29;8997:6;8975:29;:::i;:::-;8970:3;8966:39;8959:46;;8741:270;;;;;:::o;9017:373::-;;9149:38;9181:5;9149:38;:::i;:::-;9203:88;9284:6;9279:3;9203:88;:::i;:::-;9196:95;;9300:52;9345:6;9340:3;9333:4;9326:5;9322:16;9300:52;:::i;:::-;9377:6;9372:3;9368:16;9361:23;;9125:265;;;;;:::o;9396:344::-;;9502:39;9535:5;9502:39;:::i;:::-;9557:61;9611:6;9606:3;9557:61;:::i;:::-;9550:68;;9627:52;9672:6;9667:3;9660:4;9653:5;9649:16;9627:52;:::i;:::-;9704:29;9726:6;9704:29;:::i;:::-;9699:3;9695:39;9688:46;;9478:262;;;;;:::o;9746:364::-;;9862:39;9895:5;9862:39;:::i;:::-;9917:71;9981:6;9976:3;9917:71;:::i;:::-;9910:78;;9997:52;10042:6;10037:3;10030:4;10023:5;10019:16;9997:52;:::i;:::-;10074:29;10096:6;10074:29;:::i;:::-;10069:3;10065:39;10058:46;;9838:272;;;;;:::o;10116:377::-;;10250:39;10283:5;10250:39;:::i;:::-;10305:89;10387:6;10382:3;10305:89;:::i;:::-;10298:96;;10403:52;10448:6;10443:3;10436:4;10429:5;10425:16;10403:52;:::i;:::-;10480:6;10475:3;10471:16;10464:23;;10226:267;;;;;:::o;10523:937::-;;10645:5;10639:12;10682:1;10671:9;10667:17;10698:1;10693:281;;;;10988:1;10983:471;;;;10660:794;;10693:281;10783:4;10779:1;10768:9;10764:17;10760:28;10808:71;10872:6;10867:3;10808:71;:::i;:::-;10801:78;;10923:4;10919:9;10908;10904:25;10899:3;10892:38;10959:4;10954:3;10950:14;10943:21;;10700:274;10693:281;;10983:471;11064:1;11053:9;11049:17;11086:71;11150:6;11145:3;11086:71;:::i;:::-;11079:78;;11185:38;11217:5;11185:38;:::i;:::-;11245:1;11259:154;11273:6;11270:1;11267:13;11259:154;;;11347:7;11341:14;11337:1;11332:3;11328:11;11321:35;11397:1;11388:7;11384:15;11373:26;;11295:4;11292:1;11288:12;11283:17;;11259:154;;;11442:1;11437:3;11433:11;11426:18;;10990:464;;;10660:794;;10612:848;;;;;:::o;11466:366::-;;11629:67;11693:2;11688:3;11629:67;:::i;:::-;11622:74;;11726:34;11722:1;11717:3;11713:11;11706:55;11792:4;11787:2;11782:3;11778:12;11771:26;11823:2;11818:3;11814:12;11807:19;;11612:220;;;:::o;11838:382::-;;12001:67;12065:2;12060:3;12001:67;:::i;:::-;11994:74;;12098:34;12094:1;12089:3;12085:11;12078:55;12164:20;12159:2;12154:3;12150:12;12143:42;12211:2;12206:3;12202:12;12195:19;;11984:236;;;:::o;12226:370::-;;12389:67;12453:2;12448:3;12389:67;:::i;:::-;12382:74;;12486:34;12482:1;12477:3;12473:11;12466:55;12552:8;12547:2;12542:3;12538:12;12531:30;12587:2;12582:3;12578:12;12571:19;;12372:224;;;:::o;12602:368::-;;12765:67;12829:2;12824:3;12765:67;:::i;:::-;12758:74;;12862:34;12858:1;12853:3;12849:11;12842:55;12928:6;12923:2;12918:3;12914:12;12907:28;12961:2;12956:3;12952:12;12945:19;;12748:222;;;:::o;12976:326::-;;13139:67;13203:2;13198:3;13139:67;:::i;:::-;13132:74;;13236:30;13232:1;13227:3;13223:11;13216:51;13293:2;13288:3;13284:12;13277:19;;13122:180;;;:::o;13308:325::-;;13471:67;13535:2;13530:3;13471:67;:::i;:::-;13464:74;;13568:29;13564:1;13559:3;13555:11;13548:50;13624:2;13619:3;13615:12;13608:19;;13454:179;;;:::o;13639:383::-;;13802:67;13866:2;13861:3;13802:67;:::i;:::-;13795:74;;13899:34;13895:1;13890:3;13886:11;13879:55;13965:21;13960:2;13955:3;13951:12;13944:43;14013:2;14008:3;14004:12;13997:19;;13785:237;;;:::o;14028:330::-;;14191:67;14255:2;14250:3;14191:67;:::i;:::-;14184:74;;14288:34;14284:1;14279:3;14275:11;14268:55;14349:2;14344:3;14340:12;14333:19;;14174:184;;;:::o;14364:368::-;;14527:67;14591:2;14586:3;14527:67;:::i;:::-;14520:74;;14624:34;14620:1;14615:3;14611:11;14604:55;14690:6;14685:2;14680:3;14676:12;14669:28;14723:2;14718:3;14714:12;14707:19;;14510:222;;;:::o;14738:323::-;;14901:67;14965:2;14960:3;14901:67;:::i;:::-;14894:74;;14998:27;14994:1;14989:3;14985:11;14978:48;15052:2;15047:3;15043:12;15036:19;;14884:177;;;:::o;15067:329::-;;15230:67;15294:2;15289:3;15230:67;:::i;:::-;15223:74;;15327:33;15323:1;15318:3;15314:11;15307:54;15387:2;15382:3;15378:12;15371:19;;15213:183;;;:::o;15402:328::-;;15565:67;15629:2;15624:3;15565:67;:::i;:::-;15558:74;;15662:32;15658:1;15653:3;15649:11;15642:53;15721:2;15716:3;15712:12;15705:19;;15548:182;;;:::o;15736:370::-;;15899:67;15963:2;15958:3;15899:67;:::i;:::-;15892:74;;15996:34;15992:1;15987:3;15983:11;15976:55;16062:8;16057:2;16052:3;16048:12;16041:30;16097:2;16092:3;16088:12;16081:19;;15882:224;;;:::o;16112:376::-;;16275:67;16339:2;16334:3;16275:67;:::i;:::-;16268:74;;16372:34;16368:1;16363:3;16359:11;16352:55;16438:14;16433:2;16428:3;16424:12;16417:36;16479:2;16474:3;16470:12;16463:19;;16258:230;;;:::o;16494:388::-;;16657:67;16721:2;16716:3;16657:67;:::i;:::-;16650:74;;16754:34;16750:1;16745:3;16741:11;16734:55;16820:26;16815:2;16810:3;16806:12;16799:48;16873:2;16868:3;16864:12;16857:19;;16640:242;;;:::o;16888:374::-;;17051:67;17115:2;17110:3;17051:67;:::i;:::-;17044:74;;17148:34;17144:1;17139:3;17135:11;17128:55;17214:12;17209:2;17204:3;17200:12;17193:34;17253:2;17248:3;17244:12;17237:19;;17034:228;;;:::o;17268:366::-;;17431:67;17495:2;17490:3;17431:67;:::i;:::-;17424:74;;17528:34;17524:1;17519:3;17515:11;17508:55;17594:4;17589:2;17584:3;17580:12;17573:26;17625:2;17620:3;17616:12;17609:19;;17414:220;;;:::o;17640:330::-;;17803:67;17867:2;17862:3;17803:67;:::i;:::-;17796:74;;17900:34;17896:1;17891:3;17887:11;17880:55;17961:2;17956:3;17952:12;17945:19;;17786:184;;;:::o;17976:365::-;;18139:67;18203:2;18198:3;18139:67;:::i;:::-;18132:74;;18236:34;18232:1;18227:3;18223:11;18216:55;18302:3;18297:2;18292:3;18288:12;18281:25;18332:2;18327:3;18323:12;18316:19;;18122:219;;;:::o;18347:376::-;;18510:67;18574:2;18569:3;18510:67;:::i;:::-;18503:74;;18607:34;18603:1;18598:3;18594:11;18587:55;18673:14;18668:2;18663:3;18659:12;18652:36;18714:2;18709:3;18705:12;18698:19;;18493:230;;;:::o;18729:330::-;;18892:67;18956:2;18951:3;18892:67;:::i;:::-;18885:74;;18989:34;18985:1;18980:3;18976:11;18969:55;19050:2;19045:3;19041:12;19034:19;;18875:184;;;:::o;19065:373::-;;19228:67;19292:2;19287:3;19228:67;:::i;:::-;19221:74;;19325:34;19321:1;19316:3;19312:11;19305:55;19391:11;19386:2;19381:3;19377:12;19370:33;19429:2;19424:3;19420:12;19413:19;;19211:227;;;:::o;19444:379::-;;19607:67;19671:2;19666:3;19607:67;:::i;:::-;19600:74;;19704:34;19700:1;19695:3;19691:11;19684:55;19770:17;19765:2;19760:3;19756:12;19749:39;19814:2;19809:3;19805:12;19798:19;;19590:233;;;:::o;19829:365::-;;19992:67;20056:2;20051:3;19992:67;:::i;:::-;19985:74;;20089:34;20085:1;20080:3;20076:11;20069:55;20155:3;20150:2;20145:3;20141:12;20134:25;20185:2;20180:3;20176:12;20169:19;;19975:219;;;:::o;20200:320::-;;20363:67;20427:2;20422:3;20363:67;:::i;:::-;20356:74;;20460:24;20456:1;20451:3;20447:11;20440:45;20511:2;20506:3;20502:12;20495:19;;20346:174;;;:::o;20526:297::-;;20706:83;20787:1;20782:3;20706:83;:::i;:::-;20699:90;;20815:1;20810:3;20806:11;20799:18;;20689:134;;;:::o;20829:314::-;;20992:67;21056:2;21051:3;20992:67;:::i;:::-;20985:74;;21089:18;21085:1;21080:3;21076:11;21069:39;21134:2;21129:3;21125:12;21118:19;;20975:168;;;:::o;21149:381::-;;21312:67;21376:2;21371:3;21312:67;:::i;:::-;21305:74;;21409:34;21405:1;21400:3;21396:11;21389:55;21475:19;21470:2;21465:3;21461:12;21454:41;21521:2;21516:3;21512:12;21505:19;;21295:235;;;:::o;21536:327::-;;21699:67;21763:2;21758:3;21699:67;:::i;:::-;21692:74;;21796:31;21792:1;21787:3;21783:11;21776:52;21854:2;21849:3;21845:12;21838:19;;21682:181;;;:::o;21869:368::-;;22032:67;22096:2;22091:3;22032:67;:::i;:::-;22025:74;;22129:34;22125:1;22120:3;22116:11;22109:55;22195:6;22190:2;22185:3;22181:12;22174:28;22228:2;22223:3;22219:12;22212:19;;22015:222;;;:::o;22243:376::-;;22406:67;22470:2;22465:3;22406:67;:::i;:::-;22399:74;;22503:34;22499:1;22494:3;22490:11;22483:55;22569:14;22564:2;22559:3;22555:12;22548:36;22610:2;22605:3;22601:12;22594:19;;22389:230;;;:::o;22625:365::-;;22788:67;22852:2;22847:3;22788:67;:::i;:::-;22781:74;;22885:34;22881:1;22876:3;22872:11;22865:55;22951:3;22946:2;22941:3;22937:12;22930:25;22981:2;22976:3;22972:12;22965:19;;22771:219;;;:::o;22996:108::-;23073:24;23091:5;23073:24;:::i;:::-;23068:3;23061:37;23051:53;;:::o;23110:118::-;23197:24;23215:5;23197:24;:::i;:::-;23192:3;23185:37;23175:53;;:::o;23234:271::-;;23386:93;23475:3;23466:6;23386:93;:::i;:::-;23379:100;;23496:3;23489:10;;23368:137;;;;:::o;23511:435::-;;23713:95;23804:3;23795:6;23713:95;:::i;:::-;23706:102;;23825:95;23916:3;23907:6;23825:95;:::i;:::-;23818:102;;23937:3;23930:10;;23695:251;;;;;:::o;23952:379::-;;24158:147;24301:3;24158:147;:::i;:::-;24151:154;;24322:3;24315:10;;24140:191;;;:::o;24337:222::-;;24468:2;24457:9;24453:18;24445:26;;24481:71;24549:1;24538:9;24534:17;24525:6;24481:71;:::i;:::-;24435:124;;;;:::o;24565:672::-;;24814:3;24803:9;24799:19;24791:27;;24828:87;24912:1;24901:9;24897:17;24888:6;24828:87;:::i;:::-;24925:72;24993:2;24982:9;24978:18;24969:6;24925:72;:::i;:::-;25007;25075:2;25064:9;25060:18;25051:6;25007:72;:::i;:::-;25126:9;25120:4;25116:20;25111:2;25100:9;25096:18;25089:48;25154:76;25225:4;25216:6;25154:76;:::i;:::-;25146:84;;24781:456;;;;;;;:::o;25243:413::-;;25444:2;25433:9;25429:18;25421:26;;25493:9;25487:4;25483:20;25479:1;25468:9;25464:17;25457:47;25521:128;25644:4;25635:6;25521:128;:::i;:::-;25513:136;;25411:245;;;;:::o;25662:373::-;;25843:2;25832:9;25828:18;25820:26;;25892:9;25886:4;25882:20;25878:1;25867:9;25863:17;25856:47;25920:108;26023:4;26014:6;25920:108;:::i;:::-;25912:116;;25810:225;;;;:::o;26041:210::-;;26166:2;26155:9;26151:18;26143:26;;26179:65;26241:1;26230:9;26226:17;26217:6;26179:65;:::i;:::-;26133:118;;;;:::o;26257:313::-;;26408:2;26397:9;26393:18;26385:26;;26457:9;26451:4;26447:20;26443:1;26432:9;26428:17;26421:47;26485:78;26558:4;26549:6;26485:78;:::i;:::-;26477:86;;26375:195;;;;:::o;26576:307::-;;26724:2;26713:9;26709:18;26701:26;;26773:9;26767:4;26763:20;26759:1;26748:9;26744:17;26737:47;26801:75;26871:4;26862:6;26801:75;:::i;:::-;26793:83;;26691:192;;;;:::o;26889:419::-;;27093:2;27082:9;27078:18;27070:26;;27142:9;27136:4;27132:20;27128:1;27117:9;27113:17;27106:47;27170:131;27296:4;27170:131;:::i;:::-;27162:139;;27060:248;;;:::o;27314:419::-;;27518:2;27507:9;27503:18;27495:26;;27567:9;27561:4;27557:20;27553:1;27542:9;27538:17;27531:47;27595:131;27721:4;27595:131;:::i;:::-;27587:139;;27485:248;;;:::o;27739:419::-;;27943:2;27932:9;27928:18;27920:26;;27992:9;27986:4;27982:20;27978:1;27967:9;27963:17;27956:47;28020:131;28146:4;28020:131;:::i;:::-;28012:139;;27910:248;;;:::o;28164:419::-;;28368:2;28357:9;28353:18;28345:26;;28417:9;28411:4;28407:20;28403:1;28392:9;28388:17;28381:47;28445:131;28571:4;28445:131;:::i;:::-;28437:139;;28335:248;;;:::o;28589:419::-;;28793:2;28782:9;28778:18;28770:26;;28842:9;28836:4;28832:20;28828:1;28817:9;28813:17;28806:47;28870:131;28996:4;28870:131;:::i;:::-;28862:139;;28760:248;;;:::o;29014:419::-;;29218:2;29207:9;29203:18;29195:26;;29267:9;29261:4;29257:20;29253:1;29242:9;29238:17;29231:47;29295:131;29421:4;29295:131;:::i;:::-;29287:139;;29185:248;;;:::o;29439:419::-;;29643:2;29632:9;29628:18;29620:26;;29692:9;29686:4;29682:20;29678:1;29667:9;29663:17;29656:47;29720:131;29846:4;29720:131;:::i;:::-;29712:139;;29610:248;;;:::o;29864:419::-;;30068:2;30057:9;30053:18;30045:26;;30117:9;30111:4;30107:20;30103:1;30092:9;30088:17;30081:47;30145:131;30271:4;30145:131;:::i;:::-;30137:139;;30035:248;;;:::o;30289:419::-;;30493:2;30482:9;30478:18;30470:26;;30542:9;30536:4;30532:20;30528:1;30517:9;30513:17;30506:47;30570:131;30696:4;30570:131;:::i;:::-;30562:139;;30460:248;;;:::o;30714:419::-;;30918:2;30907:9;30903:18;30895:26;;30967:9;30961:4;30957:20;30953:1;30942:9;30938:17;30931:47;30995:131;31121:4;30995:131;:::i;:::-;30987:139;;30885:248;;;:::o;31139:419::-;;31343:2;31332:9;31328:18;31320:26;;31392:9;31386:4;31382:20;31378:1;31367:9;31363:17;31356:47;31420:131;31546:4;31420:131;:::i;:::-;31412:139;;31310:248;;;:::o;31564:419::-;;31768:2;31757:9;31753:18;31745:26;;31817:9;31811:4;31807:20;31803:1;31792:9;31788:17;31781:47;31845:131;31971:4;31845:131;:::i;:::-;31837:139;;31735:248;;;:::o;31989:419::-;;32193:2;32182:9;32178:18;32170:26;;32242:9;32236:4;32232:20;32228:1;32217:9;32213:17;32206:47;32270:131;32396:4;32270:131;:::i;:::-;32262:139;;32160:248;;;:::o;32414:419::-;;32618:2;32607:9;32603:18;32595:26;;32667:9;32661:4;32657:20;32653:1;32642:9;32638:17;32631:47;32695:131;32821:4;32695:131;:::i;:::-;32687:139;;32585:248;;;:::o;32839:419::-;;33043:2;33032:9;33028:18;33020:26;;33092:9;33086:4;33082:20;33078:1;33067:9;33063:17;33056:47;33120:131;33246:4;33120:131;:::i;:::-;33112:139;;33010:248;;;:::o;33264:419::-;;33468:2;33457:9;33453:18;33445:26;;33517:9;33511:4;33507:20;33503:1;33492:9;33488:17;33481:47;33545:131;33671:4;33545:131;:::i;:::-;33537:139;;33435:248;;;:::o;33689:419::-;;33893:2;33882:9;33878:18;33870:26;;33942:9;33936:4;33932:20;33928:1;33917:9;33913:17;33906:47;33970:131;34096:4;33970:131;:::i;:::-;33962:139;;33860:248;;;:::o;34114:419::-;;34318:2;34307:9;34303:18;34295:26;;34367:9;34361:4;34357:20;34353:1;34342:9;34338:17;34331:47;34395:131;34521:4;34395:131;:::i;:::-;34387:139;;34285:248;;;:::o;34539:419::-;;34743:2;34732:9;34728:18;34720:26;;34792:9;34786:4;34782:20;34778:1;34767:9;34763:17;34756:47;34820:131;34946:4;34820:131;:::i;:::-;34812:139;;34710:248;;;:::o;34964:419::-;;35168:2;35157:9;35153:18;35145:26;;35217:9;35211:4;35207:20;35203:1;35192:9;35188:17;35181:47;35245:131;35371:4;35245:131;:::i;:::-;35237:139;;35135:248;;;:::o;35389:419::-;;35593:2;35582:9;35578:18;35570:26;;35642:9;35636:4;35632:20;35628:1;35617:9;35613:17;35606:47;35670:131;35796:4;35670:131;:::i;:::-;35662:139;;35560:248;;;:::o;35814:419::-;;36018:2;36007:9;36003:18;35995:26;;36067:9;36061:4;36057:20;36053:1;36042:9;36038:17;36031:47;36095:131;36221:4;36095:131;:::i;:::-;36087:139;;35985:248;;;:::o;36239:419::-;;36443:2;36432:9;36428:18;36420:26;;36492:9;36486:4;36482:20;36478:1;36467:9;36463:17;36456:47;36520:131;36646:4;36520:131;:::i;:::-;36512:139;;36410:248;;;:::o;36664:419::-;;36868:2;36857:9;36853:18;36845:26;;36917:9;36911:4;36907:20;36903:1;36892:9;36888:17;36881:47;36945:131;37071:4;36945:131;:::i;:::-;36937:139;;36835:248;;;:::o;37089:419::-;;37293:2;37282:9;37278:18;37270:26;;37342:9;37336:4;37332:20;37328:1;37317:9;37313:17;37306:47;37370:131;37496:4;37370:131;:::i;:::-;37362:139;;37260:248;;;:::o;37514:419::-;;37718:2;37707:9;37703:18;37695:26;;37767:9;37761:4;37757:20;37753:1;37742:9;37738:17;37731:47;37795:131;37921:4;37795:131;:::i;:::-;37787:139;;37685:248;;;:::o;37939:419::-;;38143:2;38132:9;38128:18;38120:26;;38192:9;38186:4;38182:20;38178:1;38167:9;38163:17;38156:47;38220:131;38346:4;38220:131;:::i;:::-;38212:139;;38110:248;;;:::o;38364:419::-;;38568:2;38557:9;38553:18;38545:26;;38617:9;38611:4;38607:20;38603:1;38592:9;38588:17;38581:47;38645:131;38771:4;38645:131;:::i;:::-;38637:139;;38535:248;;;:::o;38789:419::-;;38993:2;38982:9;38978:18;38970:26;;39042:9;39036:4;39032:20;39028:1;39017:9;39013:17;39006:47;39070:131;39196:4;39070:131;:::i;:::-;39062:139;;38960:248;;;:::o;39214:419::-;;39418:2;39407:9;39403:18;39395:26;;39467:9;39461:4;39457:20;39453:1;39442:9;39438:17;39431:47;39495:131;39621:4;39495:131;:::i;:::-;39487:139;;39385:248;;;:::o;39639:419::-;;39843:2;39832:9;39828:18;39820:26;;39892:9;39886:4;39882:20;39878:1;39867:9;39863:17;39856:47;39920:131;40046:4;39920:131;:::i;:::-;39912:139;;39810:248;;;:::o;40064:222::-;;40195:2;40184:9;40180:18;40172:26;;40208:71;40276:1;40265:9;40261:17;40252:6;40208:71;:::i;:::-;40162:124;;;;:::o;40292:278::-;;40358:2;40352:9;40342:19;;40400:4;40392:6;40388:17;40507:6;40495:10;40492:22;40471:18;40459:10;40456:34;40453:62;40450:2;;;40518:13;;:::i;:::-;40450:2;40553:10;40549:2;40542:22;40332:238;;;;:::o;40576:326::-;;40727:18;40719:6;40716:30;40713:2;;;40749:13;;:::i;:::-;40713:2;40829:4;40825:9;40818:4;40810:6;40806:17;40802:33;40794:41;;40890:4;40884;40880:15;40872:23;;40642:260;;;:::o;40908:327::-;;41060:18;41052:6;41049:30;41046:2;;;41082:13;;:::i;:::-;41046:2;41162:4;41158:9;41151:4;41143:6;41139:17;41135:33;41127:41;;41223:4;41217;41213:15;41205:23;;40975:260;;;:::o;41241:142::-;;41341:3;41333:11;;41371:4;41366:3;41362:14;41354:22;;41323:60;;;:::o;41389:132::-;;41479:3;41471:11;;41509:4;41504:3;41500:14;41492:22;;41461:60;;;:::o;41527:141::-;;41599:3;41591:11;;41622:3;41619:1;41612:14;41656:4;41653:1;41643:18;41635:26;;41581:87;;;:::o;41674:124::-;;41785:5;41779:12;41769:22;;41758:40;;;:::o;41804:114::-;;41905:5;41899:12;41889:22;;41878:40;;;:::o;41924:98::-;;42009:5;42003:12;41993:22;;41982:40;;;:::o;42028:99::-;;42114:5;42108:12;42098:22;;42087:40;;;:::o;42133:123::-;;42245:4;42240:3;42236:14;42228:22;;42218:38;;;:::o;42262:113::-;;42364:4;42359:3;42355:14;42347:22;;42337:38;;;:::o;42381:194::-;;42524:6;42519:3;42512:19;42564:4;42559:3;42555:14;42540:29;;42502:73;;;;:::o;42581:184::-;;42714:6;42709:3;42702:19;42754:4;42749:3;42745:14;42730:29;;42692:73;;;;:::o;42771:168::-;;42888:6;42883:3;42876:19;42928:4;42923:3;42919:14;42904:29;;42866:73;;;;:::o;42945:147::-;;43083:3;43068:18;;43058:34;;;;:::o;43098:159::-;;43206:6;43201:3;43194:19;43246:4;43241:3;43237:14;43222:29;;43184:73;;;;:::o;43263:169::-;;43381:6;43376:3;43369:19;43421:4;43416:3;43412:14;43397:29;;43359:73;;;;:::o;43438:148::-;;43577:3;43562:18;;43552:34;;;;:::o;43592:96::-;;43658:24;43676:5;43658:24;:::i;:::-;43647:35;;43637:51;;;:::o;43694:104::-;;43768:24;43786:5;43768:24;:::i;:::-;43757:35;;43747:51;;;:::o;43804:90::-;;43881:5;43874:13;43867:21;43856:32;;43846:48;;;:::o;43900:149::-;;43976:66;43969:5;43965:78;43954:89;;43944:105;;;:::o;44055:126::-;;44132:42;44125:5;44121:54;44110:65;;44100:81;;;:::o;44187:77::-;;44253:5;44242:16;;44232:32;;;:::o;44270:154::-;44354:6;44349:3;44344;44331:30;44416:1;44407:6;44402:3;44398:16;44391:27;44321:103;;;:::o;44430:307::-;44498:1;44508:113;44522:6;44519:1;44516:13;44508:113;;;44607:1;44602:3;44598:11;44592:18;44588:1;44583:3;44579:11;44572:39;44544:2;44541:1;44537:10;44532:15;;44508:113;;;44639:6;44636:1;44633:13;44630:2;;;44719:1;44710:6;44705:3;44701:16;44694:27;44630:2;44479:258;;;;:::o;44743:48::-;44776:9;44797:102;;44889:2;44885:7;44880:2;44873:5;44869:14;44865:28;44855:38;;44845:54;;;:::o;44905:122::-;44978:24;44996:5;44978:24;:::i;:::-;44971:5;44968:35;44958:2;;45017:1;45014;45007:12;44958:2;44948:79;:::o;45033:116::-;45103:21;45118:5;45103:21;:::i;:::-;45096:5;45093:32;45083:2;;45139:1;45136;45129:12;45083:2;45073:76;:::o;45155:120::-;45227:23;45244:5;45227:23;:::i;:::-;45220:5;45217:34;45207:2;;45265:1;45262;45255:12;45207:2;45197:78;:::o;45281:122::-;45354:24;45372:5;45354:24;:::i;:::-;45347:5;45344:35;45334:2;;45393:1;45390;45383:12;45334:2;45324:79;:::o

Swarm Source

ipfs://972bc05986d14762ace836939abda823845125832d810189a67e0dc1b3117380
Loading...
Loading
Loading...
Loading
[ 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.