ETH Price: $3,495.04 (+2.79%)
Gas: 13 Gwei

Token

Pixel 0n1 (pixel0n1)
 

Overview

Max Total Supply

670 pixel0n1

Holders

222

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
15 pixel0n1
0xe838E2eB5ed076c6238208DCa068e12068ef7377
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:
pixel0n1scontract

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 2022-01-10
*/

// SPDX-License-Identifier: MIT

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 applition
 * 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;
    }
}



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




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



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



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



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




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 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 two unsigned integers, reverting on
     * 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: mul 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).

     */
    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.

     *
     * 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.

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



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


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



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.
     *

     */
    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.
     *

     */
    function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage))));
    }
}



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



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()')) == 0n18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0n18160ddd ^ 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,  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,  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 { }
}



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



/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value  whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value  whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value  whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 .
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows  to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;
    using Address for address;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *

     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *

     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *

     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *

     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

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



pragma solidity ^0.7.0;
pragma abicoder v2;


/**
 * @dev ERC721
*/
interface IP0n1 {
    function updateReward(address _from, address _to) external;
} 

contract pixel0n1scontract is ERC721, Ownable {
    using SafeMath for uint256;
    string public pixel0n1_PROVENANCE = "";
    uint256 public  pixel0n1Price =   20000000000000000; // 0.02ETH
    uint public constant MAX_pixel0n1_PURCHASE = 20;    
    uint256 public  MAX_pixel0n1s = 7777;
    uint256 public  MAX_FREEMINT = 600;    

    bool public MintSaleIsActive = true;

    IP0n1 public P0n1;      //P0n1 token
    mapping (address => uint256) public balanceTokens;

    constructor() ERC721("Pixel 0n1", "pixel0n1") { }
    
    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        msg.sender.transfer(balance);
    }    

    function Reserve(uint _amount, address _address) public onlyOwner {
         require(totalSupply()  + _amount <= MAX_pixel0n1s, "All tokens minted");

         for (uint i = 0; i < _amount; i++) {
            _safeMint(_address, totalSupply() + i);
            balanceTokens[_address]++;           
         }
     }
    
    function setMintPrice(uint price) external onlyOwner {
        pixel0n1Price = price;
    }
    
    function setMaxFreeMint(uint _MAX_FREEMINT) external onlyOwner {
        MAX_FREEMINT = _MAX_FREEMINT;
    }   

    function setMaxpixel0n1s(uint maxpixel0n1) external onlyOwner {
        MAX_pixel0n1s = maxpixel0n1;
    }

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

    function setBaseURI(string memory baseURI) public onlyOwner {
        _setBaseURI(baseURI);
    } 
	
    function flipMintSaleState() public onlyOwner {
        MintSaleIsActive = !MintSaleIsActive;
    }

	function setP0n1TokenContract(address P0n1Address) external onlyOwner {
        P0n1 = IP0n1(P0n1Address);
    }
	    
    function mintpixel0n1s(uint numberOfTokens) public payable {
        require(MintSaleIsActive, "Sale must be active to mint pixel0n1");
        require(numberOfTokens > 0 && numberOfTokens <= MAX_pixel0n1_PURCHASE, "Can only mint 20 pixel0n1 at a time");
        require(totalSupply() + numberOfTokens <= MAX_pixel0n1s, "Purchase would exceed max supply of pixel0n1s");
        
        if(totalSupply()> MAX_FREEMINT) {
            require(msg.value >= pixel0n1Price.mul(numberOfTokens), "Ether value sent is not correct");
        }

        for (uint i = 0; i < numberOfTokens; i++) {
            if (totalSupply() < MAX_pixel0n1s) {
            _safeMint(msg.sender, totalSupply());
            balanceTokens[msg.sender]++;
            }
        }
   }  

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

  function transferFrom(address from, address to, uint256 tokenId) public override {
        if (tokenId < MAX_pixel0n1s) {
            P0n1.updateReward(from, to);
            balanceTokens[from]--;
            balanceTokens[to]++;
        }
        ERC721.transferFrom(from, to, tokenId);
    }

  function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override {
        if (tokenId < MAX_pixel0n1s) {
            P0n1.updateReward(from, to);
            balanceTokens[from]--;
            balanceTokens[to]++;
        }
        ERC721.safeTransferFrom(from, to, tokenId, data);
    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREEMINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_pixel0n1_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_pixel0n1s","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MintSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"P0n1","outputs":[{"internalType":"contract IP0n1","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipMintSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintpixel0n1s","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":"pixel0n1Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pixel0n1_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_FREEMINT","type":"uint256"}],"name":"setMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxpixel0n1","type":"uint256"}],"name":"setMaxpixel0n1s","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"P0n1Address","type":"address"}],"name":"setP0n1TokenContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600b90805190602001906200002b92919062000303565b5066470de4df820000600c55611e61600d55610258600e556001600f60006101000a81548160ff0219169083151502179055503480156200006b57600080fd5b506040518060400160405280600981526020017f506978656c20306e3100000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f706978656c306e31000000000000000000000000000000000000000000000000815250620000f06301ffc9a760e01b6200022360201b60201c565b81600690805190602001906200010892919062000303565b5080600790805190602001906200012192919062000303565b506200013a6380ac58cd60e01b6200022360201b60201c565b62000152635b5e139f60e01b6200022360201b60201c565b6200016a63780e9d6360e01b6200022360201b60201c565b505060006200017e620002fb60201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200042e565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614156200028f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028690620003fb565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200033b576000855562000387565b82601f106200035657805160ff191683800117855562000387565b8280016001018555821562000387579182015b828111156200038657825182559160200191906001019062000369565b5b5090506200039691906200039a565b5090565b5b80821115620003b55760008160009055506001016200039b565b5090565b6000620003c8601c836200041d565b91507f4552433136353a20696e76616c696420696e74657266616365206964000000006000830152602082019050919050565b600060208201905081810360008301526200041681620003b9565b9050919050565b600082825260208201905092915050565b614966806200043e6000396000f3fe6080604052600436106102305760003560e01c80636352211e1161012e578063a4b5a826116100ab578063e3c820a21161006f578063e3c820a21461081a578063e985e9c514610845578063f2fde38b14610882578063f4a0a528146108ab578063f9b4527a146108d457610230565b8063a4b5a82614610749578063a66bcb8c14610774578063b88d4fde1461078b578063c87b56dd146107b4578063e07b37f6146107f157610230565b8063742a4c9b116100f2578063742a4c9b146106645780638462151c1461068d5780638da5cb5b146106ca57806395d89b41146106f5578063a22cb4651461072057610230565b80636352211e1461057d5780636c0360eb146105ba57806370a08231146105e5578063715018a6146106225780637420aa9a1461063957610230565b80632a3800e4116101bc57806342842e0e1161018057806342842e0e1461049a5780634f6ccce7146104c357806355f804b3146105005780635ac904c7146105295780635bb32d2d1461055457610230565b80632a3800e4146103c75780632b4c6f96146103f25780632f745c591461041d5780633ccfd60b1461045a57806341d4ad791461047157610230565b8063095ea7b311610203578063095ea7b314610305578063109695231461032e57806318160ddd146103575780631e93c8a31461038257806323b872dd1461039e57610230565b806301ffc9a714610235578063020039321461027257806306fdde031461029d578063081812fc146102c8575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613680565b610911565b60405161026991906142cf565b60405180910390f35b34801561027e57600080fd5b50610287610978565b6040516102949190614647565b60405180910390f35b3480156102a957600080fd5b506102b261097e565b6040516102bf9190614305565b60405180910390f35b3480156102d457600080fd5b506102ef60048036038101906102ea9190613713565b610a20565b6040516102fc919061421d565b60405180910390f35b34801561031157600080fd5b5061032c60048036038101906103279190613644565b610aa5565b005b34801561033a57600080fd5b50610355600480360381019061035091906136d2565b610bbd565b005b34801561036357600080fd5b5061036c610c53565b6040516103799190614647565b60405180910390f35b61039c60048036038101906103979190613713565b610c64565b005b3480156103aa57600080fd5b506103c560048036038101906103c0919061353e565b610e48565b005b3480156103d357600080fd5b506103dc610f91565b6040516103e991906142cf565b60405180910390f35b3480156103fe57600080fd5b50610407610fa4565b6040516104149190614305565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f9190613644565b611042565b6040516104519190614647565b60405180910390f35b34801561046657600080fd5b5061046f61109d565b005b34801561047d57600080fd5b50610498600480360381019061049391906134d9565b611168565b005b3480156104a657600080fd5b506104c160048036038101906104bc919061353e565b611228565b005b3480156104cf57600080fd5b506104ea60048036038101906104e59190613713565b611248565b6040516104f79190614647565b60405180910390f35b34801561050c57600080fd5b50610527600480360381019061052291906136d2565b61126b565b005b34801561053557600080fd5b5061053e6112f3565b60405161054b9190614647565b60405180910390f35b34801561056057600080fd5b5061057b60048036038101906105769190613713565b6112f9565b005b34801561058957600080fd5b506105a4600480360381019061059f9190613713565b61137f565b6040516105b1919061421d565b60405180910390f35b3480156105c657600080fd5b506105cf6113b6565b6040516105dc9190614305565b60405180910390f35b3480156105f157600080fd5b5061060c600480360381019061060791906134d9565b611458565b6040516106199190614647565b60405180910390f35b34801561062e57600080fd5b50610637611517565b005b34801561064557600080fd5b5061064e611654565b60405161065b91906142ea565b60405180910390f35b34801561067057600080fd5b5061068b60048036038101906106869190613713565b61167a565b005b34801561069957600080fd5b506106b460048036038101906106af91906134d9565b611700565b6040516106c191906142ad565b60405180910390f35b3480156106d657600080fd5b506106df6117f9565b6040516106ec919061421d565b60405180910390f35b34801561070157600080fd5b5061070a611823565b6040516107179190614305565b60405180910390f35b34801561072c57600080fd5b5061074760048036038101906107429190613608565b6118c5565b005b34801561075557600080fd5b5061075e611a46565b60405161076b9190614647565b60405180910390f35b34801561078057600080fd5b50610789611a4b565b005b34801561079757600080fd5b506107b260048036038101906107ad919061358d565b611af3565b005b3480156107c057600080fd5b506107db60048036038101906107d69190613713565b611c3e565b6040516107e89190614305565b60405180910390f35b3480156107fd57600080fd5b506108186004803603810190610813919061373c565b611dc1565b005b34801561082657600080fd5b5061082f611f0a565b60405161083c9190614647565b60405180910390f35b34801561085157600080fd5b5061086c60048036038101906108679190613502565b611f10565b60405161087991906142cf565b60405180910390f35b34801561088e57600080fd5b506108a960048036038101906108a491906134d9565b611fa4565b005b3480156108b757600080fd5b506108d260048036038101906108cd9190613713565b612150565b005b3480156108e057600080fd5b506108fb60048036038101906108f691906134d9565b6121d6565b6040516109089190614647565b60405180910390f35b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b600c5481565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610a165780601f106109eb57610100808354040283529160200191610a16565b820191906000526020600020905b8154815290600101906020018083116109f957829003601f168201915b5050505050905090565b6000610a2b826121ee565b610a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6190614507565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ab08261137f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1890614587565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b4061220b565b73ffffffffffffffffffffffffffffffffffffffff161480610b6f5750610b6e81610b6961220b565b611f10565b5b610bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba590614467565b60405180910390fd5b610bb88383612213565b505050565b610bc561220b565b73ffffffffffffffffffffffffffffffffffffffff16610be36117f9565b73ffffffffffffffffffffffffffffffffffffffff1614610c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3090614527565b60405180910390fd5b80600b9080519060200190610c4f9291906132f5565b5050565b6000610c5f60026122cc565b905090565b600f60009054906101000a900460ff16610cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caa90614627565b60405180910390fd5b600081118015610cc4575060148111155b610d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfa906144a7565b60405180910390fd5b600d5481610d0f610c53565b011115610d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4890614607565b60405180910390fd5b600e54610d5c610c53565b1115610dba57610d7781600c546122e190919063ffffffff16565b341015610db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db090614407565b60405180910390fd5b5b60005b81811015610e4457600d54610dd0610c53565b1015610e3757610de733610de2610c53565b612351565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919060010191905055505b8080600101915050610dbd565b5050565b600d54811015610f8157600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d230af3a84846040518363ffffffff1660e01b8152600401610eaf929190614284565b600060405180830381600087803b158015610ec957600080fd5b505af1158015610edd573d6000803e3d6000fd5b50505050601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190600190039190505550601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919060010191905055505b610f8c83838361236f565b505050565b600f60009054906101000a900460ff1681565b600b8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561103a5780601f1061100f5761010080835404028352916020019161103a565b820191906000526020600020905b81548152906001019060200180831161101d57829003601f168201915b505050505081565b600061109582600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206123cf90919063ffffffff16565b905092915050565b6110a561220b565b73ffffffffffffffffffffffffffffffffffffffff166110c36117f9565b73ffffffffffffffffffffffffffffffffffffffff1614611119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111090614527565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611164573d6000803e3d6000fd5b5050565b61117061220b565b73ffffffffffffffffffffffffffffffffffffffff1661118e6117f9565b73ffffffffffffffffffffffffffffffffffffffff16146111e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111db90614527565b60405180910390fd5b80600f60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61124383838360405180602001604052806000815250611af3565b505050565b60008061125f8360026123e990919063ffffffff16565b50905080915050919050565b61127361220b565b73ffffffffffffffffffffffffffffffffffffffff166112916117f9565b73ffffffffffffffffffffffffffffffffffffffff16146112e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112de90614527565b60405180910390fd5b6112f081612415565b50565b600d5481565b61130161220b565b73ffffffffffffffffffffffffffffffffffffffff1661131f6117f9565b73ffffffffffffffffffffffffffffffffffffffff1614611375576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136c90614527565b60405180910390fd5b80600d8190555050565b60006113af8260405180606001604052806029815260200161490860299139600261242f9092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561144e5780601f106114235761010080835404028352916020019161144e565b820191906000526020600020905b81548152906001019060200180831161143157829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c090614487565b60405180910390fd5b611510600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061244e565b9050919050565b61151f61220b565b73ffffffffffffffffffffffffffffffffffffffff1661153d6117f9565b73ffffffffffffffffffffffffffffffffffffffff1614611593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158a90614527565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61168261220b565b73ffffffffffffffffffffffffffffffffffffffff166116a06117f9565b73ffffffffffffffffffffffffffffffffffffffff16146116f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ed90614527565b60405180910390fd5b80600e8190555050565b6060600061170d83611458565b9050600081141561176857600067ffffffffffffffff8111801561173057600080fd5b5060405190808252806020026020018201604052801561175f5781602001602082028036833780820191505090505b509150506117f4565b60008167ffffffffffffffff8111801561178157600080fd5b506040519080825280602002602001820160405280156117b05781602001602082028036833780820191505090505b50905060005b828110156117ed576117c88582611042565b8282815181106117d457fe5b60200260200101818152505080806001019150506117b6565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118bb5780601f10611890576101008083540402835291602001916118bb565b820191906000526020600020905b81548152906001019060200180831161189e57829003601f168201915b5050505050905090565b6118cd61220b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561193b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611932906143e7565b60405180910390fd5b806005600061194861220b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119f561220b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a3a91906142cf565b60405180910390a35050565b601481565b611a5361220b565b73ffffffffffffffffffffffffffffffffffffffff16611a716117f9565b73ffffffffffffffffffffffffffffffffffffffff1614611ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abe90614527565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b600d54821015611c2c57600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d230af3a85856040518363ffffffff1660e01b8152600401611b5a929190614284565b600060405180830381600087803b158015611b7457600080fd5b505af1158015611b88573d6000803e3d6000fd5b50505050601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190600190039190505550601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919060010191905055505b611c3884848484612463565b50505050565b6060611c49826121ee565b611c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7f90614567565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611d315780601f10611d0657610100808354040283529160200191611d31565b820191906000526020600020905b815481529060010190602001808311611d1457829003601f168201915b505050505090506000611d426113b6565b9050600081511415611d58578192505050611dbc565b600082511115611d8d578082604051602001611d759291906141f9565b60405160208183030381529060405292505050611dbc565b80611d97856124c5565b604051602001611da89291906141f9565b604051602081830303815290604052925050505b919050565b611dc961220b565b73ffffffffffffffffffffffffffffffffffffffff16611de76117f9565b73ffffffffffffffffffffffffffffffffffffffff1614611e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3490614527565b60405180910390fd5b600d5482611e49610c53565b011115611e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8290614387565b60405180910390fd5b60005b82811015611f0557611ea98282611ea3610c53565b01612351565b601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919060010191905055508080600101915050611e8e565b505050565b600e5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611fac61220b565b73ffffffffffffffffffffffffffffffffffffffff16611fca6117f9565b73ffffffffffffffffffffffffffffffffffffffff1614612020576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201790614527565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612090576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208790614367565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61215861220b565b73ffffffffffffffffffffffffffffffffffffffff166121766117f9565b73ffffffffffffffffffffffffffffffffffffffff16146121cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c390614527565b60405180910390fd5b80600c8190555050565b60106020528060005260406000206000915090505481565b600061220482600261260c90919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166122868361137f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006122da82600001612626565b9050919050565b6000808314156122f4576000905061234b565b600082840290508284828161230557fe5b0414612346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233d906145c7565b60405180910390fd5b809150505b92915050565b61236b828260405180602001604052806000815250612637565b5050565b61238061237a61220b565b82612692565b6123bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b6906145a7565b60405180910390fd5b6123ca838383612770565b505050565b60006123de8360000183612987565b60001c905092915050565b6000806000806123fc86600001866129f4565b915091508160001c8160001c9350935050509250929050565b806009908051906020019061242b9291906132f5565b5050565b6000612442846000018460001b84612a77565b60001c90509392505050565b600061245c82600001612b08565b9050919050565b61247461246e61220b565b83612692565b6124b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124aa906145a7565b60405180910390fd5b6124bf84848484612b19565b50505050565b6060600082141561250d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612607565b600082905060005b60008214612537578080600101915050600a828161252f57fe5b049150612515565b60008167ffffffffffffffff8111801561255057600080fd5b506040519080825280601f01601f1916602001820160405280156125835781602001600182028036833780820191505090505b50905060006001830390508593505b600084146125ff57600a84816125a457fe5b0660300160f81b828280600190039350815181106125be57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a84816125f757fe5b049350612592565b819450505050505b919050565b600061261e836000018360001b612b75565b905092915050565b600081600001805490509050919050565b6126418383612b98565b61264e6000848484612d26565b61268d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268490614347565b60405180910390fd5b505050565b600061269d826121ee565b6126dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d390614447565b60405180910390fd5b60006126e78361137f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061275657508373ffffffffffffffffffffffffffffffffffffffff1661273e84610a20565b73ffffffffffffffffffffffffffffffffffffffff16145b8061276757506127668185611f10565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166127908261137f565b73ffffffffffffffffffffffffffffffffffffffff16146127e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127dd90614547565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284d906143c7565b60405180910390fd5b612861838383612e8a565b61286c600082612213565b6128bd81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612e8f90919063ffffffff16565b5061290f81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612ea990919063ffffffff16565b5061292681836002612ec39092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000818360000180549050116129d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c990614327565b60405180910390fd5b8260000182815481106129e157fe5b9060005260206000200154905092915050565b60008082846000018054905011612a40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a37906144c7565b60405180910390fd5b6000846000018481548110612a5157fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad09190614305565b60405180910390fd5b50846000016001820381548110612aec57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b612b24848484612770565b612b3084848484612d26565b612b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6690614347565b60405180910390fd5b50505050565b600080836001016000848152602001908152602001600020541415905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bff906144e7565b60405180910390fd5b612c11816121ee565b15612c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c48906143a7565b60405180910390fd5b612c5d60008383612e8a565b612cae81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612ea990919063ffffffff16565b50612cc581836002612ec39092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000612d478473ffffffffffffffffffffffffffffffffffffffff16612ef8565b612d545760019050612e82565b6000612e1b63150b7a0260e01b612d6961220b565b888787604051602401612d7f9493929190614238565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040518060600160405280603281526020016148d6603291398773ffffffffffffffffffffffffffffffffffffffff16612f0b9092919063ffffffff16565b9050600081806020019051810190612e3391906136a9565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b505050565b6000612ea1836000018360001b612f23565b905092915050565b6000612ebb836000018360001b61300b565b905092915050565b6000612eef846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b61307b565b90509392505050565b600080823b905060008111915050919050565b6060612f1a8484600085613157565b90509392505050565b60008083600101600084815260200190815260200160002054905060008114612fff5760006001820390506000600186600001805490500390506000866000018281548110612f6e57fe5b9060005260206000200154905080876000018481548110612f8b57fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612fc357fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050613005565b60009150505b92915050565b6000613017838361326b565b613070578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050613075565b600090505b92915050565b600080846001016000858152602001908152602001600020549050600081141561312257846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050613150565b8285600001600183038154811061313557fe5b90600052602060002090600202016001018190555060009150505b9392505050565b60608247101561319c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319390614427565b60405180910390fd5b6131a585612ef8565b6131e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131db906145e7565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161320d91906141e2565b60006040518083038185875af1925050503d806000811461324a576040519150601f19603f3d011682016040523d82523d6000602084013e61324f565b606091505b509150915061325f82828661328e565b92505050949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b6060831561329e578290506132ee565b6000835111156132b15782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e59190614305565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261332b5760008555613372565b82601f1061334457805160ff1916838001178555613372565b82800160010185558215613372579182015b82811115613371578251825591602001919060010190613356565b5b50905061337f9190613383565b5090565b5b8082111561339c576000816000905550600101613384565b5090565b60006133b36133ae84614693565b614662565b9050828152602081018484840111156133cb57600080fd5b6133d6848285614824565b509392505050565b60006133f16133ec846146c3565b614662565b90508281526020810184848401111561340957600080fd5b613414848285614824565b509392505050565b60008135905061342b81614879565b92915050565b60008135905061344081614890565b92915050565b600081359050613455816148a7565b92915050565b60008151905061346a816148a7565b92915050565b600082601f83011261348157600080fd5b81356134918482602086016133a0565b91505092915050565b600082601f8301126134ab57600080fd5b81356134bb8482602086016133de565b91505092915050565b6000813590506134d3816148be565b92915050565b6000602082840312156134eb57600080fd5b60006134f98482850161341c565b91505092915050565b6000806040838503121561351557600080fd5b60006135238582860161341c565b92505060206135348582860161341c565b9150509250929050565b60008060006060848603121561355357600080fd5b60006135618682870161341c565b93505060206135728682870161341c565b9250506040613583868287016134c4565b9150509250925092565b600080600080608085870312156135a357600080fd5b60006135b18782880161341c565b94505060206135c28782880161341c565b93505060406135d3878288016134c4565b925050606085013567ffffffffffffffff8111156135f057600080fd5b6135fc87828801613470565b91505092959194509250565b6000806040838503121561361b57600080fd5b60006136298582860161341c565b925050602061363a85828601613431565b9150509250929050565b6000806040838503121561365757600080fd5b60006136658582860161341c565b9250506020613676858286016134c4565b9150509250929050565b60006020828403121561369257600080fd5b60006136a084828501613446565b91505092915050565b6000602082840312156136bb57600080fd5b60006136c98482850161345b565b91505092915050565b6000602082840312156136e457600080fd5b600082013567ffffffffffffffff8111156136fe57600080fd5b61370a8482850161349a565b91505092915050565b60006020828403121561372557600080fd5b6000613733848285016134c4565b91505092915050565b6000806040838503121561374f57600080fd5b600061375d858286016134c4565b925050602061376e8582860161341c565b9150509250929050565b600061378483836141c4565b60208301905092915050565b6137998161478c565b82525050565b6137a88161477a565b82525050565b60006137b982614703565b6137c38185614731565b93506137ce836146f3565b8060005b838110156137ff5781516137e68882613778565b97506137f183614724565b9250506001810190506137d2565b5085935050505092915050565b6138158161479e565b82525050565b60006138268261470e565b6138308185614742565b9350613840818560208601614833565b61384981614868565b840191505092915050565b600061385f8261470e565b6138698185614753565b9350613879818560208601614833565b80840191505092915050565b61388e81614800565b82525050565b600061389f82614719565b6138a9818561475e565b93506138b9818560208601614833565b6138c281614868565b840191505092915050565b60006138d882614719565b6138e2818561476f565b93506138f2818560208601614833565b80840191505092915050565b600061390b60228361475e565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061397160328361475e565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006139d760268361475e565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a3d60118361475e565b91507f416c6c20746f6b656e73206d696e7465640000000000000000000000000000006000830152602082019050919050565b6000613a7d601c8361475e565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613abd60248361475e565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b2360198361475e565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613b63601f8361475e565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000613ba360268361475e565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c09602c8361475e565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613c6f60388361475e565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613cd5602a8361475e565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d3b60238361475e565b91507f43616e206f6e6c79206d696e7420323020706978656c306e312061742061207460008301527f696d6500000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613da160228361475e565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e0760208361475e565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613e47602c8361475e565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613ead60208361475e565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613eed60298361475e565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f53602f8361475e565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613fb960218361475e565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061401f60318361475e565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061408560168361475e565b91507f536166654d6174683a206d756c206f766572666c6f77000000000000000000006000830152602082019050919050565b60006140c5601d8361475e565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b6000614105602d8361475e565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f6620706978656c306e3173000000000000000000000000000000000000006020830152604082019050919050565b600061416b60248361475e565b91507f53616c65206d7573742062652061637469766520746f206d696e74207069786560008301527f6c306e31000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6141cd816147f6565b82525050565b6141dc816147f6565b82525050565b60006141ee8284613854565b915081905092915050565b600061420582856138cd565b915061421182846138cd565b91508190509392505050565b6000602082019050614232600083018461379f565b92915050565b600060808201905061424d6000830187613790565b61425a602083018661379f565b61426760408301856141d3565b8181036060830152614279818461381b565b905095945050505050565b6000604082019050614299600083018561379f565b6142a6602083018461379f565b9392505050565b600060208201905081810360008301526142c781846137ae565b905092915050565b60006020820190506142e4600083018461380c565b92915050565b60006020820190506142ff6000830184613885565b92915050565b6000602082019050818103600083015261431f8184613894565b905092915050565b60006020820190508181036000830152614340816138fe565b9050919050565b6000602082019050818103600083015261436081613964565b9050919050565b60006020820190508181036000830152614380816139ca565b9050919050565b600060208201905081810360008301526143a081613a30565b9050919050565b600060208201905081810360008301526143c081613a70565b9050919050565b600060208201905081810360008301526143e081613ab0565b9050919050565b6000602082019050818103600083015261440081613b16565b9050919050565b6000602082019050818103600083015261442081613b56565b9050919050565b6000602082019050818103600083015261444081613b96565b9050919050565b6000602082019050818103600083015261446081613bfc565b9050919050565b6000602082019050818103600083015261448081613c62565b9050919050565b600060208201905081810360008301526144a081613cc8565b9050919050565b600060208201905081810360008301526144c081613d2e565b9050919050565b600060208201905081810360008301526144e081613d94565b9050919050565b6000602082019050818103600083015261450081613dfa565b9050919050565b6000602082019050818103600083015261452081613e3a565b9050919050565b6000602082019050818103600083015261454081613ea0565b9050919050565b6000602082019050818103600083015261456081613ee0565b9050919050565b6000602082019050818103600083015261458081613f46565b9050919050565b600060208201905081810360008301526145a081613fac565b9050919050565b600060208201905081810360008301526145c081614012565b9050919050565b600060208201905081810360008301526145e081614078565b9050919050565b60006020820190508181036000830152614600816140b8565b9050919050565b60006020820190508181036000830152614620816140f8565b9050919050565b600060208201905081810360008301526146408161415e565b9050919050565b600060208201905061465c60008301846141d3565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561468957614688614866565b5b8060405250919050565b600067ffffffffffffffff8211156146ae576146ad614866565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156146de576146dd614866565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614785826147d6565b9050919050565b6000614797826147d6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061480b82614812565b9050919050565b600061481d826147d6565b9050919050565b82818337600083830152505050565b60005b83811015614851578082015181840152602081019050614836565b83811115614860576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b6148828161477a565b811461488d57600080fd5b50565b6148998161479e565b81146148a457600080fd5b50565b6148b0816147aa565b81146148bb57600080fd5b50565b6148c7816147f6565b81146148d257600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220e3c32f3753d03e90d5fe07bf472d4e33e7488f2b31f6e6a2bff54471cd6e566964736f6c63430007060033

