ETH Price: $3,434.40 (-2.34%)
Gas: 3 Gwei

Token

Dapper Space Collective (DSC)
 

Overview

Max Total Supply

521 DSC

Holders

204

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DSC
0x589c4ccbf846852430732284c79ce85c87ea6447
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
DapperGang

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT


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

pragma solidity >=0.6.0 <0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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



pragma solidity >=0.6.2 <0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity >=0.6.2 <0.8.0;


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

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

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

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

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



pragma solidity >=0.6.2 <0.8.0;


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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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



pragma solidity >=0.6.0 <0.8.0;


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

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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

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



pragma solidity >=0.6.2 <0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

            bytes32 lastvalue = set._values[lastIndex];

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

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

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

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

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

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

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

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

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

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

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

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


    // UintSet

    struct UintSet {
        Set _inner;
    }

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

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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

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

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

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

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

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

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

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

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

            MapEntry storage lastEntry = map._entries[lastIndex];

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

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

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

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

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

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

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

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

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

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

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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    /**
     * @dev Converts a `uint256` to its ASCII `string` representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        uint256 index = digits - 1;
        temp = value;
        while (temp != 0) {
            buffer[index--] = bytes1(uint8(48 + temp % 10));
            temp /= 10;
        }
        return string(buffer);
    }
}

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



pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

    // Mapping from token ID to approved address
    mapping (uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping (address => mapping (address => bool)) private _operatorApprovals;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

    // Base URI
    string private _baseURI;

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _holderTokens[owner].length();
    }

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

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(base, tokenId.toString()));
    }

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

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

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(_msgSender() == owner || ERC721.isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _tokenOwners.contains(tokenId);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || ERC721.isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     d*
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual {
        _mint(to, tokenId);
        require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

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

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId); // internal owner

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

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

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

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(tokenId);

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(address from, address to, uint256 tokenId) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); // internal owner
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        private returns (bool)
    {
        if (!to.isContract()) {
            return true;
        }
        bytes memory returndata = to.functionCall(abi.encodeWithSelector(
            IERC721Receiver(to).onERC721Received.selector,
            _msgSender(),
            from,
            tokenId,
            _data
        ), "ERC721: transfer to non ERC721Receiver implementer");
        bytes4 retval = abi.decode(returndata, (bytes4));
        return (retval == _ERC721_RECEIVED);
    }

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

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

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



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

pragma solidity ^0.7.0;
pragma abicoder v2;

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

    string public DAPPER_PROVENANCE = "";
    
    string public LICENSE_TEXT = "";
    
    bool licenseLocked = false;

    uint256 public constant dapperPrice = 45000000000000000; // 0.045 ETH

    uint public constant maxDapperPurchase = 10;

    uint256 public constant MAX_DAPPERS = 7777;

    bool public saleIsActive = false;
    
    mapping(uint => string) public dapperNames;
    
    uint public dapperReserve = 30;
    
    event dapperNameChange(address _by, uint _tokenId, string _name);
    
    event licenseisLocked(string _licenseText);

    constructor() ERC721("Dapper Space Collective", "DSC") { }
    
    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        msg.sender.transfer(balance);
    }
    
    function reserveDappers(address _to, uint256 _reserveAmount) public onlyOwner {        
        uint supply = totalSupply();
        require(_reserveAmount > 0 && _reserveAmount <= dapperReserve, "Not enough reserve left for team");
        for (uint i = 0; i < _reserveAmount; i++) {
            _safeMint(_to, supply + i);
        }
        dapperReserve = dapperReserve.sub(_reserveAmount);
    }


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

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


    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }
    
    
    function tokensOfOwner(address _owner) external view returns(uint256[] memory ) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }
    
    // Returns the license for tokens
    function tokenLicense(uint _id) public view returns(string memory) {
        require(_id < totalSupply(), "CHOOSE A DAPPER 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 mintDapper(uint numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint Dapper");
        require(numberOfTokens > 0 && numberOfTokens <= maxDapperPurchase, "Can only mint 10 tokens at a time");
        require(totalSupply().add(numberOfTokens) <= MAX_DAPPERS, "Purchase would exceed max supply of Dappers");
        require(msg.value >= dapperPrice.mul(numberOfTokens), "Ether value sent is not correct");
        
        for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = totalSupply();
            if (totalSupply() < MAX_DAPPERS) {
                _safeMint(msg.sender, mintIndex);
            }
        }

    }
     
    function changeDapperName(uint _tokenId, string memory _name) public {
        require(ownerOf(_tokenId) == msg.sender, "Hey, your wallet doesn't own this dapper!");
        require(sha256(bytes(_name)) != sha256(bytes(dapperNames[_tokenId])), "New name is same as the current one");
        dapperNames[_tokenId] = _name;
        
        emit dapperNameChange(msg.sender, _tokenId, _name);
        
    }
    
    function viewDapperName(uint _tokenId) public view returns( string memory ){
        require( _tokenId < totalSupply(), "Choose a dapper within range" );
        return dapperNames[_tokenId];
    }
    
    
    // GET ALL DAPPERS OF A WALLET AS AN ARRAY OF STRINGS. WOULD BE BETTER MAYBE IF IT RETURNED A STRUCT WITH ID-NAME MATCH
    function dapperNamesOfOwner(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] = dapperNames[ 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":"dapperNameChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_licenseText","type":"string"}],"name":"licenseisLocked","type":"event"},{"inputs":[],"name":"DAPPER_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_DAPPERS","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":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_name","type":"string"}],"name":"changeDapperName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_license","type":"string"}],"name":"changeLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"dapperNames","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"dapperNamesOfOwner","outputs":[{"internalType":"string[]","name":"","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dapperPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dapperReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxDapperPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintDapper","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":"reserveDappers","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":"viewDapperName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600b90805190602001906200002b92919062000334565b5060405180602001604052806000815250600c90805190602001906200005392919062000334565b506000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff021916908315150217905550601e600f553480156200009c57600080fd5b506040518060400160405280601781526020017f44617070657220537061636520436f6c6c6563746976650000000000000000008152506040518060400160405280600381526020017f4453430000000000000000000000000000000000000000000000000000000000815250620001216301ffc9a760e01b6200025460201b60201c565b81600690805190602001906200013992919062000334565b5080600790805190602001906200015292919062000334565b506200016b6380ac58cd60e01b6200025460201b60201c565b62000183635b5e139f60e01b6200025460201b60201c565b6200019b63780e9d6360e01b6200025460201b60201c565b50506000620001af6200032c60201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200045f565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620002c0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b7906200042c565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200036c5760008555620003b8565b82601f106200038757805160ff1916838001178555620003b8565b82800160010185558215620003b8579182015b82811115620003b75782518255916020019190600101906200039a565b5b509050620003c79190620003cb565b5090565b5b80821115620003e6576000816000905550600101620003cc565b5090565b6000620003f9601c836200044e565b91507f4552433136353a20696e76616c696420696e74657266616365206964000000006000830152602082019050919050565b600060208201905081810360008301526200044781620003ea565b9050919050565b600082825260208201905092915050565b6153c2806200046f6000396000f3fe6080604052600436106102455760003560e01c80636c0360eb11610139578063b09904b5116100b6578063c87b56dd1161007a578063c87b56dd1461086c578063d9b137b2146108a9578063de309b5e146108e6578063e985e9c514610911578063eb8d24441461094e578063f2fde38b1461097957610245565b8063b09904b5146107bc578063b88d4fde146107e5578063bb77db461461080e578063be886a3f14610839578063bf4702fc1461085557610245565b806395d89b41116100fd57806395d89b41146106e95780639c3e72bd14610714578063a22cb4651461073f578063ae6ea99714610768578063b035879f1461079157610245565b80636c0360eb1461060257806370a082311461062d578063715018a61461066a5780638462151c146106815780638da5cb5b146106be57610245565b806334918dfd116101c75780634f6ccce71161018b5780634f6ccce71461050b57806355f804b31461054857806356261e90146105715780635e7119441461059a5780636352211e146105c557610245565b806334918dfd1461044c57806339380026146104635780633ccfd60b146104a057806342842e0e146104b75780634a1069f6146104e057610245565b8063109695231161020e5780631096952314610355578063127773361461037e57806318160ddd146103bb57806323b872dd146103e65780632f745c591461040f57610245565b8062a2025a1461024a57806301ffc9a71461028757806306fdde03146102c4578063081812fc146102ef578063095ea7b31461032c575b600080fd5b34801561025657600080fd5b50610271600480360381019061026c9190613907565b6109a2565b60405161027e9190614b59565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190613ad7565b610b4f565b6040516102bb9190614b9d565b60405180910390f35b3480156102d057600080fd5b506102d9610bb6565b6040516102e69190614bb8565b60405180910390f35b3480156102fb57600080fd5b5061031660048036038101906103119190613b6a565b610c58565b6040516103239190614ab4565b60405180910390f35b34801561033857600080fd5b50610353600480360381019061034e9190613a72565b610cdd565b005b34801561036157600080fd5b5061037c60048036038101906103779190613b29565b610df5565b005b34801561038a57600080fd5b506103a560048036038101906103a09190613b6a565b610e8b565b6040516103b29190614bb8565b60405180910390f35b3480156103c757600080fd5b506103d0610f3b565b6040516103dd9190614ffc565b60405180910390f35b3480156103f257600080fd5b5061040d6004803603810190610408919061396c565b610f4c565b005b34801561041b57600080fd5b5061043660048036038101906104319190613a72565b610fac565b6040516104439190614ffc565b60405180910390f35b34801561045857600080fd5b50610461611007565b005b34801561046f57600080fd5b5061048a60048036038101906104859190613b6a565b6110af565b6040516104979190614bb8565b60405180910390f35b3480156104ac57600080fd5b506104b56111ad565b005b3480156104c357600080fd5b506104de60048036038101906104d9919061396c565b611278565b005b3480156104ec57600080fd5b506104f5611298565b6040516105029190614ffc565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d9190613b6a565b6112a3565b60405161053f9190614ffc565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a9190613b29565b6112c6565b005b34801561057d57600080fd5b5061059860048036038101906105939190613a72565b61134e565b005b3480156105a657600080fd5b506105af61146c565b6040516105bc9190614ffc565b60405180910390f35b3480156105d157600080fd5b506105ec60048036038101906105e79190613b6a565b611472565b6040516105f99190614ab4565b60405180910390f35b34801561060e57600080fd5b506106176114a9565b6040516106249190614bb8565b60405180910390f35b34801561063957600080fd5b50610654600480360381019061064f9190613907565b61154b565b6040516106619190614ffc565b60405180910390f35b34801561067657600080fd5b5061067f61160a565b005b34801561068d57600080fd5b506106a860048036038101906106a39190613907565b611747565b6040516106b59190614b7b565b60405180910390f35b3480156106ca57600080fd5b506106d3611840565b6040516106e09190614ab4565b60405180910390f35b3480156106f557600080fd5b506106fe61186a565b60405161070b9190614bb8565b60405180910390f35b34801561072057600080fd5b5061072961190c565b6040516107369190614bb8565b60405180910390f35b34801561074b57600080fd5b5061076660048036038101906107619190613a36565b6119aa565b005b34801561077457600080fd5b5061078f600480360381019061078a9190613b93565b611b2b565b005b34801561079d57600080fd5b506107a6611cfb565b6040516107b39190614bb8565b60405180910390f35b3480156107c857600080fd5b506107e360048036038101906107de9190613b29565b611d99565b005b3480156107f157600080fd5b5061080c600480360381019061080791906139bb565b611e85565b005b34801561081a57600080fd5b50610823611ee7565b6040516108309190614ffc565b60405180910390f35b610853600480360381019061084e9190613b6a565b611eec565b005b34801561086157600080fd5b5061086a61208a565b005b34801561087857600080fd5b50610893600480360381019061088e9190613b6a565b61215b565b6040516108a09190614bb8565b60405180910390f35b3480156108b557600080fd5b506108d060048036038101906108cb9190613b6a565b6122de565b6040516108dd9190614bb8565b60405180910390f35b3480156108f257600080fd5b506108fb6123cb565b6040516109089190614ffc565b60405180910390f35b34801561091d57600080fd5b5061093860048036038101906109339190613930565b6123d1565b6040516109459190614b9d565b60405180910390f35b34801561095a57600080fd5b50610963612465565b6040516109709190614b9d565b60405180910390f35b34801561098557600080fd5b506109a0600480360381019061099b9190613907565b612478565b005b606060006109af8361154b565b90506000811415610a0f57600067ffffffffffffffff811180156109d257600080fd5b50604051908082528060200260200182016040528015610a0657816020015b60608152602001906001900390816109f15790505b50915050610b4a565b60008167ffffffffffffffff81118015610a2857600080fd5b50604051908082528060200260200182016040528015610a5c57816020015b6060815260200190600190039081610a475790505b50905060005b82811015610b4357600e6000610a788784610fac565b81526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610b1a5780601f10610aef57610100808354040283529160200191610b1a565b820191906000526020600020905b815481529060010190602001808311610afd57829003601f168201915b5050505050828281518110610b2b57fe5b60200260200101819052508080600101915050610a62565b8193505050505b919050565b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c4e5780601f10610c2357610100808354040283529160200191610c4e565b820191906000526020600020905b815481529060010190602001808311610c3157829003601f168201915b5050505050905090565b6000610c6382612624565b610ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9990614ebc565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ce882611472565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5090614f5c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d78612641565b73ffffffffffffffffffffffffffffffffffffffff161480610da75750610da681610da1612641565b6123d1565b5b610de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd90614dfc565b60405180910390fd5b610df08383612649565b505050565b610dfd612641565b73ffffffffffffffffffffffffffffffffffffffff16610e1b611840565b73ffffffffffffffffffffffffffffffffffffffff1614610e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6890614edc565b60405180910390fd5b80600b9080519060200190610e8792919061370e565b5050565b600e6020528060005260406000206000915090508054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f335780601f10610f0857610100808354040283529160200191610f33565b820191906000526020600020905b815481529060010190602001808311610f1657829003601f168201915b505050505081565b6000610f476002612702565b905090565b610f5d610f57612641565b82612717565b610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9390614f9c565b60405180910390fd5b610fa78383836127f5565b505050565b6000610fff82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612a0c90919063ffffffff16565b905092915050565b61100f612641565b73ffffffffffffffffffffffffffffffffffffffff1661102d611840565b73ffffffffffffffffffffffffffffffffffffffff1614611083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107a90614edc565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b60606110b9610f3b565b82106110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190614dbc565b60405180910390fd5b600e60008381526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111a15780601f10611176576101008083540402835291602001916111a1565b820191906000526020600020905b81548152906001019060200180831161118457829003601f168201915b50505050509050919050565b6111b5612641565b73ffffffffffffffffffffffffffffffffffffffff166111d3611840565b73ffffffffffffffffffffffffffffffffffffffff1614611229576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122090614edc565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611274573d6000803e3d6000fd5b5050565b61129383838360405180602001604052806000815250611e85565b505050565b669fdf42f6e4800081565b6000806112ba836002612a2690919063ffffffff16565b50905080915050919050565b6112ce612641565b73ffffffffffffffffffffffffffffffffffffffff166112ec611840565b73ffffffffffffffffffffffffffffffffffffffff1614611342576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133990614edc565b60405180910390fd5b61134b81612a52565b50565b611356612641565b73ffffffffffffffffffffffffffffffffffffffff16611374611840565b73ffffffffffffffffffffffffffffffffffffffff16146113ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c190614edc565b60405180910390fd5b60006113d4610f3b565b90506000821180156113e85750600f548211155b611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e90614cbc565b60405180910390fd5b60005b8281101561144b5761143e84828401612a6c565b808060010191505061142a565b5061146182600f54612a8a90919063ffffffff16565b600f81905550505050565b611e6181565b60006114a282604051806060016040528060298152602001615364602991396002612ada9092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156115415780601f1061151657610100808354040283529160200191611541565b820191906000526020600020905b81548152906001019060200180831161152457829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b390614e1c565b60405180910390fd5b611603600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612af9565b9050919050565b611612612641565b73ffffffffffffffffffffffffffffffffffffffff16611630611840565b73ffffffffffffffffffffffffffffffffffffffff1614611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167d90614edc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b606060006117548361154b565b905060008114156117af57600067ffffffffffffffff8111801561177757600080fd5b506040519080825280602002602001820160405280156117a65781602001602082028036833780820191505090505b5091505061183b565b60008167ffffffffffffffff811180156117c857600080fd5b506040519080825280602002602001820160405280156117f75781602001602082028036833780820191505090505b50905060005b828110156118345761180f8582610fac565b82828151811061181b57fe5b60200260200101818152505080806001019150506117fd565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156119025780601f106118d757610100808354040283529160200191611902565b820191906000526020600020905b8154815290600101906020018083116118e557829003601f168201915b5050505050905090565b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156119a25780601f10611977576101008083540402835291602001916119a2565b820191906000526020600020905b81548152906001019060200180831161198557829003601f168201915b505050505081565b6119b2612641565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1790614cfc565b60405180910390fd5b8060056000611a2d612641565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ada612641565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b1f9190614b9d565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff16611b4b83611472565b73ffffffffffffffffffffffffffffffffffffffff1614611ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9890614c7c565b60405180910390fd5b6002600e6000848152602001908152602001600020604051611bc39190614a79565b602060405180830381855afa158015611be0573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190611c039190613aae565b600282604051611c139190614a62565b602060405180830381855afa158015611c30573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190611c539190613aae565b1415611c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8b90614f3c565b60405180910390fd5b80600e60008481526020019081526020016000209080519060200190611cbb92919061370e565b507fb51ba6efb0d3da15219bb0da8c47f75159172af0475837711eafe028ebfa1552338383604051611cef93929190614b1b565b60405180910390a15050565b600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611d915780601f10611d6657610100808354040283529160200191611d91565b820191906000526020600020905b815481529060010190602001808311611d7457829003601f168201915b505050505081565b611da1612641565b73ffffffffffffffffffffffffffffffffffffffff16611dbf611840565b73ffffffffffffffffffffffffffffffffffffffff1614611e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0c90614edc565b60405180910390fd5b60001515600d60009054906101000a900460ff16151514611e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6290614f7c565b60405180910390fd5b80600c9080519060200190611e8192919061370e565b5050565b611e96611e90612641565b83612717565b611ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecc90614f9c565b60405180910390fd5b611ee184848484612b0e565b50505050565b600a81565b600d60019054906101000a900460ff16611f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3290614ddc565b60405180910390fd5b600081118015611f4c5750600a8111155b611f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8290614fdc565b60405180910390fd5b611e61611fa882611f9a610f3b565b612b6a90919063ffffffff16565b1115611fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe090614e3c565b60405180910390fd5b61200381669fdf42f6e48000612bbf90919063ffffffff16565b341015612045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203c90614d1c565b60405180910390fd5b60005b8181101561208657600061205a610f3b565b9050611e61612067610f3b565b1015612078576120773382612a6c565b5b508080600101915050612048565b5050565b612092612641565b73ffffffffffffffffffffffffffffffffffffffff166120b0611840565b73ffffffffffffffffffffffffffffffffffffffff1614612106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fd90614edc565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055507f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0600c6040516121519190614bda565b60405180910390a1565b606061216682612624565b6121a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219c90614f1c565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561224e5780601f106122235761010080835404028352916020019161224e565b820191906000526020600020905b81548152906001019060200180831161223157829003601f168201915b50505050509050600061225f6114a9565b90506000815114156122755781925050506122d9565b6000825111156122aa578082604051602001612292929190614a90565b604051602081830303815290604052925050506122d9565b806122b485612c2f565b6040516020016122c5929190614a90565b604051602081830303815290604052925050505b919050565b60606122e8610f3b565b8210612329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232090614d9c565b60405180910390fd5b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156123bf5780601f10612394576101008083540402835291602001916123bf565b820191906000526020600020905b8154815290600101906020018083116123a257829003601f168201915b50505050509050919050565b600f5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60019054906101000a900460ff1681565b612480612641565b73ffffffffffffffffffffffffffffffffffffffff1661249e611840565b73ffffffffffffffffffffffffffffffffffffffff16146124f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124eb90614edc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255b90614c3c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061263a826002612d7690919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126bc83611472565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061271082600001612d90565b9050919050565b600061272282612624565b612761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275890614d7c565b60405180910390fd5b600061276c83611472565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806127db57508373ffffffffffffffffffffffffffffffffffffffff166127c384610c58565b73ffffffffffffffffffffffffffffffffffffffff16145b806127ec57506127eb81856123d1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661281582611472565b73ffffffffffffffffffffffffffffffffffffffff161461286b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286290614efc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d290614cdc565b60405180910390fd5b6128e6838383612da1565b6128f1600082612649565b61294281600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612da690919063ffffffff16565b5061299481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612dc090919063ffffffff16565b506129ab81836002612dda9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612a1b8360000183612e0f565b60001c905092915050565b600080600080612a398660000186612e7c565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190612a6892919061370e565b5050565b612a86828260405180602001604052806000815250612eff565b5050565b600082821115612acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac690614d3c565b60405180910390fd5b818303905092915050565b6000612aed846000018460001b84612f5a565b60001c90509392505050565b6000612b0782600001612feb565b9050919050565b612b198484846127f5565b612b2584848484612ffc565b612b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5b90614c1c565b60405180910390fd5b50505050565b600080828401905083811015612bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bac90614c9c565b60405180910390fd5b8091505092915050565b600080831415612bd25760009050612c29565b6000828402905082848281612be357fe5b0414612c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1b90614e9c565b60405180910390fd5b809150505b92915050565b60606000821415612c77576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d71565b600082905060005b60008214612ca1578080600101915050600a8281612c9957fe5b049150612c7f565b60008167ffffffffffffffff81118015612cba57600080fd5b506040519080825280601f01601f191660200182016040528015612ced5781602001600182028036833780820191505090505b50905060006001830390508593505b60008414612d6957600a8481612d0e57fe5b0660300160f81b82828060019003935081518110612d2857fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481612d6157fe5b049350612cfc565b819450505050505b919050565b6000612d88836000018360001b613160565b905092915050565b600081600001805490509050919050565b505050565b6000612db8836000018360001b613183565b905092915050565b6000612dd2836000018360001b61326b565b905092915050565b6000612e06846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b6132db565b90509392505050565b600081836000018054905011612e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5190614bfc565b60405180910390fd5b826000018281548110612e6957fe5b9060005260206000200154905092915050565b60008082846000018054905011612ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ebf90614e5c565b60405180910390fd5b6000846000018481548110612ed957fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b612f0983836133b7565b612f166000848484612ffc565b612f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4c90614c1c565b60405180910390fd5b505050565b60008084600101600085815260200190815260200160002054905060008114158390612fbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb39190614bb8565b60405180910390fd5b50846000016001820381548110612fcf57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b600061301d8473ffffffffffffffffffffffffffffffffffffffff16613545565b61302a5760019050613158565b60006130f163150b7a0260e01b61303f612641565b8887876040516024016130559493929190614acf565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001615332603291398773ffffffffffffffffffffffffffffffffffffffff166135589092919063ffffffff16565b90506000818060200190518101906131099190613b00565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b6000808360010160008481526020019081526020016000205490506000811461325f57600060018203905060006001866000018054905003905060008660000182815481106131ce57fe5b90600052602060002001549050808760000184815481106131eb57fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061322357fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050613265565b60009150505b92915050565b60006132778383613570565b6132d05782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506132d5565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415613382578460000160405180604001604052808681526020018581525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010155505084600001805490508560010160008681526020019081526020016000208190555060019150506133b0565b8285600001600183038154811061339557fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341e90614e7c565b60405180910390fd5b61343081612624565b15613470576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346790614c5c565b60405180910390fd5b61347c60008383612da1565b6134cd81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612dc090919063ffffffff16565b506134e481836002612dda9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606135678484600085613593565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b6060824710156135d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135cf90614d5c565b60405180910390fd5b6135e185613545565b613620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161361790614fbc565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516136499190614a62565b60006040518083038185875af1925050503d8060008114613686576040519150601f19603f3d011682016040523d82523d6000602084013e61368b565b606091505b509150915061369b8282866136a7565b92505050949350505050565b606083156136b757829050613707565b6000835111156136ca5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136fe9190614bb8565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282613744576000855561378b565b82601f1061375d57805160ff191683800117855561378b565b8280016001018555821561378b579182015b8281111561378a57825182559160200191906001019061376f565b5b509050613798919061379c565b5090565b5b808211156137b557600081600090555060010161379d565b5090565b60006137cc6137c784615048565b615017565b9050828152602081018484840111156137e457600080fd5b6137ef848285615269565b509392505050565b600061380a61380584615078565b615017565b90508281526020810184848401111561382257600080fd5b61382d848285615269565b509392505050565b600081359050613844816152be565b92915050565b600081359050613859816152d5565b92915050565b60008151905061386e816152ec565b92915050565b60008135905061388381615303565b92915050565b60008151905061389881615303565b92915050565b600082601f8301126138af57600080fd5b81356138bf8482602086016137b9565b91505092915050565b600082601f8301126138d957600080fd5b81356138e98482602086016137f7565b91505092915050565b6000813590506139018161531a565b92915050565b60006020828403121561391957600080fd5b600061392784828501613835565b91505092915050565b6000806040838503121561394357600080fd5b600061395185828601613835565b925050602061396285828601613835565b9150509250929050565b60008060006060848603121561398157600080fd5b600061398f86828701613835565b93505060206139a086828701613835565b92505060406139b1868287016138f2565b9150509250925092565b600080600080608085870312156139d157600080fd5b60006139df87828801613835565b94505060206139f087828801613835565b9350506040613a01878288016138f2565b925050606085013567ffffffffffffffff811115613a1e57600080fd5b613a2a8782880161389e565b91505092959194509250565b60008060408385031215613a4957600080fd5b6000613a5785828601613835565b9250506020613a688582860161384a565b9150509250929050565b60008060408385031215613a8557600080fd5b6000613a9385828601613835565b9250506020613aa4858286016138f2565b9150509250929050565b600060208284031215613ac057600080fd5b6000613ace8482850161385f565b91505092915050565b600060208284031215613ae957600080fd5b6000613af784828501613874565b91505092915050565b600060208284031215613b1257600080fd5b6000613b2084828501613889565b91505092915050565b600060208284031215613b3b57600080fd5b600082013567ffffffffffffffff811115613b5557600080fd5b613b61848285016138c8565b91505092915050565b600060208284031215613b7c57600080fd5b6000613b8a848285016138f2565b91505092915050565b60008060408385031215613ba657600080fd5b6000613bb4858286016138f2565b925050602083013567ffffffffffffffff811115613bd157600080fd5b613bdd858286016138c8565b9150509250929050565b6000613bf38383613e1a565b905092915050565b6000613c078383614a44565b60208301905092915050565b613c1c81615233565b82525050565b613c2b816151b5565b82525050565b613c3a816151a3565b82525050565b6000613c4b826150f2565b613c558185615138565b935083602082028501613c67856150a8565b8060005b85811015613ca35784840389528151613c848582613be7565b9450613c8f8361511e565b925060208a01995050600181019050613c6b565b50829750879550505050505092915050565b6000613cc0826150fd565b613cca8185615149565b9350613cd5836150b8565b8060005b83811015613d06578151613ced8882613bfb565b9750613cf88361512b565b925050600181019050613cd9565b5085935050505092915050565b613d1c816151c7565b82525050565b6000613d2d82615108565b613d37818561515a565b9350613d47818560208601615278565b613d50816152ad565b840191505092915050565b6000613d6682615108565b613d70818561516b565b9350613d80818560208601615278565b80840191505092915050565b600081546001811660008114613da95760018114613dce57613e12565b607f6002830416613dba818761516b565b955060ff1983168652808601935050613e12565b60028204613ddc818761516b565b9550613de7856150c8565b60005b82811015613e0957815481890152600182019150602081019050613dea565b82880195505050505b505092915050565b6000613e2582615113565b613e2f8185615176565b9350613e3f818560208601615278565b613e48816152ad565b840191505092915050565b6000613e5e82615113565b613e688185615187565b9350613e78818560208601615278565b613e81816152ad565b840191505092915050565b6000613e9782615113565b613ea18185615198565b9350613eb1818560208601615278565b80840191505092915050565b600081546001811660008114613eda5760018114613f0057613f44565b607f6002830416613eeb8187615187565b955060ff198316865260208601935050613f44565b60028204613f0e8187615187565b9550613f19856150dd565b60005b82811015613f3b57815481890152600182019150602081019050613f1c565b80880195505050505b505092915050565b6000613f59602283615187565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fbf603283615187565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000614025602683615187565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061408b601c83615187565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006140cb602983615187565b91507f4865792c20796f75722077616c6c657420646f65736e2774206f776e2074686960008301527f73206461707065722100000000000000000000000000000000000000000000006020830152604082019050919050565b6000614131601b83615187565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000614171602083615187565b91507f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d6000830152602082019050919050565b60006141b1602483615187565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614217601983615187565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614257601f83615187565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000614297601e83615187565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b60006142d7602683615187565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061433d602c83615187565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006143a3601c83615187565b91507f43484f4f53452041204441505045522057495448494e2052414e4745000000006000830152602082019050919050565b60006143e3601c83615187565b91507f43686f6f73652061206461707065722077697468696e2072616e6765000000006000830152602082019050919050565b6000614423602283615187565b91507f53616c65206d7573742062652061637469766520746f206d696e74204461707060008301527f65720000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614489603883615187565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006144ef602a83615187565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614555602b83615187565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f6620446170706572730000000000000000000000000000000000000000006020830152604082019050919050565b60006145bb602283615187565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614621602083615187565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614661602183615187565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146c7602c83615187565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061472d602083615187565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061476d602983615187565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006147d3602f83615187565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614839602383615187565b91507f4e6577206e616d652069732073616d65206173207468652063757272656e742060008301527f6f6e6500000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061489f602183615187565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614905601683615187565b91507f4c6963656e736520616c7265616479206c6f636b6564000000000000000000006000830152602082019050919050565b6000614945603183615187565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006149ab601d83615187565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b60006149eb602183615187565b91507f43616e206f6e6c79206d696e7420313020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b614a4d81615229565b82525050565b614a5c81615229565b82525050565b6000614a6e8284613d5b565b915081905092915050565b6000614a858284613d8c565b915081905092915050565b6000614a9c8285613e8c565b9150614aa88284613e8c565b91508190509392505050565b6000602082019050614ac96000830184613c31565b92915050565b6000608082019050614ae46000830187613c22565b614af16020830186613c31565b614afe6040830185614a53565b8181036060830152614b108184613d22565b905095945050505050565b6000606082019050614b306000830186613c13565b614b3d6020830185614a53565b8181036040830152614b4f8184613e53565b9050949350505050565b60006020820190508181036000830152614b738184613c40565b905092915050565b60006020820190508181036000830152614b958184613cb5565b905092915050565b6000602082019050614bb26000830184613d13565b92915050565b60006020820190508181036000830152614bd28184613e53565b905092915050565b60006020820190508181036000830152614bf48184613ebd565b905092915050565b60006020820190508181036000830152614c1581613f4c565b9050919050565b60006020820190508181036000830152614c3581613fb2565b9050919050565b60006020820190508181036000830152614c5581614018565b9050919050565b60006020820190508181036000830152614c758161407e565b9050919050565b60006020820190508181036000830152614c95816140be565b9050919050565b60006020820190508181036000830152614cb581614124565b9050919050565b60006020820190508181036000830152614cd581614164565b9050919050565b60006020820190508181036000830152614cf5816141a4565b9050919050565b60006020820190508181036000830152614d158161420a565b9050919050565b60006020820190508181036000830152614d358161424a565b9050919050565b60006020820190508181036000830152614d558161428a565b9050919050565b60006020820190508181036000830152614d75816142ca565b9050919050565b60006020820190508181036000830152614d9581614330565b9050919050565b60006020820190508181036000830152614db581614396565b9050919050565b60006020820190508181036000830152614dd5816143d6565b9050919050565b60006020820190508181036000830152614df581614416565b9050919050565b60006020820190508181036000830152614e158161447c565b9050919050565b60006020820190508181036000830152614e35816144e2565b9050919050565b60006020820190508181036000830152614e5581614548565b9050919050565b60006020820190508181036000830152614e75816145ae565b9050919050565b60006020820190508181036000830152614e9581614614565b9050919050565b60006020820190508181036000830152614eb581614654565b9050919050565b60006020820190508181036000830152614ed5816146ba565b9050919050565b60006020820190508181036000830152614ef581614720565b9050919050565b60006020820190508181036000830152614f1581614760565b9050919050565b60006020820190508181036000830152614f35816147c6565b9050919050565b60006020820190508181036000830152614f558161482c565b9050919050565b60006020820190508181036000830152614f7581614892565b9050919050565b60006020820190508181036000830152614f95816148f8565b9050919050565b60006020820190508181036000830152614fb581614938565b9050919050565b60006020820190508181036000830152614fd58161499e565b9050919050565b60006020820190508181036000830152614ff5816149de565b9050919050565b60006020820190506150116000830184614a53565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561503e5761503d6152ab565b5b8060405250919050565b600067ffffffffffffffff821115615063576150626152ab565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115615093576150926152ab565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006151ae82615209565b9050919050565b60006151c082615209565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061523e82615245565b9050919050565b600061525082615257565b9050919050565b600061526282615209565b9050919050565b82818337600083830152505050565b60005b8381101561529657808201518184015260208101905061527b565b838111156152a5576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b6152c7816151a3565b81146152d257600080fd5b50565b6152de816151c7565b81146152e957600080fd5b50565b6152f5816151d3565b811461530057600080fd5b50565b61530c816151dd565b811461531757600080fd5b50565b61532381615229565b811461532e57600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea264697066735822122023e0d9296e5e53b3405657bae85cbd6836737cc8467befe872e5204821adf2a664736f6c63430007060033

Deployed Bytecode

0x6080604052600436106102455760003560e01c80636c0360eb11610139578063b09904b5116100b6578063c87b56dd1161007a578063c87b56dd1461086c578063d9b137b2146108a9578063de309b5e146108e6578063e985e9c514610911578063eb8d24441461094e578063f2fde38b1461097957610245565b8063b09904b5146107bc578063b88d4fde146107e5578063bb77db461461080e578063be886a3f14610839578063bf4702fc1461085557610245565b806395d89b41116100fd57806395d89b41146106e95780639c3e72bd14610714578063a22cb4651461073f578063ae6ea99714610768578063b035879f1461079157610245565b80636c0360eb1461060257806370a082311461062d578063715018a61461066a5780638462151c146106815780638da5cb5b146106be57610245565b806334918dfd116101c75780634f6ccce71161018b5780634f6ccce71461050b57806355f804b31461054857806356261e90146105715780635e7119441461059a5780636352211e146105c557610245565b806334918dfd1461044c57806339380026146104635780633ccfd60b146104a057806342842e0e146104b75780634a1069f6146104e057610245565b8063109695231161020e5780631096952314610355578063127773361461037e57806318160ddd146103bb57806323b872dd146103e65780632f745c591461040f57610245565b8062a2025a1461024a57806301ffc9a71461028757806306fdde03146102c4578063081812fc146102ef578063095ea7b31461032c575b600080fd5b34801561025657600080fd5b50610271600480360381019061026c9190613907565b6109a2565b60405161027e9190614b59565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190613ad7565b610b4f565b6040516102bb9190614b9d565b60405180910390f35b3480156102d057600080fd5b506102d9610bb6565b6040516102e69190614bb8565b60405180910390f35b3480156102fb57600080fd5b5061031660048036038101906103119190613b6a565b610c58565b6040516103239190614ab4565b60405180910390f35b34801561033857600080fd5b50610353600480360381019061034e9190613a72565b610cdd565b005b34801561036157600080fd5b5061037c60048036038101906103779190613b29565b610df5565b005b34801561038a57600080fd5b506103a560048036038101906103a09190613b6a565b610e8b565b6040516103b29190614bb8565b60405180910390f35b3480156103c757600080fd5b506103d0610f3b565b6040516103dd9190614ffc565b60405180910390f35b3480156103f257600080fd5b5061040d6004803603810190610408919061396c565b610f4c565b005b34801561041b57600080fd5b5061043660048036038101906104319190613a72565b610fac565b6040516104439190614ffc565b60405180910390f35b34801561045857600080fd5b50610461611007565b005b34801561046f57600080fd5b5061048a60048036038101906104859190613b6a565b6110af565b6040516104979190614bb8565b60405180910390f35b3480156104ac57600080fd5b506104b56111ad565b005b3480156104c357600080fd5b506104de60048036038101906104d9919061396c565b611278565b005b3480156104ec57600080fd5b506104f5611298565b6040516105029190614ffc565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d9190613b6a565b6112a3565b60405161053f9190614ffc565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a9190613b29565b6112c6565b005b34801561057d57600080fd5b5061059860048036038101906105939190613a72565b61134e565b005b3480156105a657600080fd5b506105af61146c565b6040516105bc9190614ffc565b60405180910390f35b3480156105d157600080fd5b506105ec60048036038101906105e79190613b6a565b611472565b6040516105f99190614ab4565b60405180910390f35b34801561060e57600080fd5b506106176114a9565b6040516106249190614bb8565b60405180910390f35b34801561063957600080fd5b50610654600480360381019061064f9190613907565b61154b565b6040516106619190614ffc565b60405180910390f35b34801561067657600080fd5b5061067f61160a565b005b34801561068d57600080fd5b506106a860048036038101906106a39190613907565b611747565b6040516106b59190614b7b565b60405180910390f35b3480156106ca57600080fd5b506106d3611840565b6040516106e09190614ab4565b60405180910390f35b3480156106f557600080fd5b506106fe61186a565b60405161070b9190614bb8565b60405180910390f35b34801561072057600080fd5b5061072961190c565b6040516107369190614bb8565b60405180910390f35b34801561074b57600080fd5b5061076660048036038101906107619190613a36565b6119aa565b005b34801561077457600080fd5b5061078f600480360381019061078a9190613b93565b611b2b565b005b34801561079d57600080fd5b506107a6611cfb565b6040516107b39190614bb8565b60405180910390f35b3480156107c857600080fd5b506107e360048036038101906107de9190613b29565b611d99565b005b3480156107f157600080fd5b5061080c600480360381019061080791906139bb565b611e85565b005b34801561081a57600080fd5b50610823611ee7565b6040516108309190614ffc565b60405180910390f35b610853600480360381019061084e9190613b6a565b611eec565b005b34801561086157600080fd5b5061086a61208a565b005b34801561087857600080fd5b50610893600480360381019061088e9190613b6a565b61215b565b6040516108a09190614bb8565b60405180910390f35b3480156108b557600080fd5b506108d060048036038101906108cb9190613b6a565b6122de565b6040516108dd9190614bb8565b60405180910390f35b3480156108f257600080fd5b506108fb6123cb565b6040516109089190614ffc565b60405180910390f35b34801561091d57600080fd5b5061093860048036038101906109339190613930565b6123d1565b6040516109459190614b9d565b60405180910390f35b34801561095a57600080fd5b50610963612465565b6040516109709190614b9d565b60405180910390f35b34801561098557600080fd5b506109a0600480360381019061099b9190613907565b612478565b005b606060006109af8361154b565b90506000811415610a0f57600067ffffffffffffffff811180156109d257600080fd5b50604051908082528060200260200182016040528015610a0657816020015b60608152602001906001900390816109f15790505b50915050610b4a565b60008167ffffffffffffffff81118015610a2857600080fd5b50604051908082528060200260200182016040528015610a5c57816020015b6060815260200190600190039081610a475790505b50905060005b82811015610b4357600e6000610a788784610fac565b81526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610b1a5780601f10610aef57610100808354040283529160200191610b1a565b820191906000526020600020905b815481529060010190602001808311610afd57829003601f168201915b5050505050828281518110610b2b57fe5b60200260200101819052508080600101915050610a62565b8193505050505b919050565b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c4e5780601f10610c2357610100808354040283529160200191610c4e565b820191906000526020600020905b815481529060010190602001808311610c3157829003601f168201915b5050505050905090565b6000610c6382612624565b610ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9990614ebc565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ce882611472565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5090614f5c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d78612641565b73ffffffffffffffffffffffffffffffffffffffff161480610da75750610da681610da1612641565b6123d1565b5b610de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd90614dfc565b60405180910390fd5b610df08383612649565b505050565b610dfd612641565b73ffffffffffffffffffffffffffffffffffffffff16610e1b611840565b73ffffffffffffffffffffffffffffffffffffffff1614610e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6890614edc565b60405180910390fd5b80600b9080519060200190610e8792919061370e565b5050565b600e6020528060005260406000206000915090508054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f335780601f10610f0857610100808354040283529160200191610f33565b820191906000526020600020905b815481529060010190602001808311610f1657829003601f168201915b505050505081565b6000610f476002612702565b905090565b610f5d610f57612641565b82612717565b610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9390614f9c565b60405180910390fd5b610fa78383836127f5565b505050565b6000610fff82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612a0c90919063ffffffff16565b905092915050565b61100f612641565b73ffffffffffffffffffffffffffffffffffffffff1661102d611840565b73ffffffffffffffffffffffffffffffffffffffff1614611083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107a90614edc565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b60606110b9610f3b565b82106110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190614dbc565b60405180910390fd5b600e60008381526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111a15780601f10611176576101008083540402835291602001916111a1565b820191906000526020600020905b81548152906001019060200180831161118457829003601f168201915b50505050509050919050565b6111b5612641565b73ffffffffffffffffffffffffffffffffffffffff166111d3611840565b73ffffffffffffffffffffffffffffffffffffffff1614611229576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122090614edc565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611274573d6000803e3d6000fd5b5050565b61129383838360405180602001604052806000815250611e85565b505050565b669fdf42f6e4800081565b6000806112ba836002612a2690919063ffffffff16565b50905080915050919050565b6112ce612641565b73ffffffffffffffffffffffffffffffffffffffff166112ec611840565b73ffffffffffffffffffffffffffffffffffffffff1614611342576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133990614edc565b60405180910390fd5b61134b81612a52565b50565b611356612641565b73ffffffffffffffffffffffffffffffffffffffff16611374611840565b73ffffffffffffffffffffffffffffffffffffffff16146113ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c190614edc565b60405180910390fd5b60006113d4610f3b565b90506000821180156113e85750600f548211155b611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e90614cbc565b60405180910390fd5b60005b8281101561144b5761143e84828401612a6c565b808060010191505061142a565b5061146182600f54612a8a90919063ffffffff16565b600f81905550505050565b611e6181565b60006114a282604051806060016040528060298152602001615364602991396002612ada9092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156115415780601f1061151657610100808354040283529160200191611541565b820191906000526020600020905b81548152906001019060200180831161152457829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b390614e1c565b60405180910390fd5b611603600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612af9565b9050919050565b611612612641565b73ffffffffffffffffffffffffffffffffffffffff16611630611840565b73ffffffffffffffffffffffffffffffffffffffff1614611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167d90614edc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b606060006117548361154b565b905060008114156117af57600067ffffffffffffffff8111801561177757600080fd5b506040519080825280602002602001820160405280156117a65781602001602082028036833780820191505090505b5091505061183b565b60008167ffffffffffffffff811180156117c857600080fd5b506040519080825280602002602001820160405280156117f75781602001602082028036833780820191505090505b50905060005b828110156118345761180f8582610fac565b82828151811061181b57fe5b60200260200101818152505080806001019150506117fd565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156119025780601f106118d757610100808354040283529160200191611902565b820191906000526020600020905b8154815290600101906020018083116118e557829003601f168201915b5050505050905090565b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156119a25780601f10611977576101008083540402835291602001916119a2565b820191906000526020600020905b81548152906001019060200180831161198557829003601f168201915b505050505081565b6119b2612641565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1790614cfc565b60405180910390fd5b8060056000611a2d612641565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ada612641565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b1f9190614b9d565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff16611b4b83611472565b73ffffffffffffffffffffffffffffffffffffffff1614611ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9890614c7c565b60405180910390fd5b6002600e6000848152602001908152602001600020604051611bc39190614a79565b602060405180830381855afa158015611be0573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190611c039190613aae565b600282604051611c139190614a62565b602060405180830381855afa158015611c30573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190611c539190613aae565b1415611c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8b90614f3c565b60405180910390fd5b80600e60008481526020019081526020016000209080519060200190611cbb92919061370e565b507fb51ba6efb0d3da15219bb0da8c47f75159172af0475837711eafe028ebfa1552338383604051611cef93929190614b1b565b60405180910390a15050565b600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611d915780601f10611d6657610100808354040283529160200191611d91565b820191906000526020600020905b815481529060010190602001808311611d7457829003601f168201915b505050505081565b611da1612641565b73ffffffffffffffffffffffffffffffffffffffff16611dbf611840565b73ffffffffffffffffffffffffffffffffffffffff1614611e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0c90614edc565b60405180910390fd5b60001515600d60009054906101000a900460ff16151514611e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6290614f7c565b60405180910390fd5b80600c9080519060200190611e8192919061370e565b5050565b611e96611e90612641565b83612717565b611ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecc90614f9c565b60405180910390fd5b611ee184848484612b0e565b50505050565b600a81565b600d60019054906101000a900460ff16611f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3290614ddc565b60405180910390fd5b600081118015611f4c5750600a8111155b611f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8290614fdc565b60405180910390fd5b611e61611fa882611f9a610f3b565b612b6a90919063ffffffff16565b1115611fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe090614e3c565b60405180910390fd5b61200381669fdf42f6e48000612bbf90919063ffffffff16565b341015612045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203c90614d1c565b60405180910390fd5b60005b8181101561208657600061205a610f3b565b9050611e61612067610f3b565b1015612078576120773382612a6c565b5b508080600101915050612048565b5050565b612092612641565b73ffffffffffffffffffffffffffffffffffffffff166120b0611840565b73ffffffffffffffffffffffffffffffffffffffff1614612106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fd90614edc565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055507f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0600c6040516121519190614bda565b60405180910390a1565b606061216682612624565b6121a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219c90614f1c565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561224e5780601f106122235761010080835404028352916020019161224e565b820191906000526020600020905b81548152906001019060200180831161223157829003601f168201915b50505050509050600061225f6114a9565b90506000815114156122755781925050506122d9565b6000825111156122aa578082604051602001612292929190614a90565b604051602081830303815290604052925050506122d9565b806122b485612c2f565b6040516020016122c5929190614a90565b604051602081830303815290604052925050505b919050565b60606122e8610f3b565b8210612329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232090614d9c565b60405180910390fd5b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156123bf5780601f10612394576101008083540402835291602001916123bf565b820191906000526020600020905b8154815290600101906020018083116123a257829003601f168201915b50505050509050919050565b600f5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60019054906101000a900460ff1681565b612480612641565b73ffffffffffffffffffffffffffffffffffffffff1661249e611840565b73ffffffffffffffffffffffffffffffffffffffff16146124f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124eb90614edc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255b90614c3c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061263a826002612d7690919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126bc83611472565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061271082600001612d90565b9050919050565b600061272282612624565b612761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275890614d7c565b60405180910390fd5b600061276c83611472565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806127db57508373ffffffffffffffffffffffffffffffffffffffff166127c384610c58565b73ffffffffffffffffffffffffffffffffffffffff16145b806127ec57506127eb81856123d1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661281582611472565b73ffffffffffffffffffffffffffffffffffffffff161461286b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286290614efc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d290614cdc565b60405180910390fd5b6128e6838383612da1565b6128f1600082612649565b61294281600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612da690919063ffffffff16565b5061299481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612dc090919063ffffffff16565b506129ab81836002612dda9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612a1b8360000183612e0f565b60001c905092915050565b600080600080612a398660000186612e7c565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190612a6892919061370e565b5050565b612a86828260405180602001604052806000815250612eff565b5050565b600082821115612acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac690614d3c565b60405180910390fd5b818303905092915050565b6000612aed846000018460001b84612f5a565b60001c90509392505050565b6000612b0782600001612feb565b9050919050565b612b198484846127f5565b612b2584848484612ffc565b612b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5b90614c1c565b60405180910390fd5b50505050565b600080828401905083811015612bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bac90614c9c565b60405180910390fd5b8091505092915050565b600080831415612bd25760009050612c29565b6000828402905082848281612be357fe5b0414612c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1b90614e9c565b60405180910390fd5b809150505b92915050565b60606000821415612c77576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d71565b600082905060005b60008214612ca1578080600101915050600a8281612c9957fe5b049150612c7f565b60008167ffffffffffffffff81118015612cba57600080fd5b506040519080825280601f01601f191660200182016040528015612ced5781602001600182028036833780820191505090505b50905060006001830390508593505b60008414612d6957600a8481612d0e57fe5b0660300160f81b82828060019003935081518110612d2857fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481612d6157fe5b049350612cfc565b819450505050505b919050565b6000612d88836000018360001b613160565b905092915050565b600081600001805490509050919050565b505050565b6000612db8836000018360001b613183565b905092915050565b6000612dd2836000018360001b61326b565b905092915050565b6000612e06846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b6132db565b90509392505050565b600081836000018054905011612e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5190614bfc565b60405180910390fd5b826000018281548110612e6957fe5b9060005260206000200154905092915050565b60008082846000018054905011612ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ebf90614e5c565b60405180910390fd5b6000846000018481548110612ed957fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b612f0983836133b7565b612f166000848484612ffc565b612f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4c90614c1c565b60405180910390fd5b505050565b60008084600101600085815260200190815260200160002054905060008114158390612fbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb39190614bb8565b60405180910390fd5b50846000016001820381548110612fcf57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b600061301d8473ffffffffffffffffffffffffffffffffffffffff16613545565b61302a5760019050613158565b60006130f163150b7a0260e01b61303f612641565b8887876040516024016130559493929190614acf565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001615332603291398773ffffffffffffffffffffffffffffffffffffffff166135589092919063ffffffff16565b90506000818060200190518101906131099190613b00565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b6000808360010160008481526020019081526020016000205490506000811461325f57600060018203905060006001866000018054905003905060008660000182815481106131ce57fe5b90600052602060002001549050808760000184815481106131eb57fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061322357fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050613265565b60009150505b92915050565b60006132778383613570565b6132d05782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506132d5565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415613382578460000160405180604001604052808681526020018581525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010155505084600001805490508560010160008681526020019081526020016000208190555060019150506133b0565b8285600001600183038154811061339557fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341e90614e7c565b60405180910390fd5b61343081612624565b15613470576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346790614c5c565b60405180910390fd5b61347c60008383612da1565b6134cd81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612dc090919063ffffffff16565b506134e481836002612dda9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606135678484600085613593565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b6060824710156135d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135cf90614d5c565b60405180910390fd5b6135e185613545565b613620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161361790614fbc565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516136499190614a62565b60006040518083038185875af1925050503d8060008114613686576040519150601f19603f3d011682016040523d82523d6000602084013e61368b565b606091505b509150915061369b8282866136a7565b92505050949350505050565b606083156136b757829050613707565b6000835111156136ca5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136fe9190614bb8565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282613744576000855561378b565b82601f1061375d57805160ff191683800117855561378b565b8280016001018555821561378b579182015b8281111561378a57825182559160200191906001019061376f565b5b509050613798919061379c565b5090565b5b808211156137b557600081600090555060010161379d565b5090565b60006137cc6137c784615048565b615017565b9050828152602081018484840111156137e457600080fd5b6137ef848285615269565b509392505050565b600061380a61380584615078565b615017565b90508281526020810184848401111561382257600080fd5b61382d848285615269565b509392505050565b600081359050613844816152be565b92915050565b600081359050613859816152d5565b92915050565b60008151905061386e816152ec565b92915050565b60008135905061388381615303565b92915050565b60008151905061389881615303565b92915050565b600082601f8301126138af57600080fd5b81356138bf8482602086016137b9565b91505092915050565b600082601f8301126138d957600080fd5b81356138e98482602086016137f7565b91505092915050565b6000813590506139018161531a565b92915050565b60006020828403121561391957600080fd5b600061392784828501613835565b91505092915050565b6000806040838503121561394357600080fd5b600061395185828601613835565b925050602061396285828601613835565b9150509250929050565b60008060006060848603121561398157600080fd5b600061398f86828701613835565b93505060206139a086828701613835565b92505060406139b1868287016138f2565b9150509250925092565b600080600080608085870312156139d157600080fd5b60006139df87828801613835565b94505060206139f087828801613835565b9350506040613a01878288016138f2565b925050606085013567ffffffffffffffff811115613a1e57600080fd5b613a2a8782880161389e565b91505092959194509250565b60008060408385031215613a4957600080fd5b6000613a5785828601613835565b9250506020613a688582860161384a565b9150509250929050565b60008060408385031215613a8557600080fd5b6000613a9385828601613835565b9250506020613aa4858286016138f2565b9150509250929050565b600060208284031215613ac057600080fd5b6000613ace8482850161385f565b91505092915050565b600060208284031215613ae957600080fd5b6000613af784828501613874565b91505092915050565b600060208284031215613b1257600080fd5b6000613b2084828501613889565b91505092915050565b600060208284031215613b3b57600080fd5b600082013567ffffffffffffffff811115613b5557600080fd5b613b61848285016138c8565b91505092915050565b600060208284031215613b7c57600080fd5b6000613b8a848285016138f2565b91505092915050565b60008060408385031215613ba657600080fd5b6000613bb4858286016138f2565b925050602083013567ffffffffffffffff811115613bd157600080fd5b613bdd858286016138c8565b9150509250929050565b6000613bf38383613e1a565b905092915050565b6000613c078383614a44565b60208301905092915050565b613c1c81615233565b82525050565b613c2b816151b5565b82525050565b613c3a816151a3565b82525050565b6000613c4b826150f2565b613c558185615138565b935083602082028501613c67856150a8565b8060005b85811015613ca35784840389528151613c848582613be7565b9450613c8f8361511e565b925060208a01995050600181019050613c6b565b50829750879550505050505092915050565b6000613cc0826150fd565b613cca8185615149565b9350613cd5836150b8565b8060005b83811015613d06578151613ced8882613bfb565b9750613cf88361512b565b925050600181019050613cd9565b5085935050505092915050565b613d1c816151c7565b82525050565b6000613d2d82615108565b613d37818561515a565b9350613d47818560208601615278565b613d50816152ad565b840191505092915050565b6000613d6682615108565b613d70818561516b565b9350613d80818560208601615278565b80840191505092915050565b600081546001811660008114613da95760018114613dce57613e12565b607f6002830416613dba818761516b565b955060ff1983168652808601935050613e12565b60028204613ddc818761516b565b9550613de7856150c8565b60005b82811015613e0957815481890152600182019150602081019050613dea565b82880195505050505b505092915050565b6000613e2582615113565b613e2f8185615176565b9350613e3f818560208601615278565b613e48816152ad565b840191505092915050565b6000613e5e82615113565b613e688185615187565b9350613e78818560208601615278565b613e81816152ad565b840191505092915050565b6000613e9782615113565b613ea18185615198565b9350613eb1818560208601615278565b80840191505092915050565b600081546001811660008114613eda5760018114613f0057613f44565b607f6002830416613eeb8187615187565b955060ff198316865260208601935050613f44565b60028204613f0e8187615187565b9550613f19856150dd565b60005b82811015613f3b57815481890152600182019150602081019050613f1c565b80880195505050505b505092915050565b6000613f59602283615187565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fbf603283615187565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000614025602683615187565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061408b601c83615187565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006140cb602983615187565b91507f4865792c20796f75722077616c6c657420646f65736e2774206f776e2074686960008301527f73206461707065722100000000000000000000000000000000000000000000006020830152604082019050919050565b6000614131601b83615187565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000614171602083615187565b91507f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d6000830152602082019050919050565b60006141b1602483615187565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614217601983615187565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614257601f83615187565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000614297601e83615187565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b60006142d7602683615187565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061433d602c83615187565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006143a3601c83615187565b91507f43484f4f53452041204441505045522057495448494e2052414e4745000000006000830152602082019050919050565b60006143e3601c83615187565b91507f43686f6f73652061206461707065722077697468696e2072616e6765000000006000830152602082019050919050565b6000614423602283615187565b91507f53616c65206d7573742062652061637469766520746f206d696e74204461707060008301527f65720000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614489603883615187565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006144ef602a83615187565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614555602b83615187565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f6620446170706572730000000000000000000000000000000000000000006020830152604082019050919050565b60006145bb602283615187565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614621602083615187565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614661602183615187565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146c7602c83615187565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061472d602083615187565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061476d602983615187565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006147d3602f83615187565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614839602383615187565b91507f4e6577206e616d652069732073616d65206173207468652063757272656e742060008301527f6f6e6500000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061489f602183615187565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614905601683615187565b91507f4c6963656e736520616c7265616479206c6f636b6564000000000000000000006000830152602082019050919050565b6000614945603183615187565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006149ab601d83615187565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b60006149eb602183615187565b91507f43616e206f6e6c79206d696e7420313020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b614a4d81615229565b82525050565b614a5c81615229565b82525050565b6000614a6e8284613d5b565b915081905092915050565b6000614a858284613d8c565b915081905092915050565b6000614a9c8285613e8c565b9150614aa88284613e8c565b91508190509392505050565b6000602082019050614ac96000830184613c31565b92915050565b6000608082019050614ae46000830187613c22565b614af16020830186613c31565b614afe6040830185614a53565b8181036060830152614b108184613d22565b905095945050505050565b6000606082019050614b306000830186613c13565b614b3d6020830185614a53565b8181036040830152614b4f8184613e53565b9050949350505050565b60006020820190508181036000830152614b738184613c40565b905092915050565b60006020820190508181036000830152614b958184613cb5565b905092915050565b6000602082019050614bb26000830184613d13565b92915050565b60006020820190508181036000830152614bd28184613e53565b905092915050565b60006020820190508181036000830152614bf48184613ebd565b905092915050565b60006020820190508181036000830152614c1581613f4c565b9050919050565b60006020820190508181036000830152614c3581613fb2565b9050919050565b60006020820190508181036000830152614c5581614018565b9050919050565b60006020820190508181036000830152614c758161407e565b9050919050565b60006020820190508181036000830152614c95816140be565b9050919050565b60006020820190508181036000830152614cb581614124565b9050919050565b60006020820190508181036000830152614cd581614164565b9050919050565b60006020820190508181036000830152614cf5816141a4565b9050919050565b60006020820190508181036000830152614d158161420a565b9050919050565b60006020820190508181036000830152614d358161424a565b9050919050565b60006020820190508181036000830152614d558161428a565b9050919050565b60006020820190508181036000830152614d75816142ca565b9050919050565b60006020820190508181036000830152614d9581614330565b9050919050565b60006020820190508181036000830152614db581614396565b9050919050565b60006020820190508181036000830152614dd5816143d6565b9050919050565b60006020820190508181036000830152614df581614416565b9050919050565b60006020820190508181036000830152614e158161447c565b9050919050565b60006020820190508181036000830152614e35816144e2565b9050919050565b60006020820190508181036000830152614e5581614548565b9050919050565b60006020820190508181036000830152614e75816145ae565b9050919050565b60006020820190508181036000830152614e9581614614565b9050919050565b60006020820190508181036000830152614eb581614654565b9050919050565b60006020820190508181036000830152614ed5816146ba565b9050919050565b60006020820190508181036000830152614ef581614720565b9050919050565b60006020820190508181036000830152614f1581614760565b9050919050565b60006020820190508181036000830152614f35816147c6565b9050919050565b60006020820190508181036000830152614f558161482c565b9050919050565b60006020820190508181036000830152614f7581614892565b9050919050565b60006020820190508181036000830152614f95816148f8565b9050919050565b60006020820190508181036000830152614fb581614938565b9050919050565b60006020820190508181036000830152614fd58161499e565b9050919050565b60006020820190508181036000830152614ff5816149de565b9050919050565b60006020820190506150116000830184614a53565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561503e5761503d6152ab565b5b8060405250919050565b600067ffffffffffffffff821115615063576150626152ab565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115615093576150926152ab565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006151ae82615209565b9050919050565b60006151c082615209565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061523e82615245565b9050919050565b600061525082615257565b9050919050565b600061526282615209565b9050919050565b82818337600083830152505050565b60005b8381101561529657808201518184015260208101905061527b565b838111156152a5576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b6152c7816151a3565b81146152d257600080fd5b50565b6152de816151c7565b81146152e957600080fd5b50565b6152f5816151d3565b811461530057600080fd5b50565b61530c816151dd565b811461531757600080fd5b50565b61532381615229565b811461532e57600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea264697066735822122023e0d9296e5e53b3405657bae85cbd6836737cc8467befe872e5204821adf2a664736f6c63430007060033

Deployed Bytecode Sourcemap

66906:4878:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71218:557;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10308:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51593:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54379:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53909:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68201:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67346:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53387:211;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55269:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53149:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68445:89;;;;;;;;;;;;;:::i;:::-;;70875:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67642:131;;;;;;;;;;;;;:::i;:::-;;55645:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67121:55;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53675:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68336:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67785:406;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67250:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51349:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52968:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51066:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66304:148;;;;;;;;;;;;;:::i;:::-;;68552:540;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65653:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51762:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67042:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54672:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70450:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66993:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69549:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55867:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67198:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69741:696;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69385:125;;;;;;;;;;;;;:::i;:::-;;51937:792;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69143:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67401:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55038:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67301:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66607:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71218:557;71284:15;71313:18;71334:17;71344:6;71334:9;:17::i;:::-;71313:38;;71380:1;71366:10;:15;71362:406;;;71456:1;71443:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71436:22;;;;;71362:406;71491:22;71529:10;71516:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71491:49;;71555:13;71583:146;71607:10;71599:5;:18;71583:146;;;71663:11;:49;71676:34;71696:6;71704:5;71676:19;:34::i;:::-;71663:49;;;;;;;;;;;71647:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:6;71654:5;71647:13;;;;;;;;;;;;;:65;;;;71619:7;;;;;;;71583:146;;;71750:6;71743:13;;;;;71218:557;;;;:::o;10308:150::-;10393:4;10417:20;:33;10438:11;10417:33;;;;;;;;;;;;;;;;;;;;;;;;;;;10410:40;;10308:150;;;:::o;51593:100::-;51647:13;51680:5;51673:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51593:100;:::o;54379:221::-;54455:7;54483:16;54491:7;54483;:16::i;:::-;54475:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54568:15;:24;54584:7;54568:24;;;;;;;;;;;;;;;;;;;;;54561:31;;54379:221;;;:::o;53909:404::-;53990:13;54006:23;54021:7;54006:14;:23::i;:::-;53990:39;;54054:5;54048:11;;:2;:11;;;;54040:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;54134:5;54118:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;54143:44;54167:5;54174:12;:10;:12::i;:::-;54143:23;:44::i;:::-;54118:69;54110:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;54284:21;54293:2;54297:7;54284:8;:21::i;:::-;53909:404;;;:::o;68201:127::-;65884:12;:10;:12::i;:::-;65873:23;;:7;:5;:7::i;:::-;:23;;;65865:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68306:14:::1;68286:17;:34;;;;;;;;;;;;:::i;:::-;;68201:127:::0;:::o;67346:42::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53387:211::-;53448:7;53569:21;:12;:19;:21::i;:::-;53562:28;;53387:211;:::o;55269:305::-;55430:41;55449:12;:10;:12::i;:::-;55463:7;55430:18;:41::i;:::-;55422:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;55538:28;55548:4;55554:2;55558:7;55538:9;:28::i;:::-;55269:305;;;:::o;53149:162::-;53246:7;53273:30;53297:5;53273:13;:20;53287:5;53273:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;53266:37;;53149:162;;;;:::o;68445:89::-;65884:12;:10;:12::i;:::-;65873:23;;:7;:5;:7::i;:::-;:23;;;65865:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68514:12:::1;;;;;;;;;;;68513:13;68498:12;;:28;;;;;;;;;;;;;;;;;;68445:89::o:0;70875:200::-;70935:13;70981;:11;:13::i;:::-;70970:8;:24;70961:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;71046:11;:21;71058:8;71046:21;;;;;;;;;;;71039:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70875:200;;;:::o;67642:131::-;65884:12;:10;:12::i;:::-;65873:23;;:7;:5;:7::i;:::-;:23;;;65865:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67690:12:::1;67705:21;67690:36;;67737:10;:19;;:28;67757:7;67737:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;65944:1;67642:131::o:0;55645:151::-;55749:39;55766:4;55772:2;55776:7;55749:39;;;;;;;;;;;;:16;:39::i;:::-;55645:151;;;:::o;67121:55::-;67159:17;67121:55;:::o;53675:172::-;53750:7;53771:15;53792:22;53808:5;53792:12;:15;;:22;;;;:::i;:::-;53770:44;;;53832:7;53825:14;;;53675:172;;;:::o;68336:99::-;65884:12;:10;:12::i;:::-;65873:23;;:7;:5;:7::i;:::-;:23;;;65865:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68407:20:::1;68419:7;68407:11;:20::i;:::-;68336:99:::0;:::o;67785:406::-;65884:12;:10;:12::i;:::-;65873:23;;:7;:5;:7::i;:::-;:23;;;65865:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67882:11:::1;67896:13;:11;:13::i;:::-;67882:27;;67945:1;67928:14;:18;:53;;;;;67968:13;;67950:14;:31;;67928:53;67920:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;68034:6;68029:95;68050:14;68046:1;:18;68029:95;;;68086:26;68096:3;68110:1;68101:6;:10;68086:9;:26::i;:::-;68066:3;;;;;;;68029:95;;;;68150:33;68168:14;68150:13;;:17;;:33;;;;:::i;:::-;68134:13;:49;;;;65944:1;67785:406:::0;;:::o;67250:42::-;67288:4;67250:42;:::o;51349:177::-;51421:7;51448:70;51465:7;51448:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;51441:77;;51349:177;;;:::o;52968:97::-;53016:13;53049:8;53042:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52968:97;:::o;51066:221::-;51138:7;51183:1;51166:19;;:5;:19;;;;51158:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;51250:29;:13;:20;51264:5;51250:20;;;;;;;;;;;;;;;:27;:29::i;:::-;51243:36;;51066:221;;;:::o;66304:148::-;65884:12;:10;:12::i;:::-;65873:23;;:7;:5;:7::i;:::-;:23;;;65865:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66411:1:::1;66374:40;;66395:6;;;;;;;;;;;66374:40;;;;;;;;;;;;66442:1;66425:6;;:19;;;;;;;;;;;;;;;;;;66304:148::o:0;68552:540::-;68613:16;68643:18;68664:17;68674:6;68664:9;:17::i;:::-;68643:38;;68710:1;68696:10;:15;68692:393;;;68787:1;68773:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68766:23;;;;;68692:393;68822:23;68862:10;68848:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68822:51;;68888:13;68916:130;68940:10;68932:5;:18;68916:130;;;68996:34;69016:6;69024:5;68996:19;:34::i;:::-;68980:6;68987:5;68980:13;;;;;;;;;;;;;:50;;;;;68952:7;;;;;;;68916:130;;;69067:6;69060:13;;;;;68552:540;;;;:::o;65653:87::-;65699:7;65726:6;;;;;;;;;;;65719:13;;65653:87;:::o;51762:104::-;51818:13;51851:7;51844:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51762:104;:::o;67042:31::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54672:295::-;54787:12;:10;:12::i;:::-;54775:24;;:8;:24;;;;54767:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;54887:8;54842:18;:32;54861:12;:10;:12::i;:::-;54842:32;;;;;;;;;;;;;;;:42;54875:8;54842:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;54940:8;54911:48;;54926:12;:10;:12::i;:::-;54911:48;;;54950:8;54911:48;;;;;;:::i;:::-;;;;;;;;54672:295;;:::o;70450:413::-;70559:10;70538:31;;:17;70546:8;70538:7;:17::i;:::-;:31;;;70530:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;70658:36;70671:11;:21;70683:8;70671:21;;;;;;;;;;;70658:36;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;70634:20;70647:5;70634:20;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:60;;70626:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;70769:5;70745:11;:21;70757:8;70745:21;;;;;;;;;;;:29;;;;;;;;;;;;:::i;:::-;;70800:45;70817:10;70829:8;70839:5;70800:45;;;;;;;;:::i;:::-;;;;;;;;70450:413;;:::o;66993:36::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;69549:174::-;65884:12;:10;:12::i;:::-;65873:23;;:7;:5;:7::i;:::-;:23;;;65865:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69649:5:::1;69632:22;;:13;;;;;;;;;;;:22;;;69624:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;69707:8;69692:12;:23;;;;;;;;;;;;:::i;:::-;;69549:174:::0;:::o;55867:285::-;55999:41;56018:12;:10;:12::i;:::-;56032:7;55999:18;:41::i;:::-;55991:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;56105:39;56119:4;56125:2;56129:7;56138:5;56105:13;:39::i;:::-;55867:285;;;;:::o;67198:43::-;67239:2;67198:43;:::o;69741:696::-;69816:12;;;;;;;;;;;69808:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;69903:1;69886:14;:18;:57;;;;;67239:2;69908:14;:35;;69886:57;69878:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;67288:4;70000:33;70018:14;70000:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:48;;69992:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;70128:31;70144:14;67159:17;70128:15;;:31;;;;:::i;:::-;70115:9;:44;;70107:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;70220:6;70216:212;70236:14;70232:1;:18;70216:212;;;70272:14;70289:13;:11;:13::i;:::-;70272:30;;67288:4;70321:13;:11;:13::i;:::-;:27;70317:100;;;70369:32;70379:10;70391:9;70369;:32::i;:::-;70317:100;70216:212;70252:3;;;;;;;70216:212;;;;69741:696;:::o;69385:125::-;65884:12;:10;:12::i;:::-;65873:23;;:7;:5;:7::i;:::-;:23;;;65865:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69453:4:::1;69436:13;;:21;;;;;;;;;;;;;;;;;;69473:29;69489:12;69473:29;;;;;;:::i;:::-;;;;;;;;69385:125::o:0;51937:792::-;52010:13;52044:16;52052:7;52044;:16::i;:::-;52036:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;52125:23;52151:10;:19;52162:7;52151:19;;;;;;;;;;;52125:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52181:18;52202:9;:7;:9::i;:::-;52181:30;;52309:1;52293:4;52287:18;:23;52283:72;;;52334:9;52327:16;;;;;;52283:72;52485:1;52465:9;52459:23;:27;52455:108;;;52534:4;52540:9;52517:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52503:48;;;;;;52455:108;52695:4;52701:18;:7;:16;:18::i;:::-;52678:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52664:57;;;;51937:792;;;;:::o;69143:176::-;69195:13;69235;:11;:13::i;:::-;69229:3;:19;69221:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;69299:12;69292:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69143:176;;;:::o;67401:30::-;;;;:::o;55038:164::-;55135:4;55159:18;:25;55178:5;55159:25;;;;;;;;;;;;;;;:35;55185:8;55159:35;;;;;;;;;;;;;;;;;;;;;;;;;55152:42;;55038:164;;;;:::o;67301:32::-;;;;;;;;;;;;;:::o;66607:244::-;65884:12;:10;:12::i;:::-;65873:23;;:7;:5;:7::i;:::-;:23;;;65865:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66716:1:::1;66696:22;;:8;:22;;;;66688:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;66806:8;66777:38;;66798:6;;;;;;;;;;;66777:38;;;;;;;;;;;;66835:8;66826:6;;:17;;;;;;;;;;;;;;;;;;66607:244:::0;:::o;57619:127::-;57684:4;57708:30;57730:7;57708:12;:21;;:30;;;;:::i;:::-;57701:37;;57619:127;;;:::o;740:106::-;793:15;828:10;821:17;;740:106;:::o;63637:192::-;63739:2;63712:15;:24;63728:7;63712:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;63795:7;63791:2;63757:46;;63766:23;63781:7;63766:14;:23::i;:::-;63757:46;;;;;;;;;;;;63637:192;;:::o;44351:123::-;44420:7;44447:19;44455:3;:10;;44447:7;:19::i;:::-;44440:26;;44351:123;;;:::o;57913:355::-;58006:4;58031:16;58039:7;58031;:16::i;:::-;58023:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;58107:13;58123:23;58138:7;58123:14;:23::i;:::-;58107:39;;58176:5;58165:16;;:7;:16;;;:51;;;;58209:7;58185:31;;:20;58197:7;58185:11;:20::i;:::-;:31;;;58165:51;:94;;;;58220:39;58244:5;58251:7;58220:23;:39::i;:::-;58165:94;58157:103;;;57913:355;;;;:::o;61049:599::-;61174:4;61147:31;;:23;61162:7;61147:14;:23::i;:::-;:31;;;61139:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;61275:1;61261:16;;:2;:16;;;;61253:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;61331:39;61352:4;61358:2;61362:7;61331:20;:39::i;:::-;61435:29;61452:1;61456:7;61435:8;:29::i;:::-;61477:35;61504:7;61477:13;:19;61491:4;61477:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;61523:30;61545:7;61523:13;:17;61537:2;61523:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;61566:29;61583:7;61592:2;61566:12;:16;;:29;;;;;:::i;:::-;;61632:7;61628:2;61613:27;;61622:4;61613:27;;;;;;;;;;;;61049:599;;;:::o;36142:137::-;36213:7;36248:22;36252:3;:10;;36264:5;36248:3;:22::i;:::-;36240:31;;36233:38;;36142:137;;;;:::o;44813:236::-;44893:7;44902;44923:11;44936:13;44953:22;44957:3;:10;;44969:5;44953:3;:22::i;:::-;44922:53;;;;45002:3;44994:12;;45032:5;45024:14;;44986:55;;;;;;44813:236;;;;;:::o;62249:100::-;62333:8;62322;:19;;;;;;;;;;;;:::i;:::-;;62249:100;:::o;58611:110::-;58687:26;58697:2;58701:7;58687:26;;;;;;;;;;;;:9;:26::i;:::-;58611:110;;:::o;14332:158::-;14390:7;14423:1;14418;:6;;14410:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;14481:1;14477;:5;14470:12;;14332:158;;;;:::o;46099:213::-;46206:7;46257:44;46262:3;:10;;46282:3;46274:12;;46288;46257:4;:44::i;:::-;46249:53;;46226:78;;46099:213;;;;;:::o;35684:114::-;35744:7;35771:19;35779:3;:10;;35771:7;:19::i;:::-;35764:26;;35684:114;;;:::o;57034:272::-;57148:28;57158:4;57164:2;57168:7;57148:9;:28::i;:::-;57195:48;57218:4;57224:2;57228:7;57237:5;57195:22;:48::i;:::-;57187:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;57034:272;;;;:::o;13870:179::-;13928:7;13948:9;13964:1;13960;:5;13948:17;;13989:1;13984;:6;;13976:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;14040:1;14033:8;;;13870:179;;;;:::o;14749:220::-;14807:7;14836:1;14831;:6;14827:20;;;14846:1;14839:8;;;;14827:20;14858:9;14874:1;14870;:5;14858:17;;14903:1;14898;14894;:5;;;;;;:10;14886:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;14960:1;14953:8;;;14749:220;;;;;:::o;46563:746::-;46619:13;46849:1;46840:5;:10;46836:53;;;46867:10;;;;;;;;;;;;;;;;;;;;;46836:53;46899:12;46914:5;46899:20;;46930:14;46955:78;46970:1;46962:4;:9;46955:78;;46988:8;;;;;;;47019:2;47011:10;;;;;;;;;46955:78;;;47043:19;47075:6;47065:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47043:39;;47093:13;47118:1;47109:6;:10;47093:26;;47137:5;47130:12;;47153:117;47168:1;47160:4;:9;47153:117;;47229:2;47222:4;:9;;;;;;47217:2;:14;47204:29;;47186:6;47193:7;;;;;;;47186:15;;;;;;;;;;;:47;;;;;;;;;;;47256:2;47248:10;;;;;;;;;47153:117;;;47294:6;47280:21;;;;;;46563:746;;;;:::o;44112:151::-;44196:4;44220:35;44230:3;:10;;44250:3;44242:12;;44220:9;:35::i;:::-;44213:42;;44112:151;;;;:::o;40930:110::-;40986:7;41013:3;:12;;:19;;;;41006:26;;40930:110;;;:::o;64442:93::-;;;;:::o;35229:137::-;35299:4;35323:35;35331:3;:10;;35351:5;35343:14;;35323:7;:35::i;:::-;35316:42;;35229:137;;;;:::o;34922:131::-;34989:4;35013:32;35018:3;:10;;35038:5;35030:14;;35013:4;:32::i;:::-;35006:39;;34922:131;;;;:::o;43535:185::-;43624:4;43648:64;43653:3;:10;;43673:3;43665:12;;43703:5;43687:23;;43679:32;;43648:4;:64::i;:::-;43641:71;;43535:185;;;;;:::o;31180:204::-;31247:7;31296:5;31275:3;:11;;:18;;;;:26;31267:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31358:3;:11;;31370:5;31358:18;;;;;;;;;;;;;;;;31351:25;;31180:204;;;;:::o;41395:279::-;41462:7;41471;41521:5;41499:3;:12;;:19;;;;:27;41491:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;41578:22;41603:3;:12;;41616:5;41603:19;;;;;;;;;;;;;;;;;;41578:44;;41641:5;:10;;;41653:5;:12;;;41633:33;;;;;41395:279;;;;;:::o;58948:250::-;59044:18;59050:2;59054:7;59044:5;:18::i;:::-;59081:54;59112:1;59116:2;59120:7;59129:5;59081:22;:54::i;:::-;59073:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;58948:250;;;:::o;42892:319::-;42986:7;43006:16;43025:3;:12;;:17;43038:3;43025:17;;;;;;;;;;;;43006:36;;43073:1;43061:8;:13;;43076:12;43053:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;43143:3;:12;;43167:1;43156:8;:12;43143:26;;;;;;;;;;;;;;;;;;:33;;;43136:40;;;42892:319;;;;;:::o;30727:109::-;30783:7;30810:3;:11;;:18;;;;30803:25;;30727:109;;;:::o;62914:604::-;63035:4;63062:15;:2;:13;;;:15::i;:::-;63057:60;;63101:4;63094:11;;;;63057:60;63127:23;63153:252;63206:45;;;63266:12;:10;:12::i;:::-;63293:4;63312:7;63334:5;63169:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63153:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;63127:278;;63416:13;63443:10;63432:32;;;;;;;;;;;;:::i;:::-;63416:48;;48063:10;63493:16;;63483:26;;;:6;:26;;;;63475:35;;;;62914:604;;;;;;;:::o;40710:125::-;40781:4;40826:1;40805:3;:12;;:17;40818:3;40805:17;;;;;;;;;;;;:22;;40798:29;;40710:125;;;;:::o;28882:1544::-;28948:4;29066:18;29087:3;:12;;:19;29100:5;29087:19;;;;;;;;;;;;29066:40;;29137:1;29123:10;:15;29119:1300;;29485:21;29522:1;29509:10;:14;29485:38;;29538:17;29579:1;29558:3;:11;;:18;;;;:22;29538:42;;29825:17;29845:3;:11;;29857:9;29845:22;;;;;;;;;;;;;;;;29825:42;;29991:9;29962:3;:11;;29974:13;29962:26;;;;;;;;;;;;;;;:38;;;;30110:1;30094:13;:17;30068:3;:12;;:23;30081:9;30068:23;;;;;;;;;;;:43;;;;30220:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;30315:3;:12;;:19;30328:5;30315:19;;;;;;;;;;;30308:26;;;30358:4;30351:11;;;;;;;;29119:1300;30402:5;30395:12;;;28882:1544;;;;;:::o;28292:414::-;28355:4;28377:21;28387:3;28392:5;28377:9;:21::i;:::-;28372:327;;28415:3;:11;;28432:5;28415:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28598:3;:11;;:18;;;;28576:3;:12;;:19;28589:5;28576:19;;;;;;;;;;;:40;;;;28638:4;28631:11;;;;28372:327;28682:5;28675:12;;28292:414;;;;;:::o;38210:692::-;38286:4;38402:16;38421:3;:12;;:17;38434:3;38421:17;;;;;;;;;;;;38402:36;;38467:1;38455:8;:13;38451:444;;;38522:3;:12;;38540:38;;;;;;;;38557:3;38540:38;;;;38570:5;38540:38;;;38522:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38737:3;:12;;:19;;;;38717:3;:12;;:17;38730:3;38717:17;;;;;;;;;;;:39;;;;38778:4;38771:11;;;;;38451:444;38851:5;38815:3;:12;;38839:1;38828:8;:12;38815:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;38878:5;38871:12;;;38210:692;;;;;;:::o;59534:404::-;59628:1;59614:16;;:2;:16;;;;59606:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;59687:16;59695:7;59687;:16::i;:::-;59686:17;59678:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;59749:45;59778:1;59782:2;59786:7;59749:20;:45::i;:::-;59807:30;59829:7;59807:13;:17;59821:2;59807:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;59850:29;59867:7;59876:2;59850:12;:16;;:29;;;;;:::i;:::-;;59922:7;59918:2;59897:33;;59914:1;59897:33;;;;;;;;;;;;59534:404;;:::o;19311:422::-;19371:4;19579:12;19690:7;19678:20;19670:28;;19724:1;19717:4;:8;19710:15;;;19311:422;;;:::o;22229:195::-;22332:12;22364:52;22386:6;22394:4;22400:1;22403:12;22364:21;:52::i;:::-;22357:59;;22229:195;;;;;:::o;30512:129::-;30585:4;30632:1;30609:3;:12;;:19;30622:5;30609:19;;;;;;;;;;;;:24;;30602:31;;30512:129;;;;:::o;23281:530::-;23408:12;23466:5;23441:21;:30;;23433:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;23533:18;23544:6;23533:10;:18::i;:::-;23525:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;23659:12;23673:23;23700:6;:11;;23720:5;23728:4;23700:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23658:75;;;;23751:52;23769:7;23778:10;23790:12;23751:17;:52::i;:::-;23744:59;;;;23281:530;;;;;;:::o;25821:742::-;25936:12;25965:7;25961:595;;;25996:10;25989:17;;;;25961:595;26130:1;26110:10;:17;:21;26106:439;;;26373:10;26367:17;26434:15;26421:10;26417:2;26413:19;26406:44;26321:148;26516:12;26509:20;;;;;;;;;;;:::i;:::-;;;;;;;;25821: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:143::-;;1077:6;1071:13;1062:22;;1093:33;1120:5;1093:33;:::i;:::-;1052:80;;;;:::o;1138:137::-;;1221:6;1208:20;1199:29;;1237:32;1263:5;1237:32;:::i;:::-;1189:86;;;;:::o;1281:141::-;;1368:6;1362:13;1353:22;;1384:32;1410:5;1384:32;:::i;:::-;1343:79;;;;:::o;1441:271::-;;1545:3;1538:4;1530:6;1526:17;1522:27;1512:2;;1563:1;1560;1553:12;1512:2;1603:6;1590:20;1628:78;1702:3;1694:6;1687:4;1679:6;1675:17;1628:78;:::i;:::-;1619:87;;1502:210;;;;;:::o;1732:273::-;;1837:3;1830:4;1822:6;1818:17;1814:27;1804:2;;1855:1;1852;1845:12;1804:2;1895:6;1882:20;1920:79;1995:3;1987:6;1980:4;1972:6;1968:17;1920:79;:::i;:::-;1911:88;;1794:211;;;;;:::o;2011:139::-;;2095:6;2082:20;2073:29;;2111:33;2138:5;2111:33;:::i;:::-;2063:87;;;;:::o;2156:262::-;;2264:2;2252:9;2243:7;2239:23;2235:32;2232:2;;;2280:1;2277;2270:12;2232:2;2323:1;2348:53;2393:7;2384:6;2373:9;2369:22;2348:53;:::i;:::-;2338:63;;2294:117;2222:196;;;;:::o;2424:407::-;;;2549:2;2537:9;2528:7;2524:23;2520:32;2517:2;;;2565:1;2562;2555:12;2517:2;2608:1;2633:53;2678:7;2669:6;2658:9;2654:22;2633:53;:::i;:::-;2623:63;;2579:117;2735:2;2761:53;2806:7;2797:6;2786:9;2782:22;2761:53;:::i;:::-;2751:63;;2706:118;2507:324;;;;;:::o;2837:552::-;;;;2979:2;2967:9;2958:7;2954:23;2950:32;2947:2;;;2995:1;2992;2985:12;2947:2;3038:1;3063:53;3108:7;3099:6;3088:9;3084:22;3063:53;:::i;:::-;3053:63;;3009:117;3165:2;3191:53;3236:7;3227:6;3216:9;3212:22;3191:53;:::i;:::-;3181:63;;3136:118;3293:2;3319:53;3364:7;3355:6;3344:9;3340:22;3319:53;:::i;:::-;3309:63;;3264:118;2937:452;;;;;:::o;3395:809::-;;;;;3563:3;3551:9;3542:7;3538:23;3534:33;3531:2;;;3580:1;3577;3570:12;3531:2;3623:1;3648:53;3693:7;3684:6;3673:9;3669:22;3648:53;:::i;:::-;3638:63;;3594:117;3750:2;3776:53;3821:7;3812:6;3801:9;3797:22;3776:53;:::i;:::-;3766:63;;3721:118;3878:2;3904:53;3949:7;3940:6;3929:9;3925:22;3904:53;:::i;:::-;3894:63;;3849:118;4034:2;4023:9;4019:18;4006:32;4065:18;4057:6;4054:30;4051:2;;;4097:1;4094;4087:12;4051:2;4125:62;4179:7;4170:6;4159:9;4155:22;4125:62;:::i;:::-;4115:72;;3977:220;3521:683;;;;;;;:::o;4210:401::-;;;4332:2;4320:9;4311:7;4307:23;4303:32;4300:2;;;4348:1;4345;4338:12;4300:2;4391:1;4416:53;4461:7;4452:6;4441:9;4437:22;4416:53;:::i;:::-;4406:63;;4362:117;4518:2;4544:50;4586:7;4577:6;4566:9;4562:22;4544:50;:::i;:::-;4534:60;;4489:115;4290:321;;;;;:::o;4617:407::-;;;4742:2;4730:9;4721:7;4717:23;4713:32;4710:2;;;4758:1;4755;4748:12;4710:2;4801:1;4826:53;4871:7;4862:6;4851:9;4847:22;4826:53;:::i;:::-;4816:63;;4772:117;4928:2;4954:53;4999:7;4990:6;4979:9;4975:22;4954:53;:::i;:::-;4944:63;;4899:118;4700:324;;;;;:::o;5030:284::-;;5149:2;5137:9;5128:7;5124:23;5120:32;5117:2;;;5165:1;5162;5155:12;5117:2;5208:1;5233:64;5289:7;5280:6;5269:9;5265:22;5233:64;:::i;:::-;5223:74;;5179:128;5107:207;;;;:::o;5320:260::-;;5427:2;5415:9;5406:7;5402:23;5398:32;5395:2;;;5443:1;5440;5433:12;5395:2;5486:1;5511:52;5555:7;5546:6;5535:9;5531:22;5511:52;:::i;:::-;5501:62;;5457:116;5385:195;;;;:::o;5586:282::-;;5704:2;5692:9;5683:7;5679:23;5675:32;5672:2;;;5720:1;5717;5710:12;5672:2;5763:1;5788:63;5843:7;5834:6;5823:9;5819:22;5788:63;:::i;:::-;5778:73;;5734:127;5662:206;;;;:::o;5874:375::-;;5992:2;5980:9;5971:7;5967:23;5963:32;5960:2;;;6008:1;6005;5998:12;5960:2;6079:1;6068:9;6064:17;6051:31;6109:18;6101:6;6098:30;6095:2;;;6141:1;6138;6131:12;6095:2;6169:63;6224:7;6215:6;6204:9;6200:22;6169:63;:::i;:::-;6159:73;;6022:220;5950:299;;;;:::o;6255:262::-;;6363:2;6351:9;6342:7;6338:23;6334:32;6331:2;;;6379:1;6376;6369:12;6331:2;6422:1;6447:53;6492:7;6483:6;6472:9;6468:22;6447:53;:::i;:::-;6437:63;;6393:117;6321:196;;;;:::o;6523:520::-;;;6658:2;6646:9;6637:7;6633:23;6629:32;6626:2;;;6674:1;6671;6664:12;6626:2;6717:1;6742:53;6787:7;6778:6;6767:9;6763:22;6742:53;:::i;:::-;6732:63;;6688:117;6872:2;6861:9;6857:18;6844:32;6903:18;6895:6;6892:30;6889:2;;;6935:1;6932;6925:12;6889:2;6963:63;7018:7;7009:6;6998:9;6994:22;6963:63;:::i;:::-;6953:73;;6815:221;6616:427;;;;;:::o;7049:196::-;;7173:66;7235:3;7227:6;7173:66;:::i;:::-;7159:80;;7149:96;;;;:::o;7251:179::-;;7341:46;7383:3;7375:6;7341:46;:::i;:::-;7419:4;7414:3;7410:14;7396:28;;7331:99;;;;:::o;7436:147::-;7531:45;7570:5;7531:45;:::i;:::-;7526:3;7519:58;7509:74;;:::o;7589:142::-;7692:32;7718:5;7692:32;:::i;:::-;7687:3;7680:45;7670:61;;:::o;7737:118::-;7824:24;7842:5;7824:24;:::i;:::-;7819:3;7812:37;7802:53;;:::o;7889:991::-;;8057:64;8115:5;8057:64;:::i;:::-;8137:96;8226:6;8221:3;8137:96;:::i;:::-;8130:103;;8259:3;8304:4;8296:6;8292:17;8287:3;8283:27;8334:66;8394:5;8334:66;:::i;:::-;8423:7;8454:1;8439:396;8464:6;8461:1;8458:13;8439:396;;;8535:9;8529:4;8525:20;8520:3;8513:33;8586:6;8580:13;8614:84;8693:4;8678:13;8614:84;:::i;:::-;8606:92;;8721:70;8784:6;8721:70;:::i;:::-;8711:80;;8820:4;8815:3;8811:14;8804:21;;8499:336;8486:1;8483;8479:9;8474:14;;8439:396;;;8443:14;8851:4;8844:11;;8871:3;8864:10;;8033:847;;;;;;;;;:::o;8916:732::-;;9064:54;9112:5;9064:54;:::i;:::-;9134:86;9213:6;9208:3;9134:86;:::i;:::-;9127:93;;9244:56;9294:5;9244:56;:::i;:::-;9323:7;9354:1;9339:284;9364:6;9361:1;9358:13;9339:284;;;9440:6;9434:13;9467:63;9526:3;9511:13;9467:63;:::i;:::-;9460:70;;9553:60;9606:6;9553:60;:::i;:::-;9543:70;;9399:224;9386:1;9383;9379:9;9374:14;;9339:284;;;9343:14;9639:3;9632:10;;9040:608;;;;;;;:::o;9654:109::-;9735:21;9750:5;9735:21;:::i;:::-;9730:3;9723:34;9713:50;;:::o;9769:360::-;;9883:38;9915:5;9883:38;:::i;:::-;9937:70;10000:6;9995:3;9937:70;:::i;:::-;9930:77;;10016:52;10061:6;10056:3;10049:4;10042:5;10038:16;10016:52;:::i;:::-;10093:29;10115:6;10093:29;:::i;:::-;10088:3;10084:39;10077:46;;9859:270;;;;;:::o;10135:373::-;;10267:38;10299:5;10267:38;:::i;:::-;10321:88;10402:6;10397:3;10321:88;:::i;:::-;10314:95;;10418:52;10463:6;10458:3;10451:4;10444:5;10440:16;10418:52;:::i;:::-;10495:6;10490:3;10486:16;10479:23;;10243:265;;;;;:::o;10536:1001::-;;10678:5;10672:12;10715:1;10704:9;10700:17;10731:1;10726:300;;;;11040:1;11035:496;;;;10693:838;;10726:300;10816:4;10812:1;10801:9;10797:17;10793:28;10841:88;10922:6;10917:3;10841:88;:::i;:::-;10834:95;;10973:4;10969:9;10958;10954:25;10949:3;10942:38;11009:6;11004:3;11000:16;10993:23;;10733:293;10726:300;;11035:496;11116:1;11105:9;11101:17;11138:88;11219:6;11214:3;11138:88;:::i;:::-;11131:95;;11254:41;11289:5;11254:41;:::i;:::-;11317:1;11331:154;11345:6;11342:1;11339:13;11331:154;;;11419:7;11413:14;11409:1;11404:3;11400:11;11393:35;11469:1;11460:7;11456:15;11445:26;;11367:4;11364:1;11360:12;11355:17;;11331:154;;;11514:6;11509:3;11505:16;11498:23;;11042:489;;;10693:838;;10645:892;;;;;:::o;11543:344::-;;11649:39;11682:5;11649:39;:::i;:::-;11704:61;11758:6;11753:3;11704:61;:::i;:::-;11697:68;;11774:52;11819:6;11814:3;11807:4;11800:5;11796:16;11774:52;:::i;:::-;11851:29;11873:6;11851:29;:::i;:::-;11846:3;11842:39;11835:46;;11625:262;;;;;:::o;11893:364::-;;12009:39;12042:5;12009:39;:::i;:::-;12064:71;12128:6;12123:3;12064:71;:::i;:::-;12057:78;;12144:52;12189:6;12184:3;12177:4;12170:5;12166:16;12144:52;:::i;:::-;12221:29;12243:6;12221:29;:::i;:::-;12216:3;12212:39;12205:46;;11985:272;;;;;:::o;12263:377::-;;12397:39;12430:5;12397:39;:::i;:::-;12452:89;12534:6;12529:3;12452:89;:::i;:::-;12445:96;;12550:52;12595:6;12590:3;12583:4;12576:5;12572:16;12550:52;:::i;:::-;12627:6;12622:3;12618:16;12611:23;;12373:267;;;;;:::o;12670:937::-;;12792:5;12786:12;12829:1;12818:9;12814:17;12845:1;12840:281;;;;13135:1;13130:471;;;;12807:794;;12840:281;12930:4;12926:1;12915:9;12911:17;12907:28;12955:71;13019:6;13014:3;12955:71;:::i;:::-;12948:78;;13070:4;13066:9;13055;13051:25;13046:3;13039:38;13106:4;13101:3;13097:14;13090:21;;12847:274;12840:281;;13130:471;13211:1;13200:9;13196:17;13233:71;13297:6;13292:3;13233:71;:::i;:::-;13226:78;;13332:38;13364:5;13332:38;:::i;:::-;13392:1;13406:154;13420:6;13417:1;13414:13;13406:154;;;13494:7;13488:14;13484:1;13479:3;13475:11;13468:35;13544:1;13535:7;13531:15;13520:26;;13442:4;13439:1;13435:12;13430:17;;13406:154;;;13589:1;13584:3;13580:11;13573:18;;13137:464;;;12807:794;;12759:848;;;;;:::o;13613:366::-;;13776:67;13840:2;13835:3;13776:67;:::i;:::-;13769:74;;13873:34;13869:1;13864:3;13860:11;13853:55;13939:4;13934:2;13929:3;13925:12;13918:26;13970:2;13965:3;13961:12;13954:19;;13759:220;;;:::o;13985:382::-;;14148:67;14212:2;14207:3;14148:67;:::i;:::-;14141:74;;14245:34;14241:1;14236:3;14232:11;14225:55;14311:20;14306:2;14301:3;14297:12;14290:42;14358:2;14353:3;14349:12;14342:19;;14131:236;;;:::o;14373:370::-;;14536:67;14600:2;14595:3;14536:67;:::i;:::-;14529:74;;14633:34;14629:1;14624:3;14620:11;14613:55;14699:8;14694:2;14689:3;14685:12;14678:30;14734:2;14729:3;14725:12;14718:19;;14519:224;;;:::o;14749:326::-;;14912:67;14976:2;14971:3;14912:67;:::i;:::-;14905:74;;15009:30;15005:1;15000:3;14996:11;14989:51;15066:2;15061:3;15057:12;15050:19;;14895:180;;;:::o;15081:373::-;;15244:67;15308:2;15303:3;15244:67;:::i;:::-;15237:74;;15341:34;15337:1;15332:3;15328:11;15321:55;15407:11;15402:2;15397:3;15393:12;15386:33;15445:2;15440:3;15436:12;15429:19;;15227:227;;;:::o;15460:325::-;;15623:67;15687:2;15682:3;15623:67;:::i;:::-;15616:74;;15720:29;15716:1;15711:3;15707:11;15700:50;15776:2;15771:3;15767:12;15760:19;;15606:179;;;:::o;15791:330::-;;15954:67;16018:2;16013:3;15954:67;:::i;:::-;15947:74;;16051:34;16047:1;16042:3;16038:11;16031:55;16112:2;16107:3;16103:12;16096:19;;15937:184;;;:::o;16127:368::-;;16290:67;16354:2;16349:3;16290:67;:::i;:::-;16283:74;;16387:34;16383:1;16378:3;16374:11;16367:55;16453:6;16448:2;16443:3;16439:12;16432:28;16486:2;16481:3;16477:12;16470:19;;16273:222;;;:::o;16501:323::-;;16664:67;16728:2;16723:3;16664:67;:::i;:::-;16657:74;;16761:27;16757:1;16752:3;16748:11;16741:48;16815:2;16810:3;16806:12;16799:19;;16647:177;;;:::o;16830:329::-;;16993:67;17057:2;17052:3;16993:67;:::i;:::-;16986:74;;17090:33;17086:1;17081:3;17077:11;17070:54;17150:2;17145:3;17141:12;17134:19;;16976:183;;;:::o;17165:328::-;;17328:67;17392:2;17387:3;17328:67;:::i;:::-;17321:74;;17425:32;17421:1;17416:3;17412:11;17405:53;17484:2;17479:3;17475:12;17468:19;;17311:182;;;:::o;17499:370::-;;17662:67;17726:2;17721:3;17662:67;:::i;:::-;17655:74;;17759:34;17755:1;17750:3;17746:11;17739:55;17825:8;17820:2;17815:3;17811:12;17804:30;17860:2;17855:3;17851:12;17844:19;;17645:224;;;:::o;17875:376::-;;18038:67;18102:2;18097:3;18038:67;:::i;:::-;18031:74;;18135:34;18131:1;18126:3;18122:11;18115:55;18201:14;18196:2;18191:3;18187:12;18180:36;18242:2;18237:3;18233:12;18226:19;;18021:230;;;:::o;18257:326::-;;18420:67;18484:2;18479:3;18420:67;:::i;:::-;18413:74;;18517:30;18513:1;18508:3;18504:11;18497:51;18574:2;18569:3;18565:12;18558:19;;18403:180;;;:::o;18589:326::-;;18752:67;18816:2;18811:3;18752:67;:::i;:::-;18745:74;;18849:30;18845:1;18840:3;18836:11;18829:51;18906:2;18901:3;18897:12;18890:19;;18735:180;;;:::o;18921:366::-;;19084:67;19148:2;19143:3;19084:67;:::i;:::-;19077:74;;19181:34;19177:1;19172:3;19168:11;19161:55;19247:4;19242:2;19237:3;19233:12;19226:26;19278:2;19273:3;19269:12;19262:19;;19067:220;;;:::o;19293:388::-;;19456:67;19520:2;19515:3;19456:67;:::i;:::-;19449:74;;19553:34;19549:1;19544:3;19540:11;19533:55;19619:26;19614:2;19609:3;19605:12;19598:48;19672:2;19667:3;19663:12;19656:19;;19439:242;;;:::o;19687:374::-;;19850:67;19914:2;19909:3;19850:67;:::i;:::-;19843:74;;19947:34;19943:1;19938:3;19934:11;19927:55;20013:12;20008:2;20003:3;19999:12;19992:34;20052:2;20047:3;20043:12;20036:19;;19833:228;;;:::o;20067:375::-;;20230:67;20294:2;20289:3;20230:67;:::i;:::-;20223:74;;20327:34;20323:1;20318:3;20314:11;20307:55;20393:13;20388:2;20383:3;20379:12;20372:35;20433:2;20428:3;20424:12;20417:19;;20213:229;;;:::o;20448:366::-;;20611:67;20675:2;20670:3;20611:67;:::i;:::-;20604:74;;20708:34;20704:1;20699:3;20695:11;20688:55;20774:4;20769:2;20764:3;20760:12;20753:26;20805:2;20800:3;20796:12;20789:19;;20594:220;;;:::o;20820:330::-;;20983:67;21047:2;21042:3;20983:67;:::i;:::-;20976:74;;21080:34;21076:1;21071:3;21067:11;21060:55;21141:2;21136:3;21132:12;21125:19;;20966:184;;;:::o;21156:365::-;;21319:67;21383:2;21378:3;21319:67;:::i;:::-;21312:74;;21416:34;21412:1;21407:3;21403:11;21396:55;21482:3;21477:2;21472:3;21468:12;21461:25;21512:2;21507:3;21503:12;21496:19;;21302:219;;;:::o;21527:376::-;;21690:67;21754:2;21749:3;21690:67;:::i;:::-;21683:74;;21787:34;21783:1;21778:3;21774:11;21767:55;21853:14;21848:2;21843:3;21839:12;21832:36;21894:2;21889:3;21885:12;21878:19;;21673:230;;;:::o;21909:330::-;;22072:67;22136:2;22131:3;22072:67;:::i;:::-;22065:74;;22169:34;22165:1;22160:3;22156:11;22149:55;22230:2;22225:3;22221:12;22214:19;;22055:184;;;:::o;22245:373::-;;22408:67;22472:2;22467:3;22408:67;:::i;:::-;22401:74;;22505:34;22501:1;22496:3;22492:11;22485:55;22571:11;22566:2;22561:3;22557:12;22550:33;22609:2;22604:3;22600:12;22593:19;;22391:227;;;:::o;22624:379::-;;22787:67;22851:2;22846:3;22787:67;:::i;:::-;22780:74;;22884:34;22880:1;22875:3;22871:11;22864:55;22950:17;22945:2;22940:3;22936:12;22929:39;22994:2;22989:3;22985:12;22978:19;;22770:233;;;:::o;23009:367::-;;23172:67;23236:2;23231:3;23172:67;:::i;:::-;23165:74;;23269:34;23265:1;23260:3;23256:11;23249:55;23335:5;23330:2;23325:3;23321:12;23314:27;23367:2;23362:3;23358:12;23351:19;;23155:221;;;:::o;23382:365::-;;23545:67;23609:2;23604:3;23545:67;:::i;:::-;23538:74;;23642:34;23638:1;23633:3;23629:11;23622:55;23708:3;23703:2;23698:3;23694:12;23687:25;23738:2;23733:3;23729:12;23722:19;;23528:219;;;:::o;23753:320::-;;23916:67;23980:2;23975:3;23916:67;:::i;:::-;23909:74;;24013:24;24009:1;24004:3;24000:11;23993:45;24064:2;24059:3;24055:12;24048:19;;23899:174;;;:::o;24079:381::-;;24242:67;24306:2;24301:3;24242:67;:::i;:::-;24235:74;;24339:34;24335:1;24330:3;24326:11;24319:55;24405:19;24400:2;24395:3;24391:12;24384:41;24451:2;24446:3;24442:12;24435:19;;24225:235;;;:::o;24466:327::-;;24629:67;24693:2;24688:3;24629:67;:::i;:::-;24622:74;;24726:31;24722:1;24717:3;24713:11;24706:52;24784:2;24779:3;24775:12;24768:19;;24612:181;;;:::o;24799:365::-;;24962:67;25026:2;25021:3;24962:67;:::i;:::-;24955:74;;25059:34;25055:1;25050:3;25046:11;25039:55;25125:3;25120:2;25115:3;25111:12;25104:25;25155:2;25150:3;25146:12;25139:19;;24945:219;;;:::o;25170:108::-;25247:24;25265:5;25247:24;:::i;:::-;25242:3;25235:37;25225:53;;:::o;25284:118::-;25371:24;25389:5;25371:24;:::i;:::-;25366:3;25359:37;25349:53;;:::o;25408:271::-;;25560:93;25649:3;25640:6;25560:93;:::i;:::-;25553:100;;25670:3;25663:10;;25542:137;;;;:::o;25685:273::-;;25838:94;25928:3;25919:6;25838:94;:::i;:::-;25831:101;;25949:3;25942:10;;25820:138;;;;:::o;25964:435::-;;26166:95;26257:3;26248:6;26166:95;:::i;:::-;26159:102;;26278:95;26369:3;26360:6;26278:95;:::i;:::-;26271:102;;26390:3;26383:10;;26148:251;;;;;:::o;26405:222::-;;26536:2;26525:9;26521:18;26513:26;;26549:71;26617:1;26606:9;26602:17;26593:6;26549:71;:::i;:::-;26503:124;;;;:::o;26633:672::-;;26882:3;26871:9;26867:19;26859:27;;26896:87;26980:1;26969:9;26965:17;26956:6;26896:87;:::i;:::-;26993:72;27061:2;27050:9;27046:18;27037:6;26993:72;:::i;:::-;27075;27143:2;27132:9;27128:18;27119:6;27075:72;:::i;:::-;27194:9;27188:4;27184:20;27179:2;27168:9;27164:18;27157:48;27222:76;27293:4;27284:6;27222:76;:::i;:::-;27214:84;;26849:456;;;;;;;:::o;27311:549::-;;27526:2;27515:9;27511:18;27503:26;;27539:79;27615:1;27604:9;27600:17;27591:6;27539:79;:::i;:::-;27628:72;27696:2;27685:9;27681:18;27672:6;27628:72;:::i;:::-;27747:9;27741:4;27737:20;27732:2;27721:9;27717:18;27710:48;27775:78;27848:4;27839:6;27775:78;:::i;:::-;27767:86;;27493:367;;;;;;:::o;27866:413::-;;28067:2;28056:9;28052:18;28044:26;;28116:9;28110:4;28106:20;28102:1;28091:9;28087:17;28080:47;28144:128;28267:4;28258:6;28144:128;:::i;:::-;28136:136;;28034:245;;;;:::o;28285:373::-;;28466:2;28455:9;28451:18;28443:26;;28515:9;28509:4;28505:20;28501:1;28490:9;28486:17;28479:47;28543:108;28646:4;28637:6;28543:108;:::i;:::-;28535:116;;28433:225;;;;:::o;28664:210::-;;28789:2;28778:9;28774:18;28766:26;;28802:65;28864:1;28853:9;28849:17;28840:6;28802:65;:::i;:::-;28756:118;;;;:::o;28880:313::-;;29031:2;29020:9;29016:18;29008:26;;29080:9;29074:4;29070:20;29066:1;29055:9;29051:17;29044:47;29108:78;29181:4;29172:6;29108:78;:::i;:::-;29100:86;;28998:195;;;;:::o;29199:307::-;;29347:2;29336:9;29332:18;29324:26;;29396:9;29390:4;29386:20;29382:1;29371:9;29367:17;29360:47;29424:75;29494:4;29485:6;29424:75;:::i;:::-;29416:83;;29314:192;;;;:::o;29512:419::-;;29716:2;29705:9;29701:18;29693:26;;29765:9;29759:4;29755:20;29751:1;29740:9;29736:17;29729:47;29793:131;29919:4;29793:131;:::i;:::-;29785:139;;29683:248;;;:::o;29937:419::-;;30141:2;30130:9;30126:18;30118:26;;30190:9;30184:4;30180:20;30176:1;30165:9;30161:17;30154:47;30218:131;30344:4;30218:131;:::i;:::-;30210:139;;30108:248;;;:::o;30362:419::-;;30566:2;30555:9;30551:18;30543:26;;30615:9;30609:4;30605:20;30601:1;30590:9;30586:17;30579:47;30643:131;30769:4;30643:131;:::i;:::-;30635:139;;30533:248;;;:::o;30787:419::-;;30991:2;30980:9;30976:18;30968:26;;31040:9;31034:4;31030:20;31026:1;31015:9;31011:17;31004:47;31068:131;31194:4;31068:131;:::i;:::-;31060:139;;30958:248;;;:::o;31212:419::-;;31416:2;31405:9;31401:18;31393:26;;31465:9;31459:4;31455:20;31451:1;31440:9;31436:17;31429:47;31493:131;31619:4;31493:131;:::i;:::-;31485:139;;31383:248;;;:::o;31637:419::-;;31841:2;31830:9;31826:18;31818:26;;31890:9;31884:4;31880:20;31876:1;31865:9;31861:17;31854:47;31918:131;32044:4;31918:131;:::i;:::-;31910:139;;31808:248;;;:::o;32062:419::-;;32266:2;32255:9;32251:18;32243:26;;32315:9;32309:4;32305:20;32301:1;32290:9;32286:17;32279:47;32343:131;32469:4;32343:131;:::i;:::-;32335:139;;32233:248;;;:::o;32487:419::-;;32691:2;32680:9;32676:18;32668:26;;32740:9;32734:4;32730:20;32726:1;32715:9;32711:17;32704:47;32768:131;32894:4;32768:131;:::i;:::-;32760:139;;32658:248;;;:::o;32912:419::-;;33116:2;33105:9;33101:18;33093:26;;33165:9;33159:4;33155:20;33151:1;33140:9;33136:17;33129:47;33193:131;33319:4;33193:131;:::i;:::-;33185:139;;33083:248;;;:::o;33337:419::-;;33541:2;33530:9;33526:18;33518:26;;33590:9;33584:4;33580:20;33576:1;33565:9;33561:17;33554:47;33618:131;33744:4;33618:131;:::i;:::-;33610:139;;33508:248;;;:::o;33762:419::-;;33966:2;33955:9;33951:18;33943:26;;34015:9;34009:4;34005:20;34001:1;33990:9;33986:17;33979:47;34043:131;34169:4;34043:131;:::i;:::-;34035:139;;33933:248;;;:::o;34187:419::-;;34391:2;34380:9;34376:18;34368:26;;34440:9;34434:4;34430:20;34426:1;34415:9;34411:17;34404:47;34468:131;34594:4;34468:131;:::i;:::-;34460:139;;34358:248;;;:::o;34612:419::-;;34816:2;34805:9;34801:18;34793:26;;34865:9;34859:4;34855:20;34851:1;34840:9;34836:17;34829:47;34893:131;35019:4;34893:131;:::i;:::-;34885:139;;34783:248;;;:::o;35037:419::-;;35241:2;35230:9;35226:18;35218:26;;35290:9;35284:4;35280:20;35276:1;35265:9;35261:17;35254:47;35318:131;35444:4;35318:131;:::i;:::-;35310:139;;35208:248;;;:::o;35462:419::-;;35666:2;35655:9;35651:18;35643:26;;35715:9;35709:4;35705:20;35701:1;35690:9;35686:17;35679:47;35743:131;35869:4;35743:131;:::i;:::-;35735:139;;35633:248;;;:::o;35887:419::-;;36091:2;36080:9;36076:18;36068:26;;36140:9;36134:4;36130:20;36126:1;36115:9;36111:17;36104:47;36168:131;36294:4;36168:131;:::i;:::-;36160:139;;36058:248;;;:::o;36312:419::-;;36516:2;36505:9;36501:18;36493:26;;36565:9;36559:4;36555:20;36551:1;36540:9;36536:17;36529:47;36593:131;36719:4;36593:131;:::i;:::-;36585:139;;36483:248;;;:::o;36737:419::-;;36941:2;36930:9;36926:18;36918:26;;36990:9;36984:4;36980:20;36976:1;36965:9;36961:17;36954:47;37018:131;37144:4;37018:131;:::i;:::-;37010:139;;36908:248;;;:::o;37162:419::-;;37366:2;37355:9;37351:18;37343:26;;37415:9;37409:4;37405:20;37401:1;37390:9;37386:17;37379:47;37443:131;37569:4;37443:131;:::i;:::-;37435:139;;37333:248;;;:::o;37587:419::-;;37791:2;37780:9;37776:18;37768:26;;37840:9;37834:4;37830:20;37826:1;37815:9;37811:17;37804:47;37868:131;37994:4;37868:131;:::i;:::-;37860:139;;37758:248;;;:::o;38012:419::-;;38216:2;38205:9;38201:18;38193:26;;38265:9;38259:4;38255:20;38251:1;38240:9;38236:17;38229:47;38293:131;38419:4;38293:131;:::i;:::-;38285:139;;38183:248;;;:::o;38437:419::-;;38641:2;38630:9;38626:18;38618:26;;38690:9;38684:4;38680:20;38676:1;38665:9;38661:17;38654:47;38718:131;38844:4;38718:131;:::i;:::-;38710:139;;38608:248;;;:::o;38862:419::-;;39066:2;39055:9;39051:18;39043:26;;39115:9;39109:4;39105:20;39101:1;39090:9;39086:17;39079:47;39143:131;39269:4;39143:131;:::i;:::-;39135:139;;39033:248;;;:::o;39287:419::-;;39491:2;39480:9;39476:18;39468:26;;39540:9;39534:4;39530:20;39526:1;39515:9;39511:17;39504:47;39568:131;39694:4;39568:131;:::i;:::-;39560:139;;39458:248;;;:::o;39712:419::-;;39916:2;39905:9;39901:18;39893:26;;39965:9;39959:4;39955:20;39951:1;39940:9;39936:17;39929:47;39993:131;40119:4;39993:131;:::i;:::-;39985:139;;39883:248;;;:::o;40137:419::-;;40341:2;40330:9;40326:18;40318:26;;40390:9;40384:4;40380:20;40376:1;40365:9;40361:17;40354:47;40418:131;40544:4;40418:131;:::i;:::-;40410:139;;40308:248;;;:::o;40562:419::-;;40766:2;40755:9;40751:18;40743:26;;40815:9;40809:4;40805:20;40801:1;40790:9;40786:17;40779:47;40843:131;40969:4;40843:131;:::i;:::-;40835:139;;40733:248;;;:::o;40987:419::-;;41191:2;41180:9;41176:18;41168:26;;41240:9;41234:4;41230:20;41226:1;41215:9;41211:17;41204:47;41268:131;41394:4;41268:131;:::i;:::-;41260:139;;41158:248;;;:::o;41412:419::-;;41616:2;41605:9;41601:18;41593:26;;41665:9;41659:4;41655:20;41651:1;41640:9;41636:17;41629:47;41693:131;41819:4;41693:131;:::i;:::-;41685:139;;41583:248;;;:::o;41837:419::-;;42041:2;42030:9;42026:18;42018:26;;42090:9;42084:4;42080:20;42076:1;42065:9;42061:17;42054:47;42118:131;42244:4;42118:131;:::i;:::-;42110:139;;42008:248;;;:::o;42262:419::-;;42466:2;42455:9;42451:18;42443:26;;42515:9;42509:4;42505:20;42501:1;42490:9;42486:17;42479:47;42543:131;42669:4;42543:131;:::i;:::-;42535:139;;42433:248;;;:::o;42687:419::-;;42891:2;42880:9;42876:18;42868:26;;42940:9;42934:4;42930:20;42926:1;42915:9;42911:17;42904:47;42968:131;43094:4;42968:131;:::i;:::-;42960:139;;42858:248;;;:::o;43112:222::-;;43243:2;43232:9;43228:18;43220:26;;43256:71;43324:1;43313:9;43309:17;43300:6;43256:71;:::i;:::-;43210:124;;;;:::o;43340:278::-;;43406:2;43400:9;43390:19;;43448:4;43440:6;43436:17;43555:6;43543:10;43540:22;43519:18;43507:10;43504:34;43501:62;43498:2;;;43566:13;;:::i;:::-;43498:2;43601:10;43597:2;43590:22;43380:238;;;;:::o;43624:326::-;;43775:18;43767:6;43764:30;43761:2;;;43797:13;;:::i;:::-;43761:2;43877:4;43873:9;43866:4;43858:6;43854:17;43850:33;43842:41;;43938:4;43932;43928:15;43920:23;;43690:260;;;:::o;43956:327::-;;44108:18;44100:6;44097:30;44094:2;;;44130:13;;:::i;:::-;44094:2;44210:4;44206:9;44199:4;44191:6;44187:17;44183:33;44175:41;;44271:4;44265;44261:15;44253:23;;44023:260;;;:::o;44289:142::-;;44389:3;44381:11;;44419:4;44414:3;44410:14;44402:22;;44371:60;;;:::o;44437:132::-;;44527:3;44519:11;;44557:4;44552:3;44548:14;44540:22;;44509:60;;;:::o;44575:144::-;;44650:3;44642:11;;44673:3;44670:1;44663:14;44707:4;44704:1;44694:18;44686:26;;44632:87;;;:::o;44725:141::-;;44797:3;44789:11;;44820:3;44817:1;44810:14;44854:4;44851:1;44841:18;44833:26;;44779:87;;;:::o;44872:124::-;;44983:5;44977:12;44967:22;;44956:40;;;:::o;45002:114::-;;45103:5;45097:12;45087:22;;45076:40;;;:::o;45122:98::-;;45207:5;45201:12;45191:22;;45180:40;;;:::o;45226:99::-;;45312:5;45306:12;45296:22;;45285:40;;;:::o;45331:123::-;;45443:4;45438:3;45434:14;45426:22;;45416:38;;;:::o;45460:113::-;;45562:4;45557:3;45553:14;45545:22;;45535:38;;;:::o;45579:194::-;;45722:6;45717:3;45710:19;45762:4;45757:3;45753:14;45738:29;;45700:73;;;;:::o;45779:184::-;;45912:6;45907:3;45900:19;45952:4;45947:3;45943:14;45928:29;;45890:73;;;;:::o;45969:168::-;;46086:6;46081:3;46074:19;46126:4;46121:3;46117:14;46102:29;;46064:73;;;;:::o;46143:147::-;;46281:3;46266:18;;46256:34;;;;:::o;46296:159::-;;46404:6;46399:3;46392:19;46444:4;46439:3;46435:14;46420:29;;46382:73;;;;:::o;46461:169::-;;46579:6;46574:3;46567:19;46619:4;46614:3;46610:14;46595:29;;46557:73;;;;:::o;46636:148::-;;46775:3;46760:18;;46750:34;;;;:::o;46790:96::-;;46856:24;46874:5;46856:24;:::i;:::-;46845:35;;46835:51;;;:::o;46892:104::-;;46966:24;46984:5;46966:24;:::i;:::-;46955:35;;46945:51;;;:::o;47002:90::-;;47079:5;47072:13;47065:21;47054:32;;47044:48;;;:::o;47098:77::-;;47164:5;47153:16;;47143:32;;;:::o;47181:149::-;;47257:66;47250:5;47246:78;47235:89;;47225:105;;;:::o;47336:126::-;;47413:42;47406:5;47402:54;47391:65;;47381:81;;;:::o;47468:77::-;;47534:5;47523:16;;47513:32;;;:::o;47551:134::-;;47642:37;47673:5;47642:37;:::i;:::-;47629:50;;47619:66;;;:::o;47691:126::-;;47774:37;47805:5;47774:37;:::i;:::-;47761:50;;47751:66;;;:::o;47823:113::-;;47906:24;47924:5;47906:24;:::i;:::-;47893:37;;47883:53;;;:::o;47942:154::-;48026:6;48021:3;48016;48003:30;48088:1;48079:6;48074:3;48070:16;48063:27;47993:103;;;:::o;48102:307::-;48170:1;48180:113;48194:6;48191:1;48188:13;48180:113;;;48279:1;48274:3;48270:11;48264:18;48260:1;48255:3;48251:11;48244:39;48216:2;48213:1;48209:10;48204:15;;48180:113;;;48311:6;48308:1;48305:13;48302:2;;;48391:1;48382:6;48377:3;48373:16;48366:27;48302:2;48151:258;;;;:::o;48415:48::-;48448:9;48469:102;;48561:2;48557:7;48552:2;48545:5;48541:14;48537:28;48527:38;;48517:54;;;:::o;48577:122::-;48650:24;48668:5;48650:24;:::i;:::-;48643:5;48640:35;48630:2;;48689:1;48686;48679:12;48630:2;48620:79;:::o;48705:116::-;48775:21;48790:5;48775:21;:::i;:::-;48768:5;48765:32;48755:2;;48811:1;48808;48801:12;48755:2;48745:76;:::o;48827:122::-;48900:24;48918:5;48900:24;:::i;:::-;48893:5;48890:35;48880:2;;48939:1;48936;48929:12;48880:2;48870:79;:::o;48955:120::-;49027:23;49044:5;49027:23;:::i;:::-;49020:5;49017:34;49007:2;;49065:1;49062;49055:12;49007:2;48997:78;:::o;49081:122::-;49154:24;49172:5;49154:24;:::i;:::-;49147:5;49144:35;49134:2;;49193:1;49190;49183:12;49134:2;49124:79;:::o

Swarm Source

ipfs://23e0d9296e5e53b3405657bae85cbd6836737cc8467befe872e5204821adf2a6
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.