Deployed Bytecode

0x6080604052600436106102305760003560e01c80636352211e1161012e578063a4b5a826116100ab578063e3c820a21161006f578063e3c820a21461081a578063e985e9c514610845578063f2fde38b14610882578063f4a0a528146108ab578063f9b4527a146108d457610230565b8063a4b5a82614610749578063a66bcb8c14610774578063b88d4fde1461078b578063c87b56dd146107b4578063e07b37f6146107f157610230565b8063742a4c9b116100f2578063742a4c9b146106645780638462151c1461068d5780638da5cb5b146106ca57806395d89b41146106f5578063a22cb4651461072057610230565b80636352211e1461057d5780636c0360eb146105ba57806370a08231146105e5578063715018a6146106225780637420aa9a1461063957610230565b80632a3800e4116101bc57806342842e0e1161018057806342842e0e1461049a5780634f6ccce7146104c357806355f804b3146105005780635ac904c7146105295780635bb32d2d1461055457610230565b80632a3800e4146103c75780632b4c6f96146103f25780632f745c591461041d5780633ccfd60b1461045a57806341d4ad791461047157610230565b8063095ea7b311610203578063095ea7b314610305578063109695231461032e57806318160ddd146103575780631e93c8a31461038257806323b872dd1461039e57610230565b806301ffc9a714610235578063020039321461027257806306fdde031461029d578063081812fc146102c8575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613680565b610911565b60405161026991906142cf565b60405180910390f35b34801561027e57600080fd5b50610287610978565b6040516102949190614647565b60405180910390f35b3480156102a957600080fd5b506102b261097e565b6040516102bf9190614305565b60405180910390f35b3480156102d457600080fd5b506102ef60048036038101906102ea9190613713565b610a20565b6040516102fc919061421d565b60405180910390f35b34801561031157600080fd5b5061032c60048036038101906103279190613644565b610aa5565b005b34801561033a57600080fd5b50610355600480360381019061035091906136d2565b610bbd565b005b34801561036357600080fd5b5061036c610c53565b6040516103799190614647565b60405180910390f35b61039c60048036038101906103979190613713565b610c64565b005b3480156103aa57600080fd5b506103c560048036038101906103c0919061353e565b610e48565b005b3480156103d357600080fd5b506103dc610f91565b6040516103e991906142cf565b60405180910390f35b3480156103fe57600080fd5b50610407610fa4565b6040516104149190614305565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f9190613644565b611042565b6040516104519190614647565b60405180910390f35b34801561046657600080fd5b5061046f61109d565b005b34801561047d57600080fd5b50610498600480360381019061049391906134d9565b611168565b005b3480156104a657600080fd5b506104c160048036038101906104bc919061353e565b611228565b005b3480156104cf57600080fd5b506104ea60048036038101906104e59190613713565b611248565b6040516104f79190614647565b60405180910390f35b34801561050c57600080fd5b50610527600480360381019061052291906136d2565b61126b565b005b34801561053557600080fd5b5061053e6112f3565b60405161054b9190614647565b60405180910390f35b34801561056057600080fd5b5061057b60048036038101906105769190613713565b6112f9565b005b34801561058957600080fd5b506105a4600480360381019061059f9190613713565b61137f565b6040516105b1919061421d565b60405180910390f35b3480156105c657600080fd5b506105cf6113b6565b6040516105dc9190614305565b60405180910390f35b3480156105f157600080fd5b5061060c600480360381019061060791906134d9565b611458565b6040516106199190614647565b60405180910390f35b34801561062e57600080fd5b50610637611517565b005b34801561064557600080fd5b5061064e611654565b60405161065b91906142ea565b60405180910390f35b34801561067057600080fd5b5061068b60048036038101906106869190613713565b61167a565b005b34801561069957600080fd5b506106b460048036038101906106af91906134d9565b611700565b6040516106c191906142ad565b60405180910390f35b3480156106d657600080fd5b506106df6117f9565b6040516106ec919061421d565b60405180910390f35b34801561070157600080fd5b5061070a611823565b6040516107179190614305565b60405180910390f35b34801561072c57600080fd5b5061074760048036038101906107429190613608565b6118c5565b005b34801561075557600080fd5b5061075e611a46565b60405161076b9190614647565b60405180910390f35b34801561078057600080fd5b50610789611a4b565b005b34801561079757600080fd5b506107b260048036038101906107ad919061358d565b611af3565b005b3480156107c057600080fd5b506107db60048036038101906107d69190613713565b611c3e565b6040516107e89190614305565b60405180910390f35b3480156107fd57600080fd5b506108186004803603810190610813919061373c565b611dc1565b005b34801561082657600080fd5b5061082f611f0a565b60405161083c9190614647565b60405180910390f35b34801561085157600080fd5b5061086c60048036038101906108679190613502565b611f10565b60405161087991906142cf565b60405180910390f35b34801561088e57600080fd5b506108a960048036038101906108a491906134d9565b611fa4565b005b3480156108b757600080fd5b506108d260048036038101906108cd9190613713565b612150565b005b3480156108e057600080fd5b506108fb60048036038101906108f691906134d9565b6121d6565b6040516109089190614647565b60405180910390f35b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b600c5481565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610a165780601f106109eb57610100808354040283529160200191610a16565b820191906000526020600020905b8154815290600101906020018083116109f957829003601f168201915b5050505050905090565b6000610a2b826121ee565b610a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6190614507565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ab08261137f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1890614587565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b4061220b565b73ffffffffffffffffffffffffffffffffffffffff161480610b6f5750610b6e81610b6961220b565b611f10565b5b610bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba590614467565b60405180910390fd5b610bb88383612213565b505050565b610bc561220b565b73ffffffffffffffffffffffffffffffffffffffff16610be36117f9565b73ffffffffffffffffffffffffffffffffffffffff1614610c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3090614527565b60405180910390fd5b80600b9080519060200190610c4f9291906132f5565b5050565b6000610c5f60026122cc565b905090565b600f60009054906101000a900460ff16610cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caa90614627565b60405180910390fd5b600081118015610cc4575060148111155b610d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfa906144a7565b60405180910390fd5b600d5481610d0f610c53565b011115610d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4890614607565b60405180910390fd5b600e54610d5c610c53565b1115610dba57610d7781600c546122e190919063ffffffff16565b341015610db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db090614407565b60405180910390fd5b5b60005b81811015610e4457600d54610dd0610c53565b1015610e3757610de733610de2610c53565b612351565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919060010191905055505b8080600101915050610dbd565b5050565b600d54811015610f8157600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d230af3a84846040518363ffffffff1660e01b8152600401610eaf929190614284565b600060405180830381600087803b158015610ec957600080fd5b505af1158015610edd573d6000803e3d6000fd5b50505050601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190600190039190505550601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919060010191905055505b610f8c83838361236f565b505050565b600f60009054906101000a900460ff1681565b600b8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561103a5780601f1061100f5761010080835404028352916020019161103a565b820191906000526020600020905b81548152906001019060200180831161101d57829003601f168201915b505050505081565b600061109582600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206123cf90919063ffffffff16565b905092915050565b6110a561220b565b73ffffffffffffffffffffffffffffffffffffffff166110c36117f9565b73ffffffffffffffffffffffffffffffffffffffff1614611119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111090614527565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611164573d6000803e3d6000fd5b5050565b61117061220b565b73ffffffffffffffffffffffffffffffffffffffff1661118e6117f9565b73ffffffffffffffffffffffffffffffffffffffff16146111e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111db90614527565b60405180910390fd5b80600f60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61124383838360405180602001604052806000815250611af3565b505050565b60008061125f8360026123e990919063ffffffff16565b50905080915050919050565b61127361220b565b73ffffffffffffffffffffffffffffffffffffffff166112916117f9565b73ffffffffffffffffffffffffffffffffffffffff16146112e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112de90614527565b60405180910390fd5b6112f081612415565b50565b600d5481565b61130161220b565b73ffffffffffffffffffffffffffffffffffffffff1661131f6117f9565b73ffffffffffffffffffffffffffffffffffffffff1614611375576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136c90614527565b60405180910390fd5b80600d8190555050565b60006113af8260405180606001604052806029815260200161490860299139600261242f9092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561144e5780601f106114235761010080835404028352916020019161144e565b820191906000526020600020905b81548152906001019060200180831161143157829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c090614487565b60405180910390fd5b611510600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061244e565b9050919050565b61151f61220b565b73ffffffffffffffffffffffffffffffffffffffff1661153d6117f9565b73ffffffffffffffffffffffffffffffffffffffff1614611593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158a90614527565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61168261220b565b73ffffffffffffffffffffffffffffffffffffffff166116a06117f9565b73ffffffffffffffffffffffffffffffffffffffff16146116f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ed90614527565b60405180910390fd5b80600e8190555050565b6060600061170d83611458565b9050600081141561176857600067ffffffffffffffff8111801561173057600080fd5b5060405190808252806020026020018201604052801561175f5781602001602082028036833780820191505090505b509150506117f4565b60008167ffffffffffffffff8111801561178157600080fd5b506040519080825280602002602001820160405280156117b05781602001602082028036833780820191505090505b50905060005b828110156117ed576117c88582611042565b8282815181106117d457fe5b60200260200101818152505080806001019150506117b6565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118bb5780601f10611890576101008083540402835291602001916118bb565b820191906000526020600020905b81548152906001019060200180831161189e57829003601f168201915b5050505050905090565b6118cd61220b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561193b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611932906143e7565b60405180910390fd5b806005600061194861220b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119f561220b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a3a91906142cf565b60405180910390a35050565b601481565b611a5361220b565b73ffffffffffffffffffffffffffffffffffffffff16611a716117f9565b73ffffffffffffffffffffffffffffffffffffffff1614611ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abe90614527565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b600d54821015611c2c57600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d230af3a85856040518363ffffffff1660e01b8152600401611b5a929190614284565b600060405180830381600087803b158015611b7457600080fd5b505af1158015611b88573d6000803e3d6000fd5b50505050601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190600190039190505550601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919060010191905055505b611c3884848484612463565b50505050565b6060611c49826121ee565b611c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7f90614567565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611d315780601f10611d0657610100808354040283529160200191611d31565b820191906000526020600020905b815481529060010190602001808311611d1457829003601f168201915b505050505090506000611d426113b6565b9050600081511415611d58578192505050611dbc565b600082511115611d8d578082604051602001611d759291906141f9565b60405160208183030381529060405292505050611dbc565b80611d97856124c5565b604051602001611da89291906141f9565b604051602081830303815290604052925050505b919050565b611dc961220b565b73ffffffffffffffffffffffffffffffffffffffff16611de76117f9565b73ffffffffffffffffffffffffffffffffffffffff1614611e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3490614527565b60405180910390fd5b600d5482611e49610c53565b011115611e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8290614387565b60405180910390fd5b60005b82811015611f0557611ea98282611ea3610c53565b01612351565b601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919060010191905055508080600101915050611e8e565b505050565b600e5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611fac61220b565b73ffffffffffffffffffffffffffffffffffffffff16611fca6117f9565b73ffffffffffffffffffffffffffffffffffffffff1614612020576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201790614527565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612090576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208790614367565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61215861220b565b73ffffffffffffffffffffffffffffffffffffffff166121766117f9565b73ffffffffffffffffffffffffffffffffffffffff16146121cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c390614527565b60405180910390fd5b80600c8190555050565b60106020528060005260406000206000915090505481565b600061220482600261260c90919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166122868361137f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006122da82600001612626565b9050919050565b6000808314156122f4576000905061234b565b600082840290508284828161230557fe5b0414612346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233d906145c7565b60405180910390fd5b809150505b92915050565b61236b828260405180602001604052806000815250612637565b5050565b61238061237a61220b565b82612692565b6123bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b6906145a7565b60405180910390fd5b6123ca838383612770565b505050565b60006123de8360000183612987565b60001c905092915050565b6000806000806123fc86600001866129f4565b915091508160001c8160001c9350935050509250929050565b806009908051906020019061242b9291906132f5565b5050565b6000612442846000018460001b84612a77565b60001c90509392505050565b600061245c82600001612b08565b9050919050565b61247461246e61220b565b83612692565b6124b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124aa906145a7565b60405180910390fd5b6124bf84848484612b19565b50505050565b6060600082141561250d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612607565b600082905060005b60008214612537578080600101915050600a828161252f57fe5b049150612515565b60008167ffffffffffffffff8111801561255057600080fd5b506040519080825280601f01601f1916602001820160405280156125835781602001600182028036833780820191505090505b50905060006001830390508593505b600084146125ff57600a84816125a457fe5b0660300160f81b828280600190039350815181106125be57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a84816125f757fe5b049350612592565b819450505050505b919050565b600061261e836000018360001b612b75565b905092915050565b600081600001805490509050919050565b6126418383612b98565b61264e6000848484612d26565b61268d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268490614347565b60405180910390fd5b505050565b600061269d826121ee565b6126dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d390614447565b60405180910390fd5b60006126e78361137f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061275657508373ffffffffffffffffffffffffffffffffffffffff1661273e84610a20565b73ffffffffffffffffffffffffffffffffffffffff16145b8061276757506127668185611f10565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166127908261137f565b73ffffffffffffffffffffffffffffffffffffffff16146127e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127dd90614547565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284d906143c7565b60405180910390fd5b612861838383612e8a565b61286c600082612213565b6128bd81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612e8f90919063ffffffff16565b5061290f81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612ea990919063ffffffff16565b5061292681836002612ec39092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000818360000180549050116129d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c990614327565b60405180910390fd5b8260000182815481106129e157fe5b9060005260206000200154905092915050565b60008082846000018054905011612a40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a37906144c7565b60405180910390fd5b6000846000018481548110612a5157fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad09190614305565b60405180910390fd5b50846000016001820381548110612aec57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b612b24848484612770565b612b3084848484612d26565b612b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6690614347565b60405180910390fd5b50505050565b600080836001016000848152602001908152602001600020541415905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bff906144e7565b60405180910390fd5b612c11816121ee565b15612c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c48906143a7565b60405180910390fd5b612c5d60008383612e8a565b612cae81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612ea990919063ffffffff16565b50612cc581836002612ec39092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000612d478473ffffffffffffffffffffffffffffffffffffffff16612ef8565b612d545760019050612e82565b6000612e1b63150b7a0260e01b612d6961220b565b888787604051602401612d7f9493929190614238565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040518060600160405280603281526020016148d6603291398773ffffffffffffffffffffffffffffffffffffffff16612f0b9092919063ffffffff16565b9050600081806020019051810190612e3391906136a9565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b505050565b6000612ea1836000018360001b612f23565b905092915050565b6000612ebb836000018360001b61300b565b905092915050565b6000612eef846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b61307b565b90509392505050565b600080823b905060008111915050919050565b6060612f1a8484600085613157565b90509392505050565b60008083600101600084815260200190815260200160002054905060008114612fff5760006001820390506000600186600001805490500390506000866000018281548110612f6e57fe5b9060005260206000200154905080876000018481548110612f8b57fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612fc357fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050613005565b60009150505b92915050565b6000613017838361326b565b613070578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050613075565b600090505b92915050565b600080846001016000858152602001908152602001600020549050600081141561312257846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050613150565b8285600001600183038154811061313557fe5b90600052602060002090600202016001018190555060009150505b9392505050565b60608247101561319c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319390614427565b60405180910390fd5b6131a585612ef8565b6131e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131db906145e7565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161320d91906141e2565b60006040518083038185875af1925050503d806000811461324a576040519150601f19603f3d011682016040523d82523d6000602084013e61324f565b606091505b509150915061325f82828661328e565b92505050949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b6060831561329e578290506132ee565b6000835111156132b15782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e59190614305565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261332b5760008555613372565b82601f1061334457805160ff1916838001178555613372565b82800160010185558215613372579182015b82811115613371578251825591602001919060010190613356565b5b50905061337f9190613383565b5090565b5b8082111561339c576000816000905550600101613384565b5090565b60006133b36133ae84614693565b614662565b9050828152602081018484840111156133cb57600080fd5b6133d6848285614824565b509392505050565b60006133f16133ec846146c3565b614662565b90508281526020810184848401111561340957600080fd5b613414848285614824565b509392505050565b60008135905061342b81614879565b92915050565b60008135905061344081614890565b92915050565b600081359050613455816148a7565b92915050565b60008151905061346a816148a7565b92915050565b600082601f83011261348157600080fd5b81356134918482602086016133a0565b91505092915050565b600082601f8301126134ab57600080fd5b81356134bb8482602086016133de565b91505092915050565b6000813590506134d3816148be565b92915050565b6000602082840312156134eb57600080fd5b60006134f98482850161341c565b91505092915050565b6000806040838503121561351557600080fd5b60006135238582860161341c565b92505060206135348582860161341c565b9150509250929050565b60008060006060848603121561355357600080fd5b60006135618682870161341c565b93505060206135728682870161341c565b9250506040613583868287016134c4565b9150509250925092565b600080600080608085870312156135a357600080fd5b60006135b18782880161341c565b94505060206135c28782880161341c565b93505060406135d3878288016134c4565b925050606085013567ffffffffffffffff8111156135f057600080fd5b6135fc87828801613470565b91505092959194509250565b6000806040838503121561361b57600080fd5b60006136298582860161341c565b925050602061363a85828601613431565b9150509250929050565b6000806040838503121561365757600080fd5b60006136658582860161341c565b9250506020613676858286016134c4565b9150509250929050565b60006020828403121561369257600080fd5b60006136a084828501613446565b91505092915050565b6000602082840312156136bb57600080fd5b60006136c98482850161345b565b91505092915050565b6000602082840312156136e457600080fd5b600082013567ffffffffffffffff8111156136fe57600080fd5b61370a8482850161349a565b91505092915050565b60006020828403121561372557600080fd5b6000613733848285016134c4565b91505092915050565b6000806040838503121561374f57600080fd5b600061375d858286016134c4565b925050602061376e8582860161341c565b9150509250929050565b600061378483836141c4565b60208301905092915050565b6137998161478c565b82525050565b6137a88161477a565b82525050565b60006137b982614703565b6137c38185614731565b93506137ce836146f3565b8060005b838110156137ff5781516137e68882613778565b97506137f183614724565b9250506001810190506137d2565b5085935050505092915050565b6138158161479e565b82525050565b60006138268261470e565b6138308185614742565b9350613840818560208601614833565b61384981614868565b840191505092915050565b600061385f8261470e565b6138698185614753565b9350613879818560208601614833565b80840191505092915050565b61388e81614800565b82525050565b600061389f82614719565b6138a9818561475e565b93506138b9818560208601614833565b6138c281614868565b840191505092915050565b60006138d882614719565b6138e2818561476f565b93506138f2818560208601614833565b80840191505092915050565b600061390b60228361475e565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061397160328361475e565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006139d760268361475e565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a3d60118361475e565b91507f416c6c20746f6b656e73206d696e7465640000000000000000000000000000006000830152602082019050919050565b6000613a7d601c8361475e565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613abd60248361475e565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b2360198361475e565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613b63601f8361475e565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000613ba360268361475e565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c09602c8361475e565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613c6f60388361475e565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613cd5602a8361475e565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d3b60238361475e565b91507f43616e206f6e6c79206d696e7420323020706978656c306e312061742061207460008301527f696d6500000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613da160228361475e565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e0760208361475e565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613e47602c8361475e565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613ead60208361475e565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613eed60298361475e565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f53602f8361475e565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613fb960218361475e565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061401f60318361475e565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061408560168361475e565b91507f536166654d6174683a206d756c206f766572666c6f77000000000000000000006000830152602082019050919050565b60006140c5601d8361475e565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b6000614105602d8361475e565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f6620706978656c306e3173000000000000000000000000000000000000006020830152604082019050919050565b600061416b60248361475e565b91507f53616c65206d7573742062652061637469766520746f206d696e74207069786560008301527f6c306e31000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6141cd816147f6565b82525050565b6141dc816147f6565b82525050565b60006141ee8284613854565b915081905092915050565b600061420582856138cd565b915061421182846138cd565b91508190509392505050565b6000602082019050614232600083018461379f565b92915050565b600060808201905061424d6000830187613790565b61425a602083018661379f565b61426760408301856141d3565b8181036060830152614279818461381b565b905095945050505050565b6000604082019050614299600083018561379f565b6142a6602083018461379f565b9392505050565b600060208201905081810360008301526142c781846137ae565b905092915050565b60006020820190506142e4600083018461380c565b92915050565b60006020820190506142ff6000830184613885565b92915050565b6000602082019050818103600083015261431f8184613894565b905092915050565b60006020820190508181036000830152614340816138fe565b9050919050565b6000602082019050818103600083015261436081613964565b9050919050565b60006020820190508181036000830152614380816139ca565b9050919050565b600060208201905081810360008301526143a081613a30565b9050919050565b600060208201905081810360008301526143c081613a70565b9050919050565b600060208201905081810360008301526143e081613ab0565b9050919050565b6000602082019050818103600083015261440081613b16565b9050919050565b6000602082019050818103600083015261442081613b56565b9050919050565b6000602082019050818103600083015261444081613b96565b9050919050565b6000602082019050818103600083015261446081613bfc565b9050919050565b6000602082019050818103600083015261448081613c62565b9050919050565b600060208201905081810360008301526144a081613cc8565b9050919050565b600060208201905081810360008301526144c081613d2e565b9050919050565b600060208201905081810360008301526144e081613d94565b9050919050565b6000602082019050818103600083015261450081613dfa565b9050919050565b6000602082019050818103600083015261452081613e3a565b9050919050565b6000602082019050818103600083015261454081613ea0565b9050919050565b6000602082019050818103600083015261456081613ee0565b9050919050565b6000602082019050818103600083015261458081613f46565b9050919050565b600060208201905081810360008301526145a081613fac565b9050919050565b600060208201905081810360008301526145c081614012565b9050919050565b600060208201905081810360008301526145e081614078565b9050919050565b60006020820190508181036000830152614600816140b8565b9050919050565b60006020820190508181036000830152614620816140f8565b9050919050565b600060208201905081810360008301526146408161415e565b9050919050565b600060208201905061465c60008301846141d3565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561468957614688614866565b5b8060405250919050565b600067ffffffffffffffff8211156146ae576146ad614866565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156146de576146dd614866565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614785826147d6565b9050919050565b6000614797826147d6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061480b82614812565b9050919050565b600061481d826147d6565b9050919050565b82818337600083830152505050565b60005b83811015614851578082015181840152602081019050614836565b83811115614860576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b6148828161477a565b811461488d57600080fd5b50565b6148998161479e565b81146148a457600080fd5b50565b6148b0816147aa565b81146148bb57600080fd5b50565b6148c7816147f6565b81146148d257600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220e3c32f3753d03e90d5fe07bf472d4e33e7488f2b31f6e6a2bff54471cd6e566964736f6c63430007060033

Deployed Bytecode Sourcemap

78013:3827:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9861:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78144:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49627:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52391:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51921:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79386:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51399:211;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79865:771;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81190:301;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78361:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78099:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51161:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78566:131;;;;;;;;;;;;;:::i;:::-;;79738:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53657:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51687:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79523:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78271:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79270:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49383:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50980:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49100:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64261:148;;;;;;;;;;;;;:::i;:::-;;78405:17;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79149:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80644:540;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63610:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49796:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52684:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78213:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79632:101;;;;;;;;;;;;;:::i;:::-;;81497:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49971:770;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78709:323;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78314:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53050:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64564:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79044:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78447:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9861:150;9946:4;9970:20;:33;9991:11;9970:33;;;;;;;;;;;;;;;;;;;;;;;;;;;9963:40;;9861:150;;;:::o;78144:51::-;;;;:::o;49627:100::-;49681:13;49714:5;49707:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49627:100;:::o;52391:221::-;52467:7;52495:16;52503:7;52495;:16::i;:::-;52487:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;52580:15;:24;52596:7;52580:24;;;;;;;;;;;;;;;;;;;;;52573:31;;52391:221;;;:::o;51921:404::-;52002:13;52018:23;52033:7;52018:14;:23::i;:::-;52002:39;;52066:5;52060:11;;:2;:11;;;;52052:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;52146:5;52130:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;52155:44;52179:5;52186:12;:10;:12::i;:::-;52155:23;:44::i;:::-;52130:69;52122:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;52296:21;52305:2;52309:7;52296:8;:21::i;:::-;51921:404;;;:::o;79386:129::-;63841:12;:10;:12::i;:::-;63830:23;;:7;:5;:7::i;:::-;:23;;;63822:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79493:14:::1;79471:19;:36;;;;;;;;;;;;:::i;:::-;;79386:129:::0;:::o;51399:211::-;51460:7;51581:21;:12;:19;:21::i;:::-;51574:28;;51399:211;:::o;79865:771::-;79943:16;;;;;;;;;;;79935:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;80036:1;80019:14;:18;:61;;;;;78258:2;80041:14;:39;;80019:61;80011:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;80173:13;;80155:14;80139:13;:11;:13::i;:::-;:30;:47;;80131:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;80275:12;;80260:13;:11;:13::i;:::-;:27;80257:149;;;80325:33;80343:14;80325:13;;:17;;:33;;;;:::i;:::-;80312:9;:46;;80304:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;80257:149;80423:6;80418:212;80439:14;80435:1;:18;80418:212;;;80495:13;;80479;:11;:13::i;:::-;:29;80475:144;;;80525:36;80535:10;80547:13;:11;:13::i;:::-;80525:9;:36::i;:::-;80576:13;:25;80590:10;80576:25;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;80475:144;80455:3;;;;;;;80418:212;;;;79865:771;:::o;81190:301::-;81296:13;;81286:7;:23;81282:153;;;81326:4;;;;;;;;;;;:17;;;81344:4;81350:2;81326:27;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81368:13;:19;81382:4;81368:19;;;;;;;;;;;;;;;;:21;;;;;;;;;;;;;;81404:13;:17;81418:2;81404:17;;;;;;;;;;;;;;;;:19;;;;;;;;;;;;;81282:153;81445:38;81465:4;81471:2;81475:7;81445:19;:38::i;:::-;81190:301;;;:::o;78361:35::-;;;;;;;;;;;;;:::o;78099:38::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51161:162::-;51258:7;51285:30;51309:5;51285:13;:20;51299:5;51285:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;51278:37;;51161:162;;;;:::o;78566:131::-;63841:12;:10;:12::i;:::-;63830:23;;:7;:5;:7::i;:::-;:23;;;63822:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78614:12:::1;78629:21;78614:36;;78661:10;:19;;:28;78681:7;78661:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;63901:1;78566:131::o:0;79738:114::-;63841:12;:10;:12::i;:::-;63830:23;;:7;:5;:7::i;:::-;:23;;;63822:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79832:11:::1;79819:4;;:25;;;;;;;;;;;;;;;;;;79738:114:::0;:::o;53657:151::-;53761:39;53778:4;53784:2;53788:7;53761:39;;;;;;;;;;;;:16;:39::i;:::-;53657:151;;;:::o;51687:172::-;51762:7;51783:15;51804:22;51820:5;51804:12;:15;;:22;;;;:::i;:::-;51782:44;;;51844:7;51837:14;;;51687:172;;;:::o;79523:99::-;63841:12;:10;:12::i;:::-;63830:23;;:7;:5;:7::i;:::-;:23;;;63822:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79594:20:::1;79606:7;79594:11;:20::i;:::-;79523:99:::0;:::o;78271:36::-;;;;:::o;79270:108::-;63841:12;:10;:12::i;:::-;63830:23;;:7;:5;:7::i;:::-;:23;;;63822:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79359:11:::1;79343:13;:27;;;;79270:108:::0;:::o;49383:177::-;49455:7;49482:70;49499:7;49482:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;49475:77;;49383:177;;;:::o;50980:97::-;51028:13;51061:8;51054:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50980:97;:::o;49100:221::-;49172:7;49217:1;49200:19;;:5;:19;;;;49192:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;49284:29;:13;:20;49298:5;49284:20;;;;;;;;;;;;;;;:27;:29::i;:::-;49277:36;;49100:221;;;:::o;64261:148::-;63841:12;:10;:12::i;:::-;63830:23;;:7;:5;:7::i;:::-;:23;;;63822:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64368:1:::1;64331:40;;64352:6;;;;;;;;;;;64331:40;;;;;;;;;;;;64399:1;64382:6;;:19;;;;;;;;;;;;;;;;;;64261:148::o:0;78405:17::-;;;;;;;;;;;;;:::o;79149:110::-;63841:12;:10;:12::i;:::-;63830:23;;:7;:5;:7::i;:::-;:23;;;63822:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79238:13:::1;79223:12;:28;;;;79149:110:::0;:::o;80644:540::-;80705:16;80735:18;80756:17;80766:6;80756:9;:17::i;:::-;80735:38;;80802:1;80788:10;:15;80784:393;;;80879:1;80865:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80858:23;;;;;80784:393;80914:23;80954:10;80940:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80914:51;;80980:13;81008:130;81032:10;81024:5;:18;81008:130;;;81088:34;81108:6;81116:5;81088:19;:34::i;:::-;81072:6;81079:5;81072:13;;;;;;;;;;;;;:50;;;;;81044:7;;;;;;;81008:130;;;81159:6;81152:13;;;;;80644:540;;;;:::o;63610:87::-;63656:7;63683:6;;;;;;;;;;;63676:13;;63610:87;:::o;49796:104::-;49852:13;49885:7;49878:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49796:104;:::o;52684:295::-;52799:12;:10;:12::i;:::-;52787:24;;:8;:24;;;;52779:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;52899:8;52854:18;:32;52873:12;:10;:12::i;:::-;52854:32;;;;;;;;;;;;;;;:42;52887:8;52854:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;52952:8;52923:48;;52938:12;:10;:12::i;:::-;52923:48;;;52962:8;52923:48;;;;;;:::i;:::-;;;;;;;;52684:295;;:::o;78213:47::-;78258:2;78213:47;:::o;79632:101::-;63841:12;:10;:12::i;:::-;63830:23;;:7;:5;:7::i;:::-;:23;;;63822:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79709:16:::1;;;;;;;;;;;79708:17;79689:16;;:36;;;;;;;;;;;;;;;;;;79632:101::o:0;81497:334::-;81626:13;;81616:7;:23;81612:153;;;81656:4;;;;;;;;;;;:17;;;81674:4;81680:2;81656:27;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81698:13;:19;81712:4;81698:19;;;;;;;;;;;;;;;;:21;;;;;;;;;;;;;;81734:13;:17;81748:2;81734:17;;;;;;;;;;;;;;;;:19;;;;;;;;;;;;;81612:153;81775:48;81799:4;81805:2;81809:7;81818:4;81775:23;:48::i;:::-;81497:334;;;;:::o;49971:770::-;50044:13;50078:16;50086:7;50078;:16::i;:::-;50070:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;50159:23;50185:10;:19;50196:7;50185:19;;;;;;;;;;;50159:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50215:18;50236:9;:7;:9::i;:::-;50215:30;;50343:1;50327:4;50321:18;:23;50317:72;;;50368:9;50361:16;;;;;;50317:72;50508:1;50488:9;50482:23;:27;50478:108;;;50557:4;50563:9;50540:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50526:48;;;;;;50478:108;50707:4;50713:18;:7;:16;:18::i;:::-;50690:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50676:57;;;;49971:770;;;;:::o;78709:323::-;63841:12;:10;:12::i;:::-;63830:23;;:7;:5;:7::i;:::-;:23;;;63822:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78823:13:::1;;78812:7;78795:13;:11;:13::i;:::-;:24;:41;;78787:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;78877:6;78872:152;78893:7;78889:1;:11;78872:152;;;78922:38;78932:8;78958:1;78942:13;:11;:13::i;:::-;:17;78922:9;:38::i;:::-;78975:13;:23;78989:8;78975:23;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;78902:3;;;;;;;78872:152;;;;78709:323:::0;;:::o;78314:34::-;;;;:::o;53050:164::-;53147:4;53171:18;:25;53190:5;53171:25;;;;;;;;;;;;;;;:35;53197:8;53171:35;;;;;;;;;;;;;;;;;;;;;;;;;53164:42;;53050:164;;;;:::o;64564:244::-;63841:12;:10;:12::i;:::-;63830:23;;:7;:5;:7::i;:::-;:23;;;63822:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64673:1:::1;64653:22;;:8;:22;;;;64645:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;64763:8;64734:38;;64755:6;;;;;;;;;;;64734:38;;;;;;;;;;;;64792:8;64783:6;;:17;;;;;;;;;;;;;;;;;;64564:244:::0;:::o;79044:93::-;63841:12;:10;:12::i;:::-;63830:23;;:7;:5;:7::i;:::-;:23;;;63822:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79124:5:::1;79108:13;:21;;;;79044:93:::0;:::o;78447:49::-;;;;;;;;;;;;;;;;;:::o;55631:127::-;55696:4;55720:30;55742:7;55720:12;:21;;:30;;;;:::i;:::-;55713:37;;55631:127;;;:::o;611:106::-;664:15;699:10;692:17;;611:106;:::o;61649:192::-;61751:2;61724:15;:24;61740:7;61724:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;61807:7;61803:2;61769:46;;61778:23;61793:7;61778:14;:23::i;:::-;61769:46;;;;;;;;;;;;61649:192;;:::o;42665:123::-;42734:7;42761:19;42769:3;:10;;42761:7;:19::i;:::-;42754:26;;42665:123;;;:::o;14072:209::-;14130:7;14159:1;14154;:6;14150:20;;;14169:1;14162:8;;;;14150:20;14181:9;14197:1;14193;:5;14181:17;;14226:1;14221;14217;:5;;;;;;:10;14209:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;14272:1;14265:8;;;14072:209;;;;;:::o;56623:110::-;56699:26;56709:2;56713:7;56699:26;;;;;;;;;;;;:9;:26::i;:::-;56623:110;;:::o;53281:305::-;53442:41;53461:12;:10;:12::i;:::-;53475:7;53442:18;:41::i;:::-;53434:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;53550:28;53560:4;53566:2;53570:7;53550:9;:28::i;:::-;53281:305;;;:::o;34683:137::-;34754:7;34789:22;34793:3;:10;;34805:5;34789:3;:22::i;:::-;34781:31;;34774:38;;34683:137;;;;:::o;43127:236::-;43207:7;43216;43237:11;43250:13;43267:22;43271:3;:10;;43283:5;43267:3;:22::i;:::-;43236:53;;;;43316:3;43308:12;;43346:5;43338:14;;43300:55;;;;;;43127:236;;;;;:::o;60261:100::-;60345:8;60334;:19;;;;;;;;;;;;:::i;:::-;;60261:100;:::o;44247:213::-;44354:7;44405:44;44410:3;:10;;44430:3;44422:12;;44436;44405:4;:44::i;:::-;44397:53;;44374:78;;44247:213;;;;;:::o;34225:114::-;34285:7;34312:19;34320:3;:10;;34312:7;:19::i;:::-;34305:26;;34225:114;;;:::o;53879:285::-;54011:41;54030:12;:10;:12::i;:::-;54044:7;54011:18;:41::i;:::-;54003:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;54117:39;54131:4;54137:2;54141:7;54150:5;54117:13;:39::i;:::-;53879:285;;;;:::o;44657:746::-;44713:13;44943:1;44934:5;:10;44930:53;;;44961:10;;;;;;;;;;;;;;;;;;;;;44930:53;44993:12;45008:5;44993:20;;45024:14;45049:78;45064:1;45056:4;:9;45049:78;;45082:8;;;;;;;45113:2;45105:10;;;;;;;;;45049:78;;;45137:19;45169:6;45159:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45137:39;;45187:13;45212:1;45203:6;:10;45187:26;;45231:5;45224:12;;45247:117;45262:1;45254:4;:9;45247:117;;45323:2;45316:4;:9;;;;;;45311:2;:14;45298:29;;45280:6;45287:7;;;;;;;45280:15;;;;;;;;;;;:47;;;;;;;;;;;45350:2;45342:10;;;;;;;;;45247:117;;;45388:6;45374:21;;;;;;44657:746;;;;:::o;42426:151::-;42510:4;42534:35;42544:3;:10;;42564:3;42556:12;;42534:9;:35::i;:::-;42527:42;;42426:151;;;;:::o;39411:110::-;39467:7;39494:3;:12;;:19;;;;39487:26;;39411:110;;;:::o;56960:250::-;57056:18;57062:2;57066:7;57056:5;:18::i;:::-;57093:54;57124:1;57128:2;57132:7;57141:5;57093:22;:54::i;:::-;57085:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;56960:250;;;:::o;55925:355::-;56018:4;56043:16;56051:7;56043;:16::i;:::-;56035:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;56119:13;56135:23;56150:7;56135:14;:23::i;:::-;56119:39;;56188:5;56177:16;;:7;:16;;;:51;;;;56221:7;56197:31;;:20;56209:7;56197:11;:20::i;:::-;:31;;;56177:51;:94;;;;56232:39;56256:5;56263:7;56232:23;:39::i;:::-;56177:94;56169:103;;;55925:355;;;;:::o;59061:599::-;59186:4;59159:31;;:23;59174:7;59159:14;:23::i;:::-;:31;;;59151:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;59287:1;59273:16;;:2;:16;;;;59265:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;59343:39;59364:4;59370:2;59374:7;59343:20;:39::i;:::-;59447:29;59464:1;59468:7;59447:8;:29::i;:::-;59489:35;59516:7;59489:13;:19;59503:4;59489:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;59535:30;59557:7;59535:13;:17;59549:2;59535:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;59578:29;59595:7;59604:2;59578:12;:16;;:29;;;;;:::i;:::-;;59644:7;59640:2;59625:27;;59634:4;59625:27;;;;;;;;;;;;59061:599;;;:::o;29721:204::-;29788:7;29837:5;29816:3;:11;;:18;;;;:26;29808:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29899:3;:11;;29911:5;29899:18;;;;;;;;;;;;;;;;29892:25;;29721:204;;;;:::o;39876:279::-;39943:7;39952;40002:5;39980:3;:12;;:19;;;;:27;39972:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;40059:22;40084:3;:12;;40097:5;40084:19;;;;;;;;;;;;;;;;;;40059:44;;40122:5;:10;;;40134:5;:12;;;40114:33;;;;;39876:279;;;;;:::o;41206:319::-;41300:7;41320:16;41339:3;:12;;:17;41352:3;41339:17;;;;;;;;;;;;41320:36;;41387:1;41375:8;:13;;41390:12;41367:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;41457:3;:12;;41481:1;41470:8;:12;41457:26;;;;;;;;;;;;;;;;;;:33;;;41450:40;;;41206:319;;;;;:::o;29268:109::-;29324:7;29351:3;:11;;:18;;;;29344:25;;29268:109;;;:::o;55046:272::-;55160:28;55170:4;55176:2;55180:7;55160:9;:28::i;:::-;55207:48;55230:4;55236:2;55240:7;55249:5;55207:22;:48::i;:::-;55199:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;55046:272;;;;:::o;39191:125::-;39262:4;39307:1;39286:3;:12;;:17;39299:3;39286:17;;;;;;;;;;;;:22;;39279:29;;39191:125;;;;:::o;57546:404::-;57640:1;57626:16;;:2;:16;;;;57618:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;57699:16;57707:7;57699;:16::i;:::-;57698:17;57690:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;57761:45;57790:1;57794:2;57798:7;57761:20;:45::i;:::-;57819:30;57841:7;57819:13;:17;57833:2;57819:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;57862:29;57879:7;57888:2;57862:12;:16;;:29;;;;;:::i;:::-;;57934:7;57930:2;57909:33;;57926:1;57909:33;;;;;;;;;;;;57546:404;;:::o;60926:604::-;61047:4;61074:15;:2;:13;;;:15::i;:::-;61069:60;;61113:4;61106:11;;;;61069:60;61139:23;61165:252;61218:45;;;61278:12;:10;:12::i;:::-;61305:4;61324:7;61346:5;61181:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61165:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;61139:278;;61428:13;61455:10;61444:32;;;;;;;;;;;;:::i;:::-;61428:48;;46097:10;61505:16;;61495:26;;;:6;:26;;;;61487:35;;;;60926:604;;;;;;;:::o;62454:93::-;;;;:::o;33770:137::-;33840:4;33864:35;33872:3;:10;;33892:5;33884:14;;33864:7;:35::i;:::-;33857:42;;33770:137;;;;:::o;33463:131::-;33530:4;33554:32;33559:3;:10;;33579:5;33571:14;;33554:4;:32::i;:::-;33547:39;;33463:131;;;;:::o;41849:185::-;41938:4;41962:64;41967:3;:10;;41987:3;41979:12;;42017:5;42001:23;;41993:32;;41962:4;:64::i;:::-;41955:71;;41849:185;;;;;:::o;17914:422::-;17974:4;18182:12;18293:7;18281:20;18273:28;;18327:1;18320:4;:8;18313:15;;;17914:422;;;:::o;20832:195::-;20935:12;20967:52;20989:6;20997:4;21003:1;21006:12;20967:21;:52::i;:::-;20960:59;;20832:195;;;;;:::o;27423:1544::-;27489:4;27607:18;27628:3;:12;;:19;27641:5;27628:19;;;;;;;;;;;;27607:40;;27678:1;27664:10;:15;27660:1300;;28026:21;28063:1;28050:10;:14;28026:38;;28079:17;28120:1;28099:3;:11;;:18;;;;:22;28079:42;;28366:17;28386:3;:11;;28398:9;28386:22;;;;;;;;;;;;;;;;28366:42;;28532:9;28503:3;:11;;28515:13;28503:26;;;;;;;;;;;;;;;:38;;;;28651:1;28635:13;:17;28609:3;:12;;:23;28622:9;28609:23;;;;;;;;;;;:43;;;;28761:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;28856:3;:12;;:19;28869:5;28856:19;;;;;;;;;;;28849:26;;;28899:4;28892:11;;;;;;;;27660:1300;28943:5;28936:12;;;27423:1544;;;;;:::o;26833:414::-;26896:4;26918:21;26928:3;26933:5;26918:9;:21::i;:::-;26913:327;;26956:3;:11;;26973:5;26956:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27139:3;:11;;:18;;;;27117:3;:12;;:19;27130:5;27117:19;;;;;;;;;;;:40;;;;27179:4;27172:11;;;;26913:327;27223:5;27216:12;;26833:414;;;;;:::o;36691:692::-;36767:4;36883:16;36902:3;:12;;:17;36915:3;36902:17;;;;;;;;;;;;36883:36;;36948:1;36936:8;:13;36932:444;;;37003:3;:12;;37021:38;;;;;;;;37038:3;37021:38;;;;37051:5;37021:38;;;37003:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37218:3;:12;;:19;;;;37198:3;:12;;:17;37211:3;37198:17;;;;;;;;;;;:39;;;;37259:4;37252:11;;;;;36932:444;37332:5;37296:3;:12;;37320:1;37309:8;:12;37296:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;37359:5;37352:12;;;36691:692;;;;;;:::o;21884:530::-;22011:12;22069:5;22044:21;:30;;22036:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;22136:18;22147:6;22136:10;:18::i;:::-;22128:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;22262:12;22276:23;22303:6;:11;;22323:5;22331:4;22303:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22261:75;;;;22354:52;22372:7;22381:10;22393:12;22354:17;:52::i;:::-;22347:59;;;;21884:530;;;;;;:::o;29053:129::-;29126:4;29173:1;29150:3;:12;;:19;29163:5;29150:19;;;;;;;;;;;;:24;;29143:31;;29053:129;;;;:::o;24424:742::-;24539:12;24568:7;24564:595;;;24599:10;24592:17;;;;24564:595;24733:1;24713:10;:17;:21;24709:439;;;24976:10;24970:17;25037:15;25024:10;25020:2;25016:19;25009:44;24924:148;25119:12;25112:20;;;;;;;;;;;:::i;:::-;;;;;;;;24424:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:260::-;;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:52;5116:7;5107:6;5096:9;5092:22;5072:52;:::i;:::-;5062:62;;5018:116;4946:195;;;;:::o;5147:282::-;;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5281:1;5278;5271:12;5233:2;5324:1;5349:63;5404:7;5395:6;5384:9;5380:22;5349:63;:::i;:::-;5339:73;;5295:127;5223:206;;;;:::o;5435:375::-;;5553:2;5541:9;5532:7;5528:23;5524:32;5521:2;;;5569:1;5566;5559:12;5521:2;5640:1;5629:9;5625:17;5612:31;5670:18;5662:6;5659:30;5656:2;;;5702:1;5699;5692:12;5656:2;5730:63;5785:7;5776:6;5765:9;5761:22;5730:63;:::i;:::-;5720:73;;5583:220;5511:299;;;;:::o;5816:262::-;;5924:2;5912:9;5903:7;5899:23;5895:32;5892:2;;;5940:1;5937;5930:12;5892:2;5983:1;6008:53;6053:7;6044:6;6033:9;6029:22;6008:53;:::i;:::-;5998:63;;5954:117;5882:196;;;;:::o;6084:407::-;;;6209:2;6197:9;6188:7;6184:23;6180:32;6177:2;;;6225:1;6222;6215:12;6177:2;6268:1;6293:53;6338:7;6329:6;6318:9;6314:22;6293:53;:::i;:::-;6283:63;;6239:117;6395:2;6421:53;6466:7;6457:6;6446:9;6442:22;6421:53;:::i;:::-;6411:63;;6366:118;6167:324;;;;;:::o;6497:179::-;;6587:46;6629:3;6621:6;6587:46;:::i;:::-;6665:4;6660:3;6656:14;6642:28;;6577:99;;;;:::o;6682:142::-;6785:32;6811:5;6785:32;:::i;:::-;6780:3;6773:45;6763:61;;:::o;6830:118::-;6917:24;6935:5;6917:24;:::i;:::-;6912:3;6905:37;6895:53;;:::o;6984:732::-;;7132:54;7180:5;7132:54;:::i;:::-;7202:86;7281:6;7276:3;7202:86;:::i;:::-;7195:93;;7312:56;7362:5;7312:56;:::i;:::-;7391:7;7422:1;7407:284;7432:6;7429:1;7426:13;7407:284;;;7508:6;7502:13;7535:63;7594:3;7579:13;7535:63;:::i;:::-;7528:70;;7621:60;7674:6;7621:60;:::i;:::-;7611:70;;7467:224;7454:1;7451;7447:9;7442:14;;7407:284;;;7411:14;7707:3;7700:10;;7108:608;;;;;;;:::o;7722:109::-;7803:21;7818:5;7803:21;:::i;:::-;7798:3;7791:34;7781:50;;:::o;7837:360::-;;7951:38;7983:5;7951:38;:::i;:::-;8005:70;8068:6;8063:3;8005:70;:::i;:::-;7998:77;;8084:52;8129:6;8124:3;8117:4;8110:5;8106:16;8084:52;:::i;:::-;8161:29;8183:6;8161:29;:::i;:::-;8156:3;8152:39;8145:46;;7927:270;;;;;:::o;8203:373::-;;8335:38;8367:5;8335:38;:::i;:::-;8389:88;8470:6;8465:3;8389:88;:::i;:::-;8382:95;;8486:52;8531:6;8526:3;8519:4;8512:5;8508:16;8486:52;:::i;:::-;8563:6;8558:3;8554:16;8547:23;;8311:265;;;;;:::o;8582:159::-;8683:51;8728:5;8683:51;:::i;:::-;8678:3;8671:64;8661:80;;:::o;8747:364::-;;8863:39;8896:5;8863:39;:::i;:::-;8918:71;8982:6;8977:3;8918:71;:::i;:::-;8911:78;;8998:52;9043:6;9038:3;9031:4;9024:5;9020:16;8998:52;:::i;:::-;9075:29;9097:6;9075:29;:::i;:::-;9070:3;9066:39;9059:46;;8839:272;;;;;:::o;9117:377::-;;9251:39;9284:5;9251:39;:::i;:::-;9306:89;9388:6;9383:3;9306:89;:::i;:::-;9299:96;;9404:52;9449:6;9444:3;9437:4;9430:5;9426:16;9404:52;:::i;:::-;9481:6;9476:3;9472:16;9465:23;;9227:267;;;;;:::o;9500:366::-;;9663:67;9727:2;9722:3;9663:67;:::i;:::-;9656:74;;9760:34;9756:1;9751:3;9747:11;9740:55;9826:4;9821:2;9816:3;9812:12;9805:26;9857:2;9852:3;9848:12;9841:19;;9646:220;;;:::o;9872:382::-;;10035:67;10099:2;10094:3;10035:67;:::i;:::-;10028:74;;10132:34;10128:1;10123:3;10119:11;10112:55;10198:20;10193:2;10188:3;10184:12;10177:42;10245:2;10240:3;10236:12;10229:19;;10018:236;;;:::o;10260:370::-;;10423:67;10487:2;10482:3;10423:67;:::i;:::-;10416:74;;10520:34;10516:1;10511:3;10507:11;10500:55;10586:8;10581:2;10576:3;10572:12;10565:30;10621:2;10616:3;10612:12;10605:19;;10406:224;;;:::o;10636:315::-;;10799:67;10863:2;10858:3;10799:67;:::i;:::-;10792:74;;10896:19;10892:1;10887:3;10883:11;10876:40;10942:2;10937:3;10933:12;10926:19;;10782:169;;;:::o;10957:326::-;;11120:67;11184:2;11179:3;11120:67;:::i;:::-;11113:74;;11217:30;11213:1;11208:3;11204:11;11197:51;11274:2;11269:3;11265:12;11258:19;;11103:180;;;:::o;11289:368::-;;11452:67;11516:2;11511:3;11452:67;:::i;:::-;11445:74;;11549:34;11545:1;11540:3;11536:11;11529:55;11615:6;11610:2;11605:3;11601:12;11594:28;11648:2;11643:3;11639:12;11632:19;;11435:222;;;:::o;11663:323::-;;11826:67;11890:2;11885:3;11826:67;:::i;:::-;11819:74;;11923:27;11919:1;11914:3;11910:11;11903:48;11977:2;11972:3;11968:12;11961:19;;11809:177;;;:::o;11992:329::-;;12155:67;12219:2;12214:3;12155:67;:::i;:::-;12148:74;;12252:33;12248:1;12243:3;12239:11;12232:54;12312:2;12307:3;12303:12;12296:19;;12138:183;;;:::o;12327:370::-;;12490:67;12554:2;12549:3;12490:67;:::i;:::-;12483:74;;12587:34;12583:1;12578:3;12574:11;12567:55;12653:8;12648:2;12643:3;12639:12;12632:30;12688:2;12683:3;12679:12;12672:19;;12473:224;;;:::o;12703:376::-;;12866:67;12930:2;12925:3;12866:67;:::i;:::-;12859:74;;12963:34;12959:1;12954:3;12950:11;12943:55;13029:14;13024:2;13019:3;13015:12;13008:36;13070:2;13065:3;13061:12;13054:19;;12849:230;;;:::o;13085:388::-;;13248:67;13312:2;13307:3;13248:67;:::i;:::-;13241:74;;13345:34;13341:1;13336:3;13332:11;13325:55;13411:26;13406:2;13401:3;13397:12;13390:48;13464:2;13459:3;13455:12;13448:19;;13231:242;;;:::o;13479:374::-;;13642:67;13706:2;13701:3;13642:67;:::i;:::-;13635:74;;13739:34;13735:1;13730:3;13726:11;13719:55;13805:12;13800:2;13795:3;13791:12;13784:34;13844:2;13839:3;13835:12;13828:19;;13625:228;;;:::o;13859:367::-;;14022:67;14086:2;14081:3;14022:67;:::i;:::-;14015:74;;14119:34;14115:1;14110:3;14106:11;14099:55;14185:5;14180:2;14175:3;14171:12;14164:27;14217:2;14212:3;14208:12;14201:19;;14005:221;;;:::o;14232:366::-;;14395:67;14459:2;14454:3;14395:67;:::i;:::-;14388:74;;14492:34;14488:1;14483:3;14479:11;14472:55;14558:4;14553:2;14548:3;14544:12;14537:26;14589:2;14584:3;14580:12;14573:19;;14378:220;;;:::o;14604:330::-;;14767:67;14831:2;14826:3;14767:67;:::i;:::-;14760:74;;14864:34;14860:1;14855:3;14851:11;14844:55;14925:2;14920:3;14916:12;14909:19;;14750:184;;;:::o;14940:376::-;;15103:67;15167:2;15162:3;15103:67;:::i;:::-;15096:74;;15200:34;15196:1;15191:3;15187:11;15180:55;15266:14;15261:2;15256:3;15252:12;15245:36;15307:2;15302:3;15298:12;15291:19;;15086:230;;;:::o;15322:330::-;;15485:67;15549:2;15544:3;15485:67;:::i;:::-;15478:74;;15582:34;15578:1;15573:3;15569:11;15562:55;15643:2;15638:3;15634:12;15627:19;;15468:184;;;:::o;15658:373::-;;15821:67;15885:2;15880:3;15821:67;:::i;:::-;15814:74;;15918:34;15914:1;15909:3;15905:11;15898:55;15984:11;15979:2;15974:3;15970:12;15963:33;16022:2;16017:3;16013:12;16006:19;;15804:227;;;:::o;16037:379::-;;16200:67;16264:2;16259:3;16200:67;:::i;:::-;16193:74;;16297:34;16293:1;16288:3;16284:11;16277:55;16363:17;16358:2;16353:3;16349:12;16342:39;16407:2;16402:3;16398:12;16391:19;;16183:233;;;:::o;16422:365::-;;16585:67;16649:2;16644:3;16585:67;:::i;:::-;16578:74;;16682:34;16678:1;16673:3;16669:11;16662:55;16748:3;16743:2;16738:3;16734:12;16727:25;16778:2;16773:3;16769:12;16762:19;;16568:219;;;:::o;16793:381::-;;16956:67;17020:2;17015:3;16956:67;:::i;:::-;16949:74;;17053:34;17049:1;17044:3;17040:11;17033:55;17119:19;17114:2;17109:3;17105:12;17098:41;17165:2;17160:3;17156:12;17149:19;;16939:235;;;:::o;17180:320::-;;17343:67;17407:2;17402:3;17343:67;:::i;:::-;17336:74;;17440:24;17436:1;17431:3;17427:11;17420:45;17491:2;17486:3;17482:12;17475:19;;17326:174;;;:::o;17506:327::-;;17669:67;17733:2;17728:3;17669:67;:::i;:::-;17662:74;;17766:31;17762:1;17757:3;17753:11;17746:52;17824:2;17819:3;17815:12;17808:19;;17652:181;;;:::o;17839:377::-;;18002:67;18066:2;18061:3;18002:67;:::i;:::-;17995:74;;18099:34;18095:1;18090:3;18086:11;18079:55;18165:15;18160:2;18155:3;18151:12;18144:37;18207:2;18202:3;18198:12;18191:19;;17985:231;;;:::o;18222:368::-;;18385:67;18449:2;18444:3;18385:67;:::i;:::-;18378:74;;18482:34;18478:1;18473:3;18469:11;18462:55;18548:6;18543:2;18538:3;18534:12;18527:28;18581:2;18576:3;18572:12;18565:19;;18368:222;;;:::o;18596:108::-;18673:24;18691:5;18673:24;:::i;:::-;18668:3;18661:37;18651:53;;:::o;18710:118::-;18797:24;18815:5;18797:24;:::i;:::-;18792:3;18785:37;18775:53;;:::o;18834:271::-;;18986:93;19075:3;19066:6;18986:93;:::i;:::-;18979:100;;19096:3;19089:10;;18968:137;;;;:::o;19111:435::-;;19313:95;19404:3;19395:6;19313:95;:::i;:::-;19306:102;;19425:95;19516:3;19507:6;19425:95;:::i;:::-;19418:102;;19537:3;19530:10;;19295:251;;;;;:::o;19552:222::-;;19683:2;19672:9;19668:18;19660:26;;19696:71;19764:1;19753:9;19749:17;19740:6;19696:71;:::i;:::-;19650:124;;;;:::o;19780:672::-;;20029:3;20018:9;20014:19;20006:27;;20043:87;20127:1;20116:9;20112:17;20103:6;20043:87;:::i;:::-;20140:72;20208:2;20197:9;20193:18;20184:6;20140:72;:::i;:::-;20222;20290:2;20279:9;20275:18;20266:6;20222:72;:::i;:::-;20341:9;20335:4;20331:20;20326:2;20315:9;20311:18;20304:48;20369:76;20440:4;20431:6;20369:76;:::i;:::-;20361:84;;19996:456;;;;;;;:::o;20458:332::-;;20617:2;20606:9;20602:18;20594:26;;20630:71;20698:1;20687:9;20683:17;20674:6;20630:71;:::i;:::-;20711:72;20779:2;20768:9;20764:18;20755:6;20711:72;:::i;:::-;20584:206;;;;;:::o;20796:373::-;;20977:2;20966:9;20962:18;20954:26;;21026:9;21020:4;21016:20;21012:1;21001:9;20997:17;20990:47;21054:108;21157:4;21148:6;21054:108;:::i;:::-;21046:116;;20944:225;;;;:::o;21175:210::-;;21300:2;21289:9;21285:18;21277:26;;21313:65;21375:1;21364:9;21360:17;21351:6;21313:65;:::i;:::-;21267:118;;;;:::o;21391:250::-;;21536:2;21525:9;21521:18;21513:26;;21549:85;21631:1;21620:9;21616:17;21607:6;21549:85;:::i;:::-;21503:138;;;;:::o;21647:313::-;;21798:2;21787:9;21783:18;21775:26;;21847:9;21841:4;21837:20;21833:1;21822:9;21818:17;21811:47;21875:78;21948:4;21939:6;21875:78;:::i;:::-;21867:86;;21765:195;;;;:::o;21966:419::-;;22170:2;22159:9;22155:18;22147:26;;22219:9;22213:4;22209:20;22205:1;22194:9;22190:17;22183:47;22247:131;22373:4;22247:131;:::i;:::-;22239:139;;22137:248;;;:::o;22391:419::-;;22595:2;22584:9;22580:18;22572:26;;22644:9;22638:4;22634:20;22630:1;22619:9;22615:17;22608:47;22672:131;22798:4;22672:131;:::i;:::-;22664:139;;22562:248;;;:::o;22816:419::-;;23020:2;23009:9;23005:18;22997:26;;23069:9;23063:4;23059:20;23055:1;23044:9;23040:17;23033:47;23097:131;23223:4;23097:131;:::i;:::-;23089:139;;22987:248;;;:::o;23241:419::-;;23445:2;23434:9;23430:18;23422:26;;23494:9;23488:4;23484:20;23480:1;23469:9;23465:17;23458:47;23522:131;23648:4;23522:131;:::i;:::-;23514:139;;23412:248;;;:::o;23666:419::-;;23870:2;23859:9;23855:18;23847:26;;23919:9;23913:4;23909:20;23905:1;23894:9;23890:17;23883:47;23947:131;24073:4;23947:131;:::i;:::-;23939:139;;23837:248;;;:::o;24091:419::-;;24295:2;24284:9;24280:18;24272:26;;24344:9;24338:4;24334:20;24330:1;24319:9;24315:17;24308:47;24372:131;24498:4;24372:131;:::i;:::-;24364:139;;24262:248;;;:::o;24516:419::-;;24720:2;24709:9;24705:18;24697:26;;24769:9;24763:4;24759:20;24755:1;24744:9;24740:17;24733:47;24797:131;24923:4;24797:131;:::i;:::-;24789:139;;24687:248;;;:::o;24941:419::-;;25145:2;25134:9;25130:18;25122:26;;25194:9;25188:4;25184:20;25180:1;25169:9;25165:17;25158:47;25222:131;25348:4;25222:131;:::i;:::-;25214:139;;25112:248;;;:::o;25366:419::-;;25570:2;25559:9;25555:18;25547:26;;25619:9;25613:4;25609:20;25605:1;25594:9;25590:17;25583:47;25647:131;25773:4;25647:131;:::i;:::-;25639:139;;25537:248;;;:::o;25791:419::-;;25995:2;25984:9;25980:18;25972:26;;26044:9;26038:4;26034:20;26030:1;26019:9;26015:17;26008:47;26072:131;26198:4;26072:131;:::i;:::-;26064:139;;25962:248;;;:::o;26216:419::-;;26420:2;26409:9;26405:18;26397:26;;26469:9;26463:4;26459:20;26455:1;26444:9;26440:17;26433:47;26497:131;26623:4;26497:131;:::i;:::-;26489:139;;26387:248;;;:::o;26641:419::-;;26845:2;26834:9;26830:18;26822:26;;26894:9;26888:4;26884:20;26880:1;26869:9;26865:17;26858:47;26922:131;27048:4;26922:131;:::i;:::-;26914:139;;26812:248;;;:::o;27066:419::-;;27270:2;27259:9;27255:18;27247:26;;27319:9;27313:4;27309:20;27305:1;27294:9;27290:17;27283:47;27347:131;27473:4;27347:131;:::i;:::-;27339:139;;27237:248;;;:::o;27491:419::-;;27695:2;27684:9;27680:18;27672:26;;27744:9;27738:4;27734:20;27730:1;27719:9;27715:17;27708:47;27772:131;27898:4;27772:131;:::i;:::-;27764:139;;27662:248;;;:::o;27916:419::-;;28120:2;28109:9;28105:18;28097:26;;28169:9;28163:4;28159:20;28155:1;28144:9;28140:17;28133:47;28197:131;28323:4;28197:131;:::i;:::-;28189:139;;28087:248;;;:::o;28341:419::-;;28545:2;28534:9;28530:18;28522:26;;28594:9;28588:4;28584:20;28580:1;28569:9;28565:17;28558:47;28622:131;28748:4;28622:131;:::i;:::-;28614:139;;28512:248;;;:::o;28766:419::-;;28970:2;28959:9;28955:18;28947:26;;29019:9;29013:4;29009:20;29005:1;28994:9;28990:17;28983:47;29047:131;29173:4;29047:131;:::i;:::-;29039:139;;28937:248;;;:::o;29191:419::-;;29395:2;29384:9;29380:18;29372:26;;29444:9;29438:4;29434:20;29430:1;29419:9;29415:17;29408:47;29472:131;29598:4;29472:131;:::i;:::-;29464:139;;29362:248;;;:::o;29616:419::-;;29820:2;29809:9;29805:18;29797:26;;29869:9;29863:4;29859:20;29855:1;29844:9;29840:17;29833:47;29897:131;30023:4;29897:131;:::i;:::-;29889:139;;29787:248;;;:::o;30041:419::-;;30245:2;30234:9;30230:18;30222:26;;30294:9;30288:4;30284:20;30280:1;30269:9;30265:17;30258:47;30322:131;30448:4;30322:131;:::i;:::-;30314:139;;30212:248;;;:::o;30466:419::-;;30670:2;30659:9;30655:18;30647:26;;30719:9;30713:4;30709:20;30705:1;30694:9;30690:17;30683:47;30747:131;30873:4;30747:131;:::i;:::-;30739:139;;30637:248;;;:::o;30891:419::-;;31095:2;31084:9;31080:18;31072:26;;31144:9;31138:4;31134:20;31130:1;31119:9;31115:17;31108:47;31172:131;31298:4;31172:131;:::i;:::-;31164:139;;31062:248;;;:::o;31316:419::-;;31520:2;31509:9;31505:18;31497:26;;31569:9;31563:4;31559:20;31555:1;31544:9;31540:17;31533:47;31597:131;31723:4;31597:131;:::i;:::-;31589:139;;31487:248;;;:::o;31741:419::-;;31945:2;31934:9;31930:18;31922:26;;31994:9;31988:4;31984:20;31980:1;31969:9;31965:17;31958:47;32022:131;32148:4;32022:131;:::i;:::-;32014:139;;31912:248;;;:::o;32166:419::-;;32370:2;32359:9;32355:18;32347:26;;32419:9;32413:4;32409:20;32405:1;32394:9;32390:17;32383:47;32447:131;32573:4;32447:131;:::i;:::-;32439:139;;32337:248;;;:::o;32591:222::-;;32722:2;32711:9;32707:18;32699:26;;32735:71;32803:1;32792:9;32788:17;32779:6;32735:71;:::i;:::-;32689:124;;;;:::o;32819:278::-;;32885:2;32879:9;32869:19;;32927:4;32919:6;32915:17;33034:6;33022:10;33019:22;32998:18;32986:10;32983:34;32980:62;32977:2;;;33045:13;;:::i;:::-;32977:2;33080:10;33076:2;33069:22;32859:238;;;;:::o;33103:326::-;;33254:18;33246:6;33243:30;33240:2;;;33276:13;;:::i;:::-;33240:2;33356:4;33352:9;33345:4;33337:6;33333:17;33329:33;33321:41;;33417:4;33411;33407:15;33399:23;;33169:260;;;:::o;33435:327::-;;33587:18;33579:6;33576:30;33573:2;;;33609:13;;:::i;:::-;33573:2;33689:4;33685:9;33678:4;33670:6;33666:17;33662:33;33654:41;;33750:4;33744;33740:15;33732:23;;33502:260;;;:::o;33768:132::-;;33858:3;33850:11;;33888:4;33883:3;33879:14;33871:22;;33840:60;;;:::o;33906:114::-;;34007:5;34001:12;33991:22;;33980:40;;;:::o;34026:98::-;;34111:5;34105:12;34095:22;;34084:40;;;:::o;34130:99::-;;34216:5;34210:12;34200:22;;34189:40;;;:::o;34235:113::-;;34337:4;34332:3;34328:14;34320:22;;34310:38;;;:::o;34354:184::-;;34487:6;34482:3;34475:19;34527:4;34522:3;34518:14;34503:29;;34465:73;;;;:::o;34544:168::-;;34661:6;34656:3;34649:19;34701:4;34696:3;34692:14;34677:29;;34639:73;;;;:::o;34718:147::-;;34856:3;34841:18;;34831:34;;;;:::o;34871:169::-;;34989:6;34984:3;34977:19;35029:4;35024:3;35020:14;35005:29;;34967:73;;;;:::o;35046:148::-;;35185:3;35170:18;;35160:34;;;;:::o;35200:96::-;;35266:24;35284:5;35266:24;:::i;:::-;35255:35;;35245:51;;;:::o;35302:104::-;;35376:24;35394:5;35376:24;:::i;:::-;35365:35;;35355:51;;;:::o;35412:90::-;;35489:5;35482:13;35475:21;35464:32;;35454:48;;;:::o;35508:149::-;;35584:66;35577:5;35573:78;35562:89;;35552:105;;;:::o;35663:126::-;;35740:42;35733:5;35729:54;35718:65;;35708:81;;;:::o;35795:77::-;;35861:5;35850:16;;35840:32;;;:::o;35878:154::-;;35975:51;36020:5;35975:51;:::i;:::-;35962:64;;35952:80;;;:::o;36038:127::-;;36135:24;36153:5;36135:24;:::i;:::-;36122:37;;36112:53;;;:::o;36171:154::-;36255:6;36250:3;36245;36232:30;36317:1;36308:6;36303:3;36299:16;36292:27;36222:103;;;:::o;36331:307::-;36399:1;36409:113;36423:6;36420:1;36417:13;36409:113;;;36508:1;36503:3;36499:11;36493:18;36489:1;36484:3;36480:11;36473:39;36445:2;36442:1;36438:10;36433:15;;36409:113;;;36540:6;36537:1;36534:13;36531:2;;;36620:1;36611:6;36606:3;36602:16;36595:27;36531:2;36380:258;;;;:::o;36644:48::-;36677:9;36698:102;;36790:2;36786:7;36781:2;36774:5;36770:14;36766:28;36756:38;;36746:54;;;:::o;36806:122::-;36879:24;36897:5;36879:24;:::i;:::-;36872:5;36869:35;36859:2;;36918:1;36915;36908:12;36859:2;36849:79;:::o;36934:116::-;37004:21;37019:5;37004:21;:::i;:::-;36997:5;36994:32;36984:2;;37040:1;37037;37030:12;36984:2;36974:76;:::o;37056:120::-;37128:23;37145:5;37128:23;:::i;:::-;37121:5;37118:34;37108:2;;37166:1;37163;37156:12;37108:2;37098:78;:::o;37182:122::-;37255:24;37273:5;37255:24;:::i;:::-;37248:5;37245:35;37235:2;;37294:1;37291;37284:12;37235:2;37225:79;:::o

Swarm Source

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