ETH Price: $3,822.81 (+1.66%)
Gas: 4 Gwei

Token

AI Pixel Buddies (AIPB)
 

Overview

Max Total Supply

1,000 AIPB

Holders

387

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 AIPB
0x5a17fb43794212f5fac2298747c8757b8dd94a17
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:
AIPixelBuddies

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// GO TO LINE 1894 TO SEE WHERE THE AI PIXEL BUDDIES CONTRACT STARTS
 
// File: @openzeppelin/contracts/utils/Context.sol

pragma solidity >=0.6.0 <0.8.0;

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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



pragma solidity >=0.6.2 <0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity >=0.6.2 <0.8.0;


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

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

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

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

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



pragma solidity >=0.6.2 <0.8.0;


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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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



pragma solidity >=0.6.0 <0.8.0;


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

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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity >=0.6.2 <0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

            bytes32 lastvalue = set._values[lastIndex];

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

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

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

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

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

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

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

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

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

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

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

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


    // UintSet

    struct UintSet {
        Set _inner;
    }

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

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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

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

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

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

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

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

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

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

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

            MapEntry storage lastEntry = map._entries[lastIndex];

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

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

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

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

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

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

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

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

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

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

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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

    // Base URI
    string private _baseURI;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

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

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

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

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

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

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(tokenId);

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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


// The air around us is filled with data. Binary signals pulsating in a neverending stream. From Saratoga to Caracas. From Tokyo to Moscow. 
// If you were to zoom in closely on these signals, you'd be surprised what you can find. 
// Something is hiding between the ones and zeroes.

// We bring you AI Pixel Buddies. A collection of 1000 dioramas that comemorates creativity in connection to technological advancements. 
// Each piece is AI generated from scratch (no reused assets)
// and the collection as a whole is an attempt to in a humorous way capture the invisible world of AI that exists all around us.

// psst, the dimensions seems to be suitable for header photos

pragma solidity ^0.7.0;
pragma abicoder v2;

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

    string public PIXELBUDDY_PROVENANCE = ""; // IPFS URL WILL BE ADDED WHEN PIXEL BUDDIES ARE ALL SOLD OUT
    
    uint256 public constant pixelBuddyPrice = 35000000000000000; // 0.035 ETH

    uint public constant maxPixelBuddyPurchase = 10;

    uint256 public constant MAX_PIXELBUDDIES = 1000;

    bool public saleIsActive = false;
    
    // Reserve 15 Pixel Buddies for team - Giveaways/Prizes etc
    uint public pixelBuddyReserve = 15;

    constructor() ERC721("AI Pixel Buddies", "AIPB") { }
    
    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        msg.sender.transfer(balance);
    }
    
    function reservePixelBuddies(address _to, uint256 _reserveAmount) public onlyOwner {        
        uint supply = totalSupply();
        require(_reserveAmount > 0 && _reserveAmount <= pixelBuddyReserve, "Not enough reserve left for team");
        for (uint i = 0; i < _reserveAmount; i++) {
            _safeMint(_to, supply + i);
        }
        pixelBuddyReserve = pixelBuddyReserve.sub(_reserveAmount);
    }


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

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


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

    function mintPixelBuddy(uint numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint PixelBuddy");
        require(numberOfTokens > 0 && numberOfTokens <= maxPixelBuddyPurchase, "Can only mint 10 tokens at a time");
        require(totalSupply().add(numberOfTokens) <= MAX_PIXELBUDDIES, "Purchase would exceed max supply of Pixel Buddies");
        require(msg.value >= pixelBuddyPrice.mul(numberOfTokens), "Ether value sent is not correct");
        
        for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = totalSupply();
            if (totalSupply() < MAX_PIXELBUDDIES) {
                _safeMint(msg.sender, mintIndex);
            }
        }

    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PIXELBUDDIES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PIXELBUDDY_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPixelBuddyPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintPixelBuddy","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":"pixelBuddyPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pixelBuddyReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"reservePixelBuddies","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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"}]

608060405260405180602001604052806000815250600b90805190602001906200002b929190620002f1565b506000600c60006101000a81548160ff021916908315150217905550600f600d553480156200005957600080fd5b506040518060400160405280601081526020017f414920506978656c2042756464696573000000000000000000000000000000008152506040518060400160405280600481526020017f4149504200000000000000000000000000000000000000000000000000000000815250620000de6301ffc9a760e01b6200021160201b60201c565b8160069080519060200190620000f6929190620002f1565b5080600790805190602001906200010f929190620002f1565b50620001286380ac58cd60e01b6200021160201b60201c565b62000140635b5e139f60e01b6200021160201b60201c565b6200015863780e9d6360e01b6200021160201b60201c565b505060006200016c620002e960201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200041c565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614156200027d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200027490620003e9565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928262000329576000855562000375565b82601f106200034457805160ff191683800117855562000375565b8280016001018555821562000375579182015b828111156200037457825182559160200191906001019062000357565b5b50905062000384919062000388565b5090565b5b80821115620003a357600081600090555060010162000389565b5090565b6000620003b6601c836200040b565b91507f4552433136353a20696e76616c696420696e74657266616365206964000000006000830152602082019050919050565b600060208201905081810360008301526200040481620003a7565b9050919050565b600082825260208201905092915050565b614360806200042c6000396000f3fe6080604052600436106101ee5760003560e01c80636cd5ad7e1161010d578063b88d4fde116100a0578063e8d715291161006f578063e8d71529146106eb578063e985e9c514610716578063eb8d244414610753578063f2fde38b1461077e578063fcc548f4146107a7576101ee565b8063b88d4fde1461062f578063c87b56dd14610658578063cc50fa0114610695578063e25d706c146106c0576101ee565b80638462151c116100dc5780638462151c146105735780638da5cb5b146105b057806395d89b41146105db578063a22cb46514610606576101ee565b80636cd5ad7e146104cb57806370a08231146104f6578063715018a614610533578063715abb5e1461054a576101ee565b806334918dfd116101855780634f6ccce7116101545780634f6ccce7146103fd57806355f804b31461043a5780636352211e146104635780636c0360eb146104a0576101ee565b806334918dfd1461037b5780633ccfd60b1461039257806342842e0e146103a957806347637729146103d2576101ee565b806310969523116101c157806310969523146102c157806318160ddd146102ea57806323b872dd146103155780632f745c591461033e576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190613047565b6107c3565b6040516102279190613cc8565b60405180910390f35b34801561023c57600080fd5b5061024561082a565b6040516102529190613ce3565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d91906130da565b6108cc565b60405161028f9190613c3f565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba919061300b565b610951565b005b3480156102cd57600080fd5b506102e860048036038101906102e39190613099565b610a69565b005b3480156102f657600080fd5b506102ff610aff565b60405161030c9190614065565b60405180910390f35b34801561032157600080fd5b5061033c60048036038101906103379190612f05565b610b10565b005b34801561034a57600080fd5b506103656004803603810190610360919061300b565b610b70565b6040516103729190614065565b60405180910390f35b34801561038757600080fd5b50610390610bcb565b005b34801561039e57600080fd5b506103a7610c73565b005b3480156103b557600080fd5b506103d060048036038101906103cb9190612f05565b610d3e565b005b3480156103de57600080fd5b506103e7610d5e565b6040516103f49190613ce3565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f91906130da565b610dfc565b6040516104319190614065565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c9190613099565b610e1f565b005b34801561046f57600080fd5b5061048a600480360381019061048591906130da565b610ea7565b6040516104979190613c3f565b60405180910390f35b3480156104ac57600080fd5b506104b5610ede565b6040516104c29190613ce3565b60405180910390f35b3480156104d757600080fd5b506104e0610f80565b6040516104ed9190614065565b60405180910390f35b34801561050257600080fd5b5061051d60048036038101906105189190612ea0565b610f85565b60405161052a9190614065565b60405180910390f35b34801561053f57600080fd5b50610548611044565b005b34801561055657600080fd5b50610571600480360381019061056c919061300b565b611181565b005b34801561057f57600080fd5b5061059a60048036038101906105959190612ea0565b61129f565b6040516105a79190613ca6565b60405180910390f35b3480156105bc57600080fd5b506105c5611398565b6040516105d29190613c3f565b60405180910390f35b3480156105e757600080fd5b506105f06113c2565b6040516105fd9190613ce3565b60405180910390f35b34801561061257600080fd5b5061062d60048036038101906106289190612fcf565b611464565b005b34801561063b57600080fd5b5061065660048036038101906106519190612f54565b6115e5565b005b34801561066457600080fd5b5061067f600480360381019061067a91906130da565b611647565b60405161068c9190613ce3565b60405180910390f35b3480156106a157600080fd5b506106aa6117ca565b6040516106b79190614065565b60405180910390f35b3480156106cc57600080fd5b506106d56117d5565b6040516106e29190614065565b60405180910390f35b3480156106f757600080fd5b506107006117db565b60405161070d9190614065565b60405180910390f35b34801561072257600080fd5b5061073d60048036038101906107389190612ec9565b6117e1565b60405161074a9190613cc8565b60405180910390f35b34801561075f57600080fd5b50610768611875565b6040516107759190613cc8565b60405180910390f35b34801561078a57600080fd5b506107a560048036038101906107a09190612ea0565b611888565b005b6107c160048036038101906107bc91906130da565b611a34565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156108c25780601f10610897576101008083540402835291602001916108c2565b820191906000526020600020905b8154815290600101906020018083116108a557829003601f168201915b5050505050905090565b60006108d782611bd2565b610916576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090d90613f25565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095c82610ea7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c490613fc5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109ec611bef565b73ffffffffffffffffffffffffffffffffffffffff161480610a1b5750610a1a81610a15611bef565b6117e1565b5b610a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5190613e85565b60405180910390fd5b610a648383611bf7565b505050565b610a71611bef565b73ffffffffffffffffffffffffffffffffffffffff16610a8f611398565b73ffffffffffffffffffffffffffffffffffffffff1614610ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adc90613f45565b60405180910390fd5b80600b9080519060200190610afb929190612cbc565b5050565b6000610b0b6002611cb0565b905090565b610b21610b1b611bef565b82611cc5565b610b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5790613fe5565b60405180910390fd5b610b6b838383611da3565b505050565b6000610bc382600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611fba90919063ffffffff16565b905092915050565b610bd3611bef565b73ffffffffffffffffffffffffffffffffffffffff16610bf1611398565b73ffffffffffffffffffffffffffffffffffffffff1614610c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3e90613f45565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b610c7b611bef565b73ffffffffffffffffffffffffffffffffffffffff16610c99611398565b73ffffffffffffffffffffffffffffffffffffffff1614610cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce690613f45565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d3a573d6000803e3d6000fd5b5050565b610d59838383604051806020016040528060008152506115e5565b505050565b600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610df45780601f10610dc957610100808354040283529160200191610df4565b820191906000526020600020905b815481529060010190602001808311610dd757829003601f168201915b505050505081565b600080610e13836002611fd490919063ffffffff16565b50905080915050919050565b610e27611bef565b73ffffffffffffffffffffffffffffffffffffffff16610e45611398565b73ffffffffffffffffffffffffffffffffffffffff1614610e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9290613f45565b60405180910390fd5b610ea481612000565b50565b6000610ed78260405180606001604052806029815260200161430260299139600261201a9092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f765780601f10610f4b57610100808354040283529160200191610f76565b820191906000526020600020905b815481529060010190602001808311610f5957829003601f168201915b5050505050905090565b600a81565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fed90613ea5565b60405180910390fd5b61103d600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612039565b9050919050565b61104c611bef565b73ffffffffffffffffffffffffffffffffffffffff1661106a611398565b73ffffffffffffffffffffffffffffffffffffffff16146110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b790613f45565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611189611bef565b73ffffffffffffffffffffffffffffffffffffffff166111a7611398565b73ffffffffffffffffffffffffffffffffffffffff16146111fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f490613f45565b60405180910390fd5b6000611207610aff565b905060008211801561121b5750600d548211155b61125a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125190613da5565b60405180910390fd5b60005b8281101561127e576112718482840161204e565b808060010191505061125d565b5061129482600d5461206c90919063ffffffff16565b600d81905550505050565b606060006112ac83610f85565b9050600081141561130757600067ffffffffffffffff811180156112cf57600080fd5b506040519080825280602002602001820160405280156112fe5781602001602082028036833780820191505090505b50915050611393565b60008167ffffffffffffffff8111801561132057600080fd5b5060405190808252806020026020018201604052801561134f5781602001602082028036833780820191505090505b50905060005b8281101561138c576113678582610b70565b82828151811061137357fe5b6020026020010181815250508080600101915050611355565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561145a5780601f1061142f5761010080835404028352916020019161145a565b820191906000526020600020905b81548152906001019060200180831161143d57829003601f168201915b5050505050905090565b61146c611bef565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d190613de5565b60405180910390fd5b80600560006114e7611bef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611594611bef565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115d99190613cc8565b60405180910390a35050565b6115f66115f0611bef565b83611cc5565b611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c90613fe5565b60405180910390fd5b611641848484846120bc565b50505050565b606061165282611bd2565b611691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168890613fa5565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561173a5780601f1061170f5761010080835404028352916020019161173a565b820191906000526020600020905b81548152906001019060200180831161171d57829003601f168201915b50505050509050600061174b610ede565b90506000815114156117615781925050506117c5565b60008251111561179657808260405160200161177e929190613c1b565b604051602081830303815290604052925050506117c5565b806117a085612118565b6040516020016117b1929190613c1b565b604051602081830303815290604052925050505b919050565b667c58508723800081565b6103e881565b600d5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c60009054906101000a900460ff1681565b611890611bef565b73ffffffffffffffffffffffffffffffffffffffff166118ae611398565b73ffffffffffffffffffffffffffffffffffffffff1614611904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fb90613f45565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196b90613d45565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c60009054906101000a900460ff16611a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7a90613f85565b60405180910390fd5b600081118015611a945750600a8111155b611ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aca90614045565b60405180910390fd5b6103e8611af082611ae2610aff565b61225f90919063ffffffff16565b1115611b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2890614025565b60405180910390fd5b611b4b81667c5850872380006122b490919063ffffffff16565b341015611b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8490613e05565b60405180910390fd5b60005b81811015611bce576000611ba2610aff565b90506103e8611baf610aff565b1015611bc057611bbf338261204e565b5b508080600101915050611b90565b5050565b6000611be882600261232490919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c6a83610ea7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611cbe8260000161233e565b9050919050565b6000611cd082611bd2565b611d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0690613e65565b60405180910390fd5b6000611d1a83610ea7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d8957508373ffffffffffffffffffffffffffffffffffffffff16611d71846108cc565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d9a5750611d9981856117e1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611dc382610ea7565b73ffffffffffffffffffffffffffffffffffffffff1614611e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1090613f65565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8090613dc5565b60405180910390fd5b611e9483838361234f565b611e9f600082611bf7565b611ef081600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061235490919063ffffffff16565b50611f4281600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061236e90919063ffffffff16565b50611f59818360026123889092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000611fc983600001836123bd565b60001c905092915050565b600080600080611fe7866000018661242a565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190612016929190612cbc565b5050565b600061202d846000018460001b846124ad565b60001c90509392505050565b60006120478260000161253e565b9050919050565b61206882826040518060200160405280600081525061254f565b5050565b6000828211156120b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a890613e25565b60405180910390fd5b818303905092915050565b6120c7848484611da3565b6120d3848484846125aa565b612112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210990613d25565b60405180910390fd5b50505050565b60606000821415612160576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061225a565b600082905060005b6000821461218a578080600101915050600a828161218257fe5b049150612168565b60008167ffffffffffffffff811180156121a357600080fd5b506040519080825280601f01601f1916602001820160405280156121d65781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461225257600a84816121f757fe5b0660300160f81b8282806001900393508151811061221157fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161224a57fe5b0493506121e5565b819450505050505b919050565b6000808284019050838110156122aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a190613d85565b60405180910390fd5b8091505092915050565b6000808314156122c7576000905061231e565b60008284029050828482816122d857fe5b0414612319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231090613f05565b60405180910390fd5b809150505b92915050565b6000612336836000018360001b61270e565b905092915050565b600081600001805490509050919050565b505050565b6000612366836000018360001b612731565b905092915050565b6000612380836000018360001b612819565b905092915050565b60006123b4846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b612889565b90509392505050565b600081836000018054905011612408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ff90613d05565b60405180910390fd5b82600001828154811061241757fe5b9060005260206000200154905092915050565b60008082846000018054905011612476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246d90613ec5565b60405180910390fd5b600084600001848154811061248757fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b6000808460010160008581526020019081526020016000205490506000811415839061250f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125069190613ce3565b60405180910390fd5b5084600001600182038154811061252257fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b6125598383612965565b61256660008484846125aa565b6125a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259c90613d25565b60405180910390fd5b505050565b60006125cb8473ffffffffffffffffffffffffffffffffffffffff16612af3565b6125d85760019050612706565b600061269f63150b7a0260e01b6125ed611bef565b8887876040516024016126039493929190613c5a565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040518060600160405280603281526020016142d0603291398773ffffffffffffffffffffffffffffffffffffffff16612b069092919063ffffffff16565b90506000818060200190518101906126b79190613070565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b6000808360010160008481526020019081526020016000205490506000811461280d576000600182039050600060018660000180549050039050600086600001828154811061277c57fe5b906000526020600020015490508087600001848154811061279957fe5b90600052602060002001819055506001830187600101600083815260200190815260200160002081905550866000018054806127d157fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612813565b60009150505b92915050565b60006128258383612b1e565b61287e578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612883565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156129305784600001604051806040016040528086815260200185815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050846000018054905085600101600086815260200190815260200160002081905550600191505061295e565b8285600001600183038154811061294357fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cc90613ee5565b60405180910390fd5b6129de81611bd2565b15612a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1590613d65565b60405180910390fd5b612a2a6000838361234f565b612a7b81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061236e90919063ffffffff16565b50612a92818360026123889092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060612b158484600085612b41565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015612b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7d90613e45565b60405180910390fd5b612b8f85612af3565b612bce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc590614005565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051612bf79190613c04565b60006040518083038185875af1925050503d8060008114612c34576040519150601f19603f3d011682016040523d82523d6000602084013e612c39565b606091505b5091509150612c49828286612c55565b92505050949350505050565b60608315612c6557829050612cb5565b600083511115612c785782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cac9190613ce3565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282612cf25760008555612d39565b82601f10612d0b57805160ff1916838001178555612d39565b82800160010185558215612d39579182015b82811115612d38578251825591602001919060010190612d1d565b5b509050612d469190612d4a565b5090565b5b80821115612d63576000816000905550600101612d4b565b5090565b6000612d7a612d75846140b1565b614080565b905082815260208101848484011115612d9257600080fd5b612d9d84828561421e565b509392505050565b6000612db8612db3846140e1565b614080565b905082815260208101848484011115612dd057600080fd5b612ddb84828561421e565b509392505050565b600081359050612df281614273565b92915050565b600081359050612e078161428a565b92915050565b600081359050612e1c816142a1565b92915050565b600081519050612e31816142a1565b92915050565b600082601f830112612e4857600080fd5b8135612e58848260208601612d67565b91505092915050565b600082601f830112612e7257600080fd5b8135612e82848260208601612da5565b91505092915050565b600081359050612e9a816142b8565b92915050565b600060208284031215612eb257600080fd5b6000612ec084828501612de3565b91505092915050565b60008060408385031215612edc57600080fd5b6000612eea85828601612de3565b9250506020612efb85828601612de3565b9150509250929050565b600080600060608486031215612f1a57600080fd5b6000612f2886828701612de3565b9350506020612f3986828701612de3565b9250506040612f4a86828701612e8b565b9150509250925092565b60008060008060808587031215612f6a57600080fd5b6000612f7887828801612de3565b9450506020612f8987828801612de3565b9350506040612f9a87828801612e8b565b925050606085013567ffffffffffffffff811115612fb757600080fd5b612fc387828801612e37565b91505092959194509250565b60008060408385031215612fe257600080fd5b6000612ff085828601612de3565b925050602061300185828601612df8565b9150509250929050565b6000806040838503121561301e57600080fd5b600061302c85828601612de3565b925050602061303d85828601612e8b565b9150509250929050565b60006020828403121561305957600080fd5b600061306784828501612e0d565b91505092915050565b60006020828403121561308257600080fd5b600061309084828501612e22565b91505092915050565b6000602082840312156130ab57600080fd5b600082013567ffffffffffffffff8111156130c557600080fd5b6130d184828501612e61565b91505092915050565b6000602082840312156130ec57600080fd5b60006130fa84828501612e8b565b91505092915050565b600061310f8383613be6565b60208301905092915050565b613124816141aa565b82525050565b61313381614198565b82525050565b600061314482614121565b61314e818561414f565b935061315983614111565b8060005b8381101561318a5781516131718882613103565b975061317c83614142565b92505060018101905061315d565b5085935050505092915050565b6131a0816141bc565b82525050565b60006131b18261412c565b6131bb8185614160565b93506131cb81856020860161422d565b6131d481614262565b840191505092915050565b60006131ea8261412c565b6131f48185614171565b935061320481856020860161422d565b80840191505092915050565b600061321b82614137565b613225818561417c565b935061323581856020860161422d565b61323e81614262565b840191505092915050565b600061325482614137565b61325e818561418d565b935061326e81856020860161422d565b80840191505092915050565b600061328760228361417c565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006132ed60328361417c565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061335360268361417c565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006133b9601c8361417c565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006133f9601b8361417c565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b600061343960208361417c565b91507f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d6000830152602082019050919050565b600061347960248361417c565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134df60198361417c565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061351f601f8361417c565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b600061355f601e8361417c565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b600061359f60268361417c565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613605602c8361417c565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061366b60388361417c565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006136d1602a8361417c565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061373760228361417c565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061379d60208361417c565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006137dd60218361417c565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613843602c8361417c565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006138a960208361417c565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006138e960298361417c565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061394f60268361417c565b91507f53616c65206d7573742062652061637469766520746f206d696e74205069786560008301527f6c427564647900000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006139b5602f8361417c565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613a1b60218361417c565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a8160318361417c565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613ae7601d8361417c565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b6000613b2760318361417c565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f6620506978656c20427564646965730000000000000000000000000000006020830152604082019050919050565b6000613b8d60218361417c565b91507f43616e206f6e6c79206d696e7420313020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b613bef81614214565b82525050565b613bfe81614214565b82525050565b6000613c1082846131df565b915081905092915050565b6000613c278285613249565b9150613c338284613249565b91508190509392505050565b6000602082019050613c54600083018461312a565b92915050565b6000608082019050613c6f600083018761311b565b613c7c602083018661312a565b613c896040830185613bf5565b8181036060830152613c9b81846131a6565b905095945050505050565b60006020820190508181036000830152613cc08184613139565b905092915050565b6000602082019050613cdd6000830184613197565b92915050565b60006020820190508181036000830152613cfd8184613210565b905092915050565b60006020820190508181036000830152613d1e8161327a565b9050919050565b60006020820190508181036000830152613d3e816132e0565b9050919050565b60006020820190508181036000830152613d5e81613346565b9050919050565b60006020820190508181036000830152613d7e816133ac565b9050919050565b60006020820190508181036000830152613d9e816133ec565b9050919050565b60006020820190508181036000830152613dbe8161342c565b9050919050565b60006020820190508181036000830152613dde8161346c565b9050919050565b60006020820190508181036000830152613dfe816134d2565b9050919050565b60006020820190508181036000830152613e1e81613512565b9050919050565b60006020820190508181036000830152613e3e81613552565b9050919050565b60006020820190508181036000830152613e5e81613592565b9050919050565b60006020820190508181036000830152613e7e816135f8565b9050919050565b60006020820190508181036000830152613e9e8161365e565b9050919050565b60006020820190508181036000830152613ebe816136c4565b9050919050565b60006020820190508181036000830152613ede8161372a565b9050919050565b60006020820190508181036000830152613efe81613790565b9050919050565b60006020820190508181036000830152613f1e816137d0565b9050919050565b60006020820190508181036000830152613f3e81613836565b9050919050565b60006020820190508181036000830152613f5e8161389c565b9050919050565b60006020820190508181036000830152613f7e816138dc565b9050919050565b60006020820190508181036000830152613f9e81613942565b9050919050565b60006020820190508181036000830152613fbe816139a8565b9050919050565b60006020820190508181036000830152613fde81613a0e565b9050919050565b60006020820190508181036000830152613ffe81613a74565b9050919050565b6000602082019050818103600083015261401e81613ada565b9050919050565b6000602082019050818103600083015261403e81613b1a565b9050919050565b6000602082019050818103600083015261405e81613b80565b9050919050565b600060208201905061407a6000830184613bf5565b92915050565b6000604051905081810181811067ffffffffffffffff821117156140a7576140a6614260565b5b8060405250919050565b600067ffffffffffffffff8211156140cc576140cb614260565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156140fc576140fb614260565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006141a3826141f4565b9050919050565b60006141b5826141f4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561424b578082015181840152602081019050614230565b8381111561425a576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b61427c81614198565b811461428757600080fd5b50565b614293816141bc565b811461429e57600080fd5b50565b6142aa816141c8565b81146142b557600080fd5b50565b6142c181614214565b81146142cc57600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220cca8ac2900179a0c1a1262af842a0081c659d3977b94338cc16417b8c27b5f3a64736f6c63430007060033

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80636cd5ad7e1161010d578063b88d4fde116100a0578063e8d715291161006f578063e8d71529146106eb578063e985e9c514610716578063eb8d244414610753578063f2fde38b1461077e578063fcc548f4146107a7576101ee565b8063b88d4fde1461062f578063c87b56dd14610658578063cc50fa0114610695578063e25d706c146106c0576101ee565b80638462151c116100dc5780638462151c146105735780638da5cb5b146105b057806395d89b41146105db578063a22cb46514610606576101ee565b80636cd5ad7e146104cb57806370a08231146104f6578063715018a614610533578063715abb5e1461054a576101ee565b806334918dfd116101855780634f6ccce7116101545780634f6ccce7146103fd57806355f804b31461043a5780636352211e146104635780636c0360eb146104a0576101ee565b806334918dfd1461037b5780633ccfd60b1461039257806342842e0e146103a957806347637729146103d2576101ee565b806310969523116101c157806310969523146102c157806318160ddd146102ea57806323b872dd146103155780632f745c591461033e576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190613047565b6107c3565b6040516102279190613cc8565b60405180910390f35b34801561023c57600080fd5b5061024561082a565b6040516102529190613ce3565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d91906130da565b6108cc565b60405161028f9190613c3f565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba919061300b565b610951565b005b3480156102cd57600080fd5b506102e860048036038101906102e39190613099565b610a69565b005b3480156102f657600080fd5b506102ff610aff565b60405161030c9190614065565b60405180910390f35b34801561032157600080fd5b5061033c60048036038101906103379190612f05565b610b10565b005b34801561034a57600080fd5b506103656004803603810190610360919061300b565b610b70565b6040516103729190614065565b60405180910390f35b34801561038757600080fd5b50610390610bcb565b005b34801561039e57600080fd5b506103a7610c73565b005b3480156103b557600080fd5b506103d060048036038101906103cb9190612f05565b610d3e565b005b3480156103de57600080fd5b506103e7610d5e565b6040516103f49190613ce3565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f91906130da565b610dfc565b6040516104319190614065565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c9190613099565b610e1f565b005b34801561046f57600080fd5b5061048a600480360381019061048591906130da565b610ea7565b6040516104979190613c3f565b60405180910390f35b3480156104ac57600080fd5b506104b5610ede565b6040516104c29190613ce3565b60405180910390f35b3480156104d757600080fd5b506104e0610f80565b6040516104ed9190614065565b60405180910390f35b34801561050257600080fd5b5061051d60048036038101906105189190612ea0565b610f85565b60405161052a9190614065565b60405180910390f35b34801561053f57600080fd5b50610548611044565b005b34801561055657600080fd5b50610571600480360381019061056c919061300b565b611181565b005b34801561057f57600080fd5b5061059a60048036038101906105959190612ea0565b61129f565b6040516105a79190613ca6565b60405180910390f35b3480156105bc57600080fd5b506105c5611398565b6040516105d29190613c3f565b60405180910390f35b3480156105e757600080fd5b506105f06113c2565b6040516105fd9190613ce3565b60405180910390f35b34801561061257600080fd5b5061062d60048036038101906106289190612fcf565b611464565b005b34801561063b57600080fd5b5061065660048036038101906106519190612f54565b6115e5565b005b34801561066457600080fd5b5061067f600480360381019061067a91906130da565b611647565b60405161068c9190613ce3565b60405180910390f35b3480156106a157600080fd5b506106aa6117ca565b6040516106b79190614065565b60405180910390f35b3480156106cc57600080fd5b506106d56117d5565b6040516106e29190614065565b60405180910390f35b3480156106f757600080fd5b506107006117db565b60405161070d9190614065565b60405180910390f35b34801561072257600080fd5b5061073d60048036038101906107389190612ec9565b6117e1565b60405161074a9190613cc8565b60405180910390f35b34801561075f57600080fd5b50610768611875565b6040516107759190613cc8565b60405180910390f35b34801561078a57600080fd5b506107a560048036038101906107a09190612ea0565b611888565b005b6107c160048036038101906107bc91906130da565b611a34565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156108c25780601f10610897576101008083540402835291602001916108c2565b820191906000526020600020905b8154815290600101906020018083116108a557829003601f168201915b5050505050905090565b60006108d782611bd2565b610916576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090d90613f25565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095c82610ea7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c490613fc5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109ec611bef565b73ffffffffffffffffffffffffffffffffffffffff161480610a1b5750610a1a81610a15611bef565b6117e1565b5b610a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5190613e85565b60405180910390fd5b610a648383611bf7565b505050565b610a71611bef565b73ffffffffffffffffffffffffffffffffffffffff16610a8f611398565b73ffffffffffffffffffffffffffffffffffffffff1614610ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adc90613f45565b60405180910390fd5b80600b9080519060200190610afb929190612cbc565b5050565b6000610b0b6002611cb0565b905090565b610b21610b1b611bef565b82611cc5565b610b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5790613fe5565b60405180910390fd5b610b6b838383611da3565b505050565b6000610bc382600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611fba90919063ffffffff16565b905092915050565b610bd3611bef565b73ffffffffffffffffffffffffffffffffffffffff16610bf1611398565b73ffffffffffffffffffffffffffffffffffffffff1614610c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3e90613f45565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b610c7b611bef565b73ffffffffffffffffffffffffffffffffffffffff16610c99611398565b73ffffffffffffffffffffffffffffffffffffffff1614610cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce690613f45565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d3a573d6000803e3d6000fd5b5050565b610d59838383604051806020016040528060008152506115e5565b505050565b600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610df45780601f10610dc957610100808354040283529160200191610df4565b820191906000526020600020905b815481529060010190602001808311610dd757829003601f168201915b505050505081565b600080610e13836002611fd490919063ffffffff16565b50905080915050919050565b610e27611bef565b73ffffffffffffffffffffffffffffffffffffffff16610e45611398565b73ffffffffffffffffffffffffffffffffffffffff1614610e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9290613f45565b60405180910390fd5b610ea481612000565b50565b6000610ed78260405180606001604052806029815260200161430260299139600261201a9092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f765780601f10610f4b57610100808354040283529160200191610f76565b820191906000526020600020905b815481529060010190602001808311610f5957829003601f168201915b5050505050905090565b600a81565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fed90613ea5565b60405180910390fd5b61103d600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612039565b9050919050565b61104c611bef565b73ffffffffffffffffffffffffffffffffffffffff1661106a611398565b73ffffffffffffffffffffffffffffffffffffffff16146110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b790613f45565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611189611bef565b73ffffffffffffffffffffffffffffffffffffffff166111a7611398565b73ffffffffffffffffffffffffffffffffffffffff16146111fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f490613f45565b60405180910390fd5b6000611207610aff565b905060008211801561121b5750600d548211155b61125a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125190613da5565b60405180910390fd5b60005b8281101561127e576112718482840161204e565b808060010191505061125d565b5061129482600d5461206c90919063ffffffff16565b600d81905550505050565b606060006112ac83610f85565b9050600081141561130757600067ffffffffffffffff811180156112cf57600080fd5b506040519080825280602002602001820160405280156112fe5781602001602082028036833780820191505090505b50915050611393565b60008167ffffffffffffffff8111801561132057600080fd5b5060405190808252806020026020018201604052801561134f5781602001602082028036833780820191505090505b50905060005b8281101561138c576113678582610b70565b82828151811061137357fe5b6020026020010181815250508080600101915050611355565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561145a5780601f1061142f5761010080835404028352916020019161145a565b820191906000526020600020905b81548152906001019060200180831161143d57829003601f168201915b5050505050905090565b61146c611bef565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d190613de5565b60405180910390fd5b80600560006114e7611bef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611594611bef565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115d99190613cc8565b60405180910390a35050565b6115f66115f0611bef565b83611cc5565b611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c90613fe5565b60405180910390fd5b611641848484846120bc565b50505050565b606061165282611bd2565b611691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168890613fa5565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561173a5780601f1061170f5761010080835404028352916020019161173a565b820191906000526020600020905b81548152906001019060200180831161171d57829003601f168201915b50505050509050600061174b610ede565b90506000815114156117615781925050506117c5565b60008251111561179657808260405160200161177e929190613c1b565b604051602081830303815290604052925050506117c5565b806117a085612118565b6040516020016117b1929190613c1b565b604051602081830303815290604052925050505b919050565b667c58508723800081565b6103e881565b600d5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c60009054906101000a900460ff1681565b611890611bef565b73ffffffffffffffffffffffffffffffffffffffff166118ae611398565b73ffffffffffffffffffffffffffffffffffffffff1614611904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fb90613f45565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196b90613d45565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c60009054906101000a900460ff16611a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7a90613f85565b60405180910390fd5b600081118015611a945750600a8111155b611ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aca90614045565b60405180910390fd5b6103e8611af082611ae2610aff565b61225f90919063ffffffff16565b1115611b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2890614025565b60405180910390fd5b611b4b81667c5850872380006122b490919063ffffffff16565b341015611b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8490613e05565b60405180910390fd5b60005b81811015611bce576000611ba2610aff565b90506103e8611baf610aff565b1015611bc057611bbf338261204e565b5b508080600101915050611b90565b5050565b6000611be882600261232490919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c6a83610ea7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611cbe8260000161233e565b9050919050565b6000611cd082611bd2565b611d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0690613e65565b60405180910390fd5b6000611d1a83610ea7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d8957508373ffffffffffffffffffffffffffffffffffffffff16611d71846108cc565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d9a5750611d9981856117e1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611dc382610ea7565b73ffffffffffffffffffffffffffffffffffffffff1614611e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1090613f65565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8090613dc5565b60405180910390fd5b611e9483838361234f565b611e9f600082611bf7565b611ef081600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061235490919063ffffffff16565b50611f4281600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061236e90919063ffffffff16565b50611f59818360026123889092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000611fc983600001836123bd565b60001c905092915050565b600080600080611fe7866000018661242a565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190612016929190612cbc565b5050565b600061202d846000018460001b846124ad565b60001c90509392505050565b60006120478260000161253e565b9050919050565b61206882826040518060200160405280600081525061254f565b5050565b6000828211156120b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a890613e25565b60405180910390fd5b818303905092915050565b6120c7848484611da3565b6120d3848484846125aa565b612112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210990613d25565b60405180910390fd5b50505050565b60606000821415612160576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061225a565b600082905060005b6000821461218a578080600101915050600a828161218257fe5b049150612168565b60008167ffffffffffffffff811180156121a357600080fd5b506040519080825280601f01601f1916602001820160405280156121d65781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461225257600a84816121f757fe5b0660300160f81b8282806001900393508151811061221157fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161224a57fe5b0493506121e5565b819450505050505b919050565b6000808284019050838110156122aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a190613d85565b60405180910390fd5b8091505092915050565b6000808314156122c7576000905061231e565b60008284029050828482816122d857fe5b0414612319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231090613f05565b60405180910390fd5b809150505b92915050565b6000612336836000018360001b61270e565b905092915050565b600081600001805490509050919050565b505050565b6000612366836000018360001b612731565b905092915050565b6000612380836000018360001b612819565b905092915050565b60006123b4846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b612889565b90509392505050565b600081836000018054905011612408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ff90613d05565b60405180910390fd5b82600001828154811061241757fe5b9060005260206000200154905092915050565b60008082846000018054905011612476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246d90613ec5565b60405180910390fd5b600084600001848154811061248757fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b6000808460010160008581526020019081526020016000205490506000811415839061250f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125069190613ce3565b60405180910390fd5b5084600001600182038154811061252257fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b6125598383612965565b61256660008484846125aa565b6125a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259c90613d25565b60405180910390fd5b505050565b60006125cb8473ffffffffffffffffffffffffffffffffffffffff16612af3565b6125d85760019050612706565b600061269f63150b7a0260e01b6125ed611bef565b8887876040516024016126039493929190613c5a565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040518060600160405280603281526020016142d0603291398773ffffffffffffffffffffffffffffffffffffffff16612b069092919063ffffffff16565b90506000818060200190518101906126b79190613070565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b6000808360010160008481526020019081526020016000205490506000811461280d576000600182039050600060018660000180549050039050600086600001828154811061277c57fe5b906000526020600020015490508087600001848154811061279957fe5b90600052602060002001819055506001830187600101600083815260200190815260200160002081905550866000018054806127d157fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612813565b60009150505b92915050565b60006128258383612b1e565b61287e578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612883565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156129305784600001604051806040016040528086815260200185815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050846000018054905085600101600086815260200190815260200160002081905550600191505061295e565b8285600001600183038154811061294357fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cc90613ee5565b60405180910390fd5b6129de81611bd2565b15612a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1590613d65565b60405180910390fd5b612a2a6000838361234f565b612a7b81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061236e90919063ffffffff16565b50612a92818360026123889092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060612b158484600085612b41565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015612b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7d90613e45565b60405180910390fd5b612b8f85612af3565b612bce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc590614005565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051612bf79190613c04565b60006040518083038185875af1925050503d8060008114612c34576040519150601f19603f3d011682016040523d82523d6000602084013e612c39565b606091505b5091509150612c49828286612c55565b92505050949350505050565b60608315612c6557829050612cb5565b600083511115612c785782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cac9190613ce3565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282612cf25760008555612d39565b82601f10612d0b57805160ff1916838001178555612d39565b82800160010185558215612d39579182015b82811115612d38578251825591602001919060010190612d1d565b5b509050612d469190612d4a565b5090565b5b80821115612d63576000816000905550600101612d4b565b5090565b6000612d7a612d75846140b1565b614080565b905082815260208101848484011115612d9257600080fd5b612d9d84828561421e565b509392505050565b6000612db8612db3846140e1565b614080565b905082815260208101848484011115612dd057600080fd5b612ddb84828561421e565b509392505050565b600081359050612df281614273565b92915050565b600081359050612e078161428a565b92915050565b600081359050612e1c816142a1565b92915050565b600081519050612e31816142a1565b92915050565b600082601f830112612e4857600080fd5b8135612e58848260208601612d67565b91505092915050565b600082601f830112612e7257600080fd5b8135612e82848260208601612da5565b91505092915050565b600081359050612e9a816142b8565b92915050565b600060208284031215612eb257600080fd5b6000612ec084828501612de3565b91505092915050565b60008060408385031215612edc57600080fd5b6000612eea85828601612de3565b9250506020612efb85828601612de3565b9150509250929050565b600080600060608486031215612f1a57600080fd5b6000612f2886828701612de3565b9350506020612f3986828701612de3565b9250506040612f4a86828701612e8b565b9150509250925092565b60008060008060808587031215612f6a57600080fd5b6000612f7887828801612de3565b9450506020612f8987828801612de3565b9350506040612f9a87828801612e8b565b925050606085013567ffffffffffffffff811115612fb757600080fd5b612fc387828801612e37565b91505092959194509250565b60008060408385031215612fe257600080fd5b6000612ff085828601612de3565b925050602061300185828601612df8565b9150509250929050565b6000806040838503121561301e57600080fd5b600061302c85828601612de3565b925050602061303d85828601612e8b565b9150509250929050565b60006020828403121561305957600080fd5b600061306784828501612e0d565b91505092915050565b60006020828403121561308257600080fd5b600061309084828501612e22565b91505092915050565b6000602082840312156130ab57600080fd5b600082013567ffffffffffffffff8111156130c557600080fd5b6130d184828501612e61565b91505092915050565b6000602082840312156130ec57600080fd5b60006130fa84828501612e8b565b91505092915050565b600061310f8383613be6565b60208301905092915050565b613124816141aa565b82525050565b61313381614198565b82525050565b600061314482614121565b61314e818561414f565b935061315983614111565b8060005b8381101561318a5781516131718882613103565b975061317c83614142565b92505060018101905061315d565b5085935050505092915050565b6131a0816141bc565b82525050565b60006131b18261412c565b6131bb8185614160565b93506131cb81856020860161422d565b6131d481614262565b840191505092915050565b60006131ea8261412c565b6131f48185614171565b935061320481856020860161422d565b80840191505092915050565b600061321b82614137565b613225818561417c565b935061323581856020860161422d565b61323e81614262565b840191505092915050565b600061325482614137565b61325e818561418d565b935061326e81856020860161422d565b80840191505092915050565b600061328760228361417c565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006132ed60328361417c565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061335360268361417c565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006133b9601c8361417c565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006133f9601b8361417c565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b600061343960208361417c565b91507f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d6000830152602082019050919050565b600061347960248361417c565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134df60198361417c565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061351f601f8361417c565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b600061355f601e8361417c565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b600061359f60268361417c565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613605602c8361417c565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061366b60388361417c565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006136d1602a8361417c565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061373760228361417c565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061379d60208361417c565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006137dd60218361417c565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613843602c8361417c565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006138a960208361417c565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006138e960298361417c565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061394f60268361417c565b91507f53616c65206d7573742062652061637469766520746f206d696e74205069786560008301527f6c427564647900000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006139b5602f8361417c565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613a1b60218361417c565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a8160318361417c565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613ae7601d8361417c565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b6000613b2760318361417c565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f6620506978656c20427564646965730000000000000000000000000000006020830152604082019050919050565b6000613b8d60218361417c565b91507f43616e206f6e6c79206d696e7420313020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b613bef81614214565b82525050565b613bfe81614214565b82525050565b6000613c1082846131df565b915081905092915050565b6000613c278285613249565b9150613c338284613249565b91508190509392505050565b6000602082019050613c54600083018461312a565b92915050565b6000608082019050613c6f600083018761311b565b613c7c602083018661312a565b613c896040830185613bf5565b8181036060830152613c9b81846131a6565b905095945050505050565b60006020820190508181036000830152613cc08184613139565b905092915050565b6000602082019050613cdd6000830184613197565b92915050565b60006020820190508181036000830152613cfd8184613210565b905092915050565b60006020820190508181036000830152613d1e8161327a565b9050919050565b60006020820190508181036000830152613d3e816132e0565b9050919050565b60006020820190508181036000830152613d5e81613346565b9050919050565b60006020820190508181036000830152613d7e816133ac565b9050919050565b60006020820190508181036000830152613d9e816133ec565b9050919050565b60006020820190508181036000830152613dbe8161342c565b9050919050565b60006020820190508181036000830152613dde8161346c565b9050919050565b60006020820190508181036000830152613dfe816134d2565b9050919050565b60006020820190508181036000830152613e1e81613512565b9050919050565b60006020820190508181036000830152613e3e81613552565b9050919050565b60006020820190508181036000830152613e5e81613592565b9050919050565b60006020820190508181036000830152613e7e816135f8565b9050919050565b60006020820190508181036000830152613e9e8161365e565b9050919050565b60006020820190508181036000830152613ebe816136c4565b9050919050565b60006020820190508181036000830152613ede8161372a565b9050919050565b60006020820190508181036000830152613efe81613790565b9050919050565b60006020820190508181036000830152613f1e816137d0565b9050919050565b60006020820190508181036000830152613f3e81613836565b9050919050565b60006020820190508181036000830152613f5e8161389c565b9050919050565b60006020820190508181036000830152613f7e816138dc565b9050919050565b60006020820190508181036000830152613f9e81613942565b9050919050565b60006020820190508181036000830152613fbe816139a8565b9050919050565b60006020820190508181036000830152613fde81613a0e565b9050919050565b60006020820190508181036000830152613ffe81613a74565b9050919050565b6000602082019050818103600083015261401e81613ada565b9050919050565b6000602082019050818103600083015261403e81613b1a565b9050919050565b6000602082019050818103600083015261405e81613b80565b9050919050565b600060208201905061407a6000830184613bf5565b92915050565b6000604051905081810181811067ffffffffffffffff821117156140a7576140a6614260565b5b8060405250919050565b600067ffffffffffffffff8211156140cc576140cb614260565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156140fc576140fb614260565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006141a3826141f4565b9050919050565b60006141b5826141f4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561424b578082015181840152602081019050614230565b8381111561425a576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b61427c81614198565b811461428757600080fd5b50565b614293816141bc565b811461429e57600080fd5b50565b6142aa816141c8565b81146142b557600080fd5b50565b6142c181614214565b81146142cc57600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220cca8ac2900179a0c1a1262af842a0081c659d3977b94338cc16417b8c27b5f3a64736f6c63430007060033

Deployed Bytecode Sourcemap

67597:2838:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10308:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51593:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54379:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53909:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68789:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53387:211;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55269:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53149:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69037:89;;;;;;;;;;;;;:::i;:::-;;68213:131;;;;;;;;;;;;;:::i;:::-;;55645:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67688:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53675:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68928:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51349:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52968:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67884:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51066:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66304:148;;;;;;;;;;;;;:::i;:::-;;68356:423;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69144:540;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65653:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51762:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54672:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55867:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51937:792;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67803:59;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67940:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68106:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55038:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67996:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66607:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69698:728;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10308:150;10393:4;10417:20;:33;10438:11;10417:33;;;;;;;;;;;;;;;;;;;;;;;;;;;10410:40;;10308:150;;;:::o;51593:100::-;51647:13;51680:5;51673:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51593:100;:::o;54379:221::-;54455:7;54483:16;54491:7;54483;:16::i;:::-;54475:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54568:15;:24;54584:7;54568:24;;;;;;;;;;;;;;;;;;;;;54561:31;;54379:221;;;:::o;53909:404::-;53990:13;54006:23;54021:7;54006:14;:23::i;:::-;53990:39;;54054:5;54048:11;;:2;:11;;;;54040:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;54134:5;54118:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;54143:44;54167:5;54174:12;:10;:12::i;:::-;54143:23;:44::i;:::-;54118:69;54110:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;54284:21;54293:2;54297:7;54284:8;:21::i;:::-;53909:404;;;:::o;68789:131::-;65884:12;:10;:12::i;:::-;65873:23;;:7;:5;:7::i;:::-;:23;;;65865:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68898:14:::1;68874:21;:38;;;;;;;;;;;;:::i;:::-;;68789:131:::0;:::o;53387:211::-;53448:7;53569:21;:12;:19;:21::i;:::-;53562:28;;53387:211;:::o;55269:305::-;55430:41;55449:12;:10;:12::i;:::-;55463:7;55430:18;:41::i;:::-;55422:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;55538:28;55548:4;55554:2;55558:7;55538:9;:28::i;:::-;55269:305;;;:::o;53149:162::-;53246:7;53273:30;53297:5;53273:13;:20;53287:5;53273:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;53266:37;;53149:162;;;;:::o;69037:89::-;65884:12;:10;:12::i;:::-;65873:23;;:7;:5;:7::i;:::-;:23;;;65865:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69106:12:::1;;;;;;;;;;;69105:13;69090:12;;:28;;;;;;;;;;;;;;;;;;69037:89::o:0;68213:131::-;65884:12;:10;:12::i;:::-;65873:23;;:7;:5;:7::i;:::-;:23;;;65865:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68261:12:::1;68276:21;68261:36;;68308:10;:19;;:28;68328:7;68308:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;65944:1;68213:131::o:0;55645:151::-;55749:39;55766:4;55772:2;55776:7;55749:39;;;;;;;;;;;;:16;:39::i;:::-;55645:151;;;:::o;67688:40::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53675:172::-;53750:7;53771:15;53792:22;53808:5;53792:12;:15;;:22;;;;:::i;:::-;53770:44;;;53832:7;53825:14;;;53675:172;;;:::o;68928:99::-;65884:12;:10;:12::i;:::-;65873:23;;:7;:5;:7::i;:::-;:23;;;65865:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68999:20:::1;69011:7;68999:11;:20::i;:::-;68928:99:::0;:::o;51349:177::-;51421:7;51448:70;51465:7;51448:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;51441:77;;51349:177;;;:::o;52968:97::-;53016:13;53049:8;53042:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52968:97;:::o;67884:47::-;67929:2;67884:47;:::o;51066:221::-;51138:7;51183:1;51166:19;;:5;:19;;;;51158:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;51250:29;:13;:20;51264:5;51250:20;;;;;;;;;;;;;;;:27;:29::i;:::-;51243:36;;51066:221;;;:::o;66304:148::-;65884:12;:10;:12::i;:::-;65873:23;;:7;:5;:7::i;:::-;:23;;;65865:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66411:1:::1;66374:40;;66395:6;;;;;;;;;;;66374:40;;;;;;;;;;;;66442:1;66425:6;;:19;;;;;;;;;;;;;;;;;;66304:148::o:0;68356:423::-;65884:12;:10;:12::i;:::-;65873:23;;:7;:5;:7::i;:::-;:23;;;65865:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68458:11:::1;68472:13;:11;:13::i;:::-;68458:27;;68521:1;68504:14;:18;:57;;;;;68544:17;;68526:14;:35;;68504:57;68496:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;68614:6;68609:95;68630:14;68626:1;:18;68609:95;;;68666:26;68676:3;68690:1;68681:6;:10;68666:9;:26::i;:::-;68646:3;;;;;;;68609:95;;;;68734:37;68756:14;68734:17;;:21;;:37;;;;:::i;:::-;68714:17;:57;;;;65944:1;68356:423:::0;;:::o;69144:540::-;69205:16;69235:18;69256:17;69266:6;69256:9;:17::i;:::-;69235:38;;69302:1;69288:10;:15;69284:393;;;69379:1;69365:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69358:23;;;;;69284:393;69414:23;69454:10;69440:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69414:51;;69480:13;69508:130;69532:10;69524:5;:18;69508:130;;;69588:34;69608:6;69616:5;69588:19;:34::i;:::-;69572:6;69579:5;69572:13;;;;;;;;;;;;;:50;;;;;69544:7;;;;;;;69508:130;;;69659:6;69652:13;;;;;69144:540;;;;:::o;65653:87::-;65699:7;65726:6;;;;;;;;;;;65719:13;;65653:87;:::o;51762:104::-;51818:13;51851:7;51844:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51762:104;:::o;54672:295::-;54787:12;:10;:12::i;:::-;54775:24;;:8;:24;;;;54767:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;54887:8;54842:18;:32;54861:12;:10;:12::i;:::-;54842:32;;;;;;;;;;;;;;;:42;54875:8;54842:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;54940:8;54911:48;;54926:12;:10;:12::i;:::-;54911:48;;;54950:8;54911:48;;;;;;:::i;:::-;;;;;;;;54672:295;;:::o;55867:285::-;55999:41;56018:12;:10;:12::i;:::-;56032:7;55999:18;:41::i;:::-;55991:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;56105:39;56119:4;56125:2;56129:7;56138:5;56105:13;:39::i;:::-;55867:285;;;;:::o;51937:792::-;52010:13;52044:16;52052:7;52044;:16::i;:::-;52036:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;52125:23;52151:10;:19;52162:7;52151:19;;;;;;;;;;;52125:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52181:18;52202:9;:7;:9::i;:::-;52181:30;;52309:1;52293:4;52287:18;:23;52283:72;;;52334:9;52327:16;;;;;;52283:72;52485:1;52465:9;52459:23;:27;52455:108;;;52534:4;52540:9;52517:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52503:48;;;;;;52455:108;52695:4;52701:18;:7;:16;:18::i;:::-;52678:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52664:57;;;;51937:792;;;;:::o;67803:59::-;67845:17;67803:59;:::o;67940:47::-;67983:4;67940:47;:::o;68106:34::-;;;;:::o;55038:164::-;55135:4;55159:18;:25;55178:5;55159:25;;;;;;;;;;;;;;;:35;55185:8;55159:35;;;;;;;;;;;;;;;;;;;;;;;;;55152:42;;55038:164;;;;:::o;67996:32::-;;;;;;;;;;;;;:::o;66607:244::-;65884:12;:10;:12::i;:::-;65873:23;;:7;:5;:7::i;:::-;:23;;;65865:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66716:1:::1;66696:22;;:8;:22;;;;66688:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;66806:8;66777:38;;66798:6;;;;;;;;;;;66777:38;;;;;;;;;;;;66835:8;66826:6;;:17;;;;;;;;;;;;;;;;;;66607:244:::0;:::o;69698:728::-;69777:12;;;;;;;;;;;69769:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;69868:1;69851:14;:18;:61;;;;;67929:2;69873:14;:39;;69851:61;69843:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;67983:4;69969:33;69987:14;69969:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:53;;69961:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;70108:35;70128:14;67845:17;70108:19;;:35;;;;:::i;:::-;70095:9;:48;;70087:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;70204:6;70200:217;70220:14;70216:1;:18;70200:217;;;70256:14;70273:13;:11;:13::i;:::-;70256:30;;67983:4;70305:13;:11;:13::i;:::-;:32;70301:105;;;70358:32;70368:10;70380:9;70358;:32::i;:::-;70301:105;70200:217;70236:3;;;;;;;70200:217;;;;69698:728;:::o;57619:127::-;57684:4;57708:30;57730:7;57708:12;:21;;:30;;;;:::i;:::-;57701:37;;57619:127;;;:::o;740:106::-;793:15;828:10;821:17;;740:106;:::o;63637:192::-;63739:2;63712:15;:24;63728:7;63712:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;63795:7;63791:2;63757:46;;63766:23;63781:7;63766:14;:23::i;:::-;63757:46;;;;;;;;;;;;63637:192;;:::o;44351:123::-;44420:7;44447:19;44455:3;:10;;44447:7;:19::i;:::-;44440:26;;44351:123;;;:::o;57913:355::-;58006:4;58031:16;58039:7;58031;:16::i;:::-;58023:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;58107:13;58123:23;58138:7;58123:14;:23::i;:::-;58107:39;;58176:5;58165:16;;:7;:16;;;:51;;;;58209:7;58185:31;;:20;58197:7;58185:11;:20::i;:::-;:31;;;58165:51;:94;;;;58220:39;58244:5;58251:7;58220:23;:39::i;:::-;58165:94;58157:103;;;57913:355;;;;:::o;61049:599::-;61174:4;61147:31;;:23;61162:7;61147:14;:23::i;:::-;:31;;;61139:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;61275:1;61261:16;;:2;:16;;;;61253:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;61331:39;61352:4;61358:2;61362:7;61331:20;:39::i;:::-;61435:29;61452:1;61456:7;61435:8;:29::i;:::-;61477:35;61504:7;61477:13;:19;61491:4;61477:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;61523:30;61545:7;61523:13;:17;61537:2;61523:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;61566:29;61583:7;61592:2;61566:12;:16;;:29;;;;;:::i;:::-;;61632:7;61628:2;61613:27;;61622:4;61613:27;;;;;;;;;;;;61049:599;;;:::o;36142:137::-;36213:7;36248:22;36252:3;:10;;36264:5;36248:3;:22::i;:::-;36240:31;;36233:38;;36142:137;;;;:::o;44813:236::-;44893:7;44902;44923:11;44936:13;44953:22;44957:3;:10;;44969:5;44953:3;:22::i;:::-;44922:53;;;;45002:3;44994:12;;45032:5;45024:14;;44986:55;;;;;;44813:236;;;;;:::o;62249:100::-;62333:8;62322;:19;;;;;;;;;;;;:::i;:::-;;62249:100;:::o;46099:213::-;46206:7;46257:44;46262:3;:10;;46282:3;46274:12;;46288;46257:4;:44::i;:::-;46249:53;;46226:78;;46099:213;;;;;:::o;35684:114::-;35744:7;35771:19;35779:3;:10;;35771:7;:19::i;:::-;35764:26;;35684:114;;;:::o;58611:110::-;58687:26;58697:2;58701:7;58687:26;;;;;;;;;;;;:9;:26::i;:::-;58611:110;;:::o;14332:158::-;14390:7;14423:1;14418;:6;;14410:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;14481:1;14477;:5;14470:12;;14332:158;;;;:::o;57034:272::-;57148:28;57158:4;57164:2;57168:7;57148:9;:28::i;:::-;57195:48;57218:4;57224:2;57228:7;57237:5;57195:22;:48::i;:::-;57187:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;57034:272;;;;:::o;46563:746::-;46619:13;46849:1;46840:5;:10;46836:53;;;46867:10;;;;;;;;;;;;;;;;;;;;;46836:53;46899:12;46914:5;46899:20;;46930:14;46955:78;46970:1;46962:4;:9;46955:78;;46988:8;;;;;;;47019:2;47011:10;;;;;;;;;46955:78;;;47043:19;47075:6;47065:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47043:39;;47093:13;47118:1;47109:6;:10;47093:26;;47137:5;47130:12;;47153:117;47168:1;47160:4;:9;47153:117;;47229:2;47222:4;:9;;;;;;47217:2;:14;47204:29;;47186:6;47193:7;;;;;;;47186:15;;;;;;;;;;;:47;;;;;;;;;;;47256:2;47248:10;;;;;;;;;47153:117;;;47294:6;47280:21;;;;;;46563:746;;;;:::o;13870:179::-;13928:7;13948:9;13964:1;13960;:5;13948:17;;13989:1;13984;:6;;13976:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;14040:1;14033:8;;;13870:179;;;;:::o;14749:220::-;14807:7;14836:1;14831;:6;14827:20;;;14846:1;14839:8;;;;14827:20;14858:9;14874:1;14870;:5;14858:17;;14903:1;14898;14894;:5;;;;;;:10;14886:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;14960:1;14953:8;;;14749:220;;;;;:::o;44112:151::-;44196:4;44220:35;44230:3;:10;;44250:3;44242:12;;44220:9;:35::i;:::-;44213:42;;44112:151;;;;:::o;40930:110::-;40986:7;41013:3;:12;;:19;;;;41006:26;;40930:110;;;:::o;64442:93::-;;;;:::o;35229:137::-;35299:4;35323:35;35331:3;:10;;35351:5;35343:14;;35323:7;:35::i;:::-;35316:42;;35229:137;;;;:::o;34922:131::-;34989:4;35013:32;35018:3;:10;;35038:5;35030:14;;35013:4;:32::i;:::-;35006:39;;34922:131;;;;:::o;43535:185::-;43624:4;43648:64;43653:3;:10;;43673:3;43665:12;;43703:5;43687:23;;43679:32;;43648:4;:64::i;:::-;43641:71;;43535:185;;;;;:::o;31180:204::-;31247:7;31296:5;31275:3;:11;;:18;;;;:26;31267:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31358:3;:11;;31370:5;31358:18;;;;;;;;;;;;;;;;31351:25;;31180:204;;;;:::o;41395:279::-;41462:7;41471;41521:5;41499:3;:12;;:19;;;;:27;41491:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;41578:22;41603:3;:12;;41616:5;41603:19;;;;;;;;;;;;;;;;;;41578:44;;41641:5;:10;;;41653:5;:12;;;41633:33;;;;;41395:279;;;;;:::o;42892:319::-;42986:7;43006:16;43025:3;:12;;:17;43038:3;43025:17;;;;;;;;;;;;43006:36;;43073:1;43061:8;:13;;43076:12;43053:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;43143:3;:12;;43167:1;43156:8;:12;43143:26;;;;;;;;;;;;;;;;;;:33;;;43136:40;;;42892:319;;;;;:::o;30727:109::-;30783:7;30810:3;:11;;:18;;;;30803:25;;30727:109;;;:::o;58948:250::-;59044:18;59050:2;59054:7;59044:5;:18::i;:::-;59081:54;59112:1;59116:2;59120:7;59129:5;59081:22;:54::i;:::-;59073:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;58948:250;;;:::o;62914:604::-;63035:4;63062:15;:2;:13;;;:15::i;:::-;63057:60;;63101:4;63094:11;;;;63057:60;63127:23;63153:252;63206:45;;;63266:12;:10;:12::i;:::-;63293:4;63312:7;63334:5;63169:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63153:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;63127:278;;63416:13;63443:10;63432:32;;;;;;;;;;;;:::i;:::-;63416:48;;48063:10;63493:16;;63483:26;;;:6;:26;;;;63475:35;;;;62914:604;;;;;;;:::o;40710:125::-;40781:4;40826:1;40805:3;:12;;:17;40818:3;40805:17;;;;;;;;;;;;:22;;40798:29;;40710:125;;;;:::o;28882:1544::-;28948:4;29066:18;29087:3;:12;;:19;29100:5;29087:19;;;;;;;;;;;;29066:40;;29137:1;29123:10;:15;29119:1300;;29485:21;29522:1;29509:10;:14;29485:38;;29538:17;29579:1;29558:3;:11;;:18;;;;:22;29538:42;;29825:17;29845:3;:11;;29857:9;29845:22;;;;;;;;;;;;;;;;29825:42;;29991:9;29962:3;:11;;29974:13;29962:26;;;;;;;;;;;;;;;:38;;;;30110:1;30094:13;:17;30068:3;:12;;:23;30081:9;30068:23;;;;;;;;;;;:43;;;;30220:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;30315:3;:12;;:19;30328:5;30315:19;;;;;;;;;;;30308:26;;;30358:4;30351:11;;;;;;;;29119:1300;30402:5;30395:12;;;28882:1544;;;;;:::o;28292:414::-;28355:4;28377:21;28387:3;28392:5;28377:9;:21::i;:::-;28372:327;;28415:3;:11;;28432:5;28415:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28598:3;:11;;:18;;;;28576:3;:12;;:19;28589:5;28576:19;;;;;;;;;;;:40;;;;28638:4;28631:11;;;;28372:327;28682:5;28675:12;;28292:414;;;;;:::o;38210:692::-;38286:4;38402:16;38421:3;:12;;:17;38434:3;38421:17;;;;;;;;;;;;38402:36;;38467:1;38455:8;:13;38451:444;;;38522:3;:12;;38540:38;;;;;;;;38557:3;38540:38;;;;38570:5;38540:38;;;38522:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38737:3;:12;;:19;;;;38717:3;:12;;:17;38730:3;38717:17;;;;;;;;;;;:39;;;;38778:4;38771:11;;;;;38451:444;38851:5;38815:3;:12;;38839:1;38828:8;:12;38815:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;38878:5;38871:12;;;38210:692;;;;;;:::o;59534:404::-;59628:1;59614:16;;:2;:16;;;;59606:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;59687:16;59695:7;59687;:16::i;:::-;59686:17;59678:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;59749:45;59778:1;59782:2;59786:7;59749:20;:45::i;:::-;59807:30;59829:7;59807:13;:17;59821:2;59807:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;59850:29;59867:7;59876:2;59850:12;:16;;:29;;;;;:::i;:::-;;59922:7;59918:2;59897:33;;59914:1;59897:33;;;;;;;;;;;;59534:404;;:::o;19311:422::-;19371:4;19579:12;19690:7;19678:20;19670:28;;19724:1;19717:4;:8;19710:15;;;19311:422;;;:::o;22229:195::-;22332:12;22364:52;22386:6;22394:4;22400:1;22403:12;22364:21;:52::i;:::-;22357:59;;22229:195;;;;;:::o;30512:129::-;30585:4;30632:1;30609:3;:12;;:19;30622:5;30609:19;;;;;;;;;;;;:24;;30602:31;;30512:129;;;;:::o;23281:530::-;23408:12;23466:5;23441:21;:30;;23433:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;23533:18;23544:6;23533:10;:18::i;:::-;23525:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;23659:12;23673:23;23700:6;:11;;23720:5;23728:4;23700:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23658:75;;;;23751:52;23769:7;23778:10;23790:12;23751:17;:52::i;:::-;23744:59;;;;23281:530;;;;;;:::o;25821:742::-;25936:12;25965:7;25961:595;;;25996:10;25989:17;;;;25961:595;26130:1;26110:10;:17;:21;26106:439;;;26373:10;26367:17;26434:15;26421:10;26417:2;26413:19;26406:44;26321:148;26516:12;26509:20;;;;;;;;;;;:::i;:::-;;;;;;;;25821:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:260::-;;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:52;5116:7;5107:6;5096:9;5092:22;5072:52;:::i;:::-;5062:62;;5018:116;4946:195;;;;:::o;5147:282::-;;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5281:1;5278;5271:12;5233:2;5324:1;5349:63;5404:7;5395:6;5384:9;5380:22;5349:63;:::i;:::-;5339:73;;5295:127;5223:206;;;;:::o;5435:375::-;;5553:2;5541:9;5532:7;5528:23;5524:32;5521:2;;;5569:1;5566;5559:12;5521:2;5640:1;5629:9;5625:17;5612:31;5670:18;5662:6;5659:30;5656:2;;;5702:1;5699;5692:12;5656:2;5730:63;5785:7;5776:6;5765:9;5761:22;5730:63;:::i;:::-;5720:73;;5583:220;5511:299;;;;:::o;5816:262::-;;5924:2;5912:9;5903:7;5899:23;5895:32;5892:2;;;5940:1;5937;5930:12;5892:2;5983:1;6008:53;6053:7;6044:6;6033:9;6029:22;6008:53;:::i;:::-;5998:63;;5954:117;5882:196;;;;:::o;6084:179::-;;6174:46;6216:3;6208:6;6174:46;:::i;:::-;6252:4;6247:3;6243:14;6229:28;;6164:99;;;;:::o;6269:142::-;6372:32;6398:5;6372:32;:::i;:::-;6367:3;6360:45;6350:61;;:::o;6417:118::-;6504:24;6522:5;6504:24;:::i;:::-;6499:3;6492:37;6482:53;;:::o;6571:732::-;;6719:54;6767:5;6719:54;:::i;:::-;6789:86;6868:6;6863:3;6789:86;:::i;:::-;6782:93;;6899:56;6949:5;6899:56;:::i;:::-;6978:7;7009:1;6994:284;7019:6;7016:1;7013:13;6994:284;;;7095:6;7089:13;7122:63;7181:3;7166:13;7122:63;:::i;:::-;7115:70;;7208:60;7261:6;7208:60;:::i;:::-;7198:70;;7054:224;7041:1;7038;7034:9;7029:14;;6994:284;;;6998:14;7294:3;7287:10;;6695:608;;;;;;;:::o;7309:109::-;7390:21;7405:5;7390:21;:::i;:::-;7385:3;7378:34;7368:50;;:::o;7424:360::-;;7538:38;7570:5;7538:38;:::i;:::-;7592:70;7655:6;7650:3;7592:70;:::i;:::-;7585:77;;7671:52;7716:6;7711:3;7704:4;7697:5;7693:16;7671:52;:::i;:::-;7748:29;7770:6;7748:29;:::i;:::-;7743:3;7739:39;7732:46;;7514:270;;;;;:::o;7790:373::-;;7922:38;7954:5;7922:38;:::i;:::-;7976:88;8057:6;8052:3;7976:88;:::i;:::-;7969:95;;8073:52;8118:6;8113:3;8106:4;8099:5;8095:16;8073:52;:::i;:::-;8150:6;8145:3;8141:16;8134:23;;7898:265;;;;;:::o;8169:364::-;;8285:39;8318:5;8285:39;:::i;:::-;8340:71;8404:6;8399:3;8340:71;:::i;:::-;8333:78;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:29;8519:6;8497:29;:::i;:::-;8492:3;8488:39;8481:46;;8261:272;;;;;:::o;8539:377::-;;8673:39;8706:5;8673:39;:::i;:::-;8728:89;8810:6;8805:3;8728:89;:::i;:::-;8721:96;;8826:52;8871:6;8866:3;8859:4;8852:5;8848:16;8826:52;:::i;:::-;8903:6;8898:3;8894:16;8887:23;;8649:267;;;;;:::o;8922:366::-;;9085:67;9149:2;9144:3;9085:67;:::i;:::-;9078:74;;9182:34;9178:1;9173:3;9169:11;9162:55;9248:4;9243:2;9238:3;9234:12;9227:26;9279:2;9274:3;9270:12;9263:19;;9068:220;;;:::o;9294:382::-;;9457:67;9521:2;9516:3;9457:67;:::i;:::-;9450:74;;9554:34;9550:1;9545:3;9541:11;9534:55;9620:20;9615:2;9610:3;9606:12;9599:42;9667:2;9662:3;9658:12;9651:19;;9440:236;;;:::o;9682:370::-;;9845:67;9909:2;9904:3;9845:67;:::i;:::-;9838:74;;9942:34;9938:1;9933:3;9929:11;9922:55;10008:8;10003:2;9998:3;9994:12;9987:30;10043:2;10038:3;10034:12;10027:19;;9828:224;;;:::o;10058:326::-;;10221:67;10285:2;10280:3;10221:67;:::i;:::-;10214:74;;10318:30;10314:1;10309:3;10305:11;10298:51;10375:2;10370:3;10366:12;10359:19;;10204:180;;;:::o;10390:325::-;;10553:67;10617:2;10612:3;10553:67;:::i;:::-;10546:74;;10650:29;10646:1;10641:3;10637:11;10630:50;10706:2;10701:3;10697:12;10690:19;;10536:179;;;:::o;10721:330::-;;10884:67;10948:2;10943:3;10884:67;:::i;:::-;10877:74;;10981:34;10977:1;10972:3;10968:11;10961:55;11042:2;11037:3;11033:12;11026:19;;10867:184;;;:::o;11057:368::-;;11220:67;11284:2;11279:3;11220:67;:::i;:::-;11213:74;;11317:34;11313:1;11308:3;11304:11;11297:55;11383:6;11378:2;11373:3;11369:12;11362:28;11416:2;11411:3;11407:12;11400:19;;11203:222;;;:::o;11431:323::-;;11594:67;11658:2;11653:3;11594:67;:::i;:::-;11587:74;;11691:27;11687:1;11682:3;11678:11;11671:48;11745:2;11740:3;11736:12;11729:19;;11577:177;;;:::o;11760:329::-;;11923:67;11987:2;11982:3;11923:67;:::i;:::-;11916:74;;12020:33;12016:1;12011:3;12007:11;12000:54;12080:2;12075:3;12071:12;12064:19;;11906:183;;;:::o;12095:328::-;;12258:67;12322:2;12317:3;12258:67;:::i;:::-;12251:74;;12355:32;12351:1;12346:3;12342:11;12335:53;12414:2;12409:3;12405:12;12398:19;;12241:182;;;:::o;12429:370::-;;12592:67;12656:2;12651:3;12592:67;:::i;:::-;12585:74;;12689:34;12685:1;12680:3;12676:11;12669:55;12755:8;12750:2;12745:3;12741:12;12734:30;12790:2;12785:3;12781:12;12774:19;;12575:224;;;:::o;12805:376::-;;12968:67;13032:2;13027:3;12968:67;:::i;:::-;12961:74;;13065:34;13061:1;13056:3;13052:11;13045:55;13131:14;13126:2;13121:3;13117:12;13110:36;13172:2;13167:3;13163:12;13156:19;;12951:230;;;:::o;13187:388::-;;13350:67;13414:2;13409:3;13350:67;:::i;:::-;13343:74;;13447:34;13443:1;13438:3;13434:11;13427:55;13513:26;13508:2;13503:3;13499:12;13492:48;13566:2;13561:3;13557:12;13550:19;;13333:242;;;:::o;13581:374::-;;13744:67;13808:2;13803:3;13744:67;:::i;:::-;13737:74;;13841:34;13837:1;13832:3;13828:11;13821:55;13907:12;13902:2;13897:3;13893:12;13886:34;13946:2;13941:3;13937:12;13930:19;;13727:228;;;:::o;13961:366::-;;14124:67;14188:2;14183:3;14124:67;:::i;:::-;14117:74;;14221:34;14217:1;14212:3;14208:11;14201:55;14287:4;14282:2;14277:3;14273:12;14266:26;14318:2;14313:3;14309:12;14302:19;;14107:220;;;:::o;14333:330::-;;14496:67;14560:2;14555:3;14496:67;:::i;:::-;14489:74;;14593:34;14589:1;14584:3;14580:11;14573:55;14654:2;14649:3;14645:12;14638:19;;14479:184;;;:::o;14669:365::-;;14832:67;14896:2;14891:3;14832:67;:::i;:::-;14825:74;;14929:34;14925:1;14920:3;14916:11;14909:55;14995:3;14990:2;14985:3;14981:12;14974:25;15025:2;15020:3;15016:12;15009:19;;14815:219;;;:::o;15040:376::-;;15203:67;15267:2;15262:3;15203:67;:::i;:::-;15196:74;;15300:34;15296:1;15291:3;15287:11;15280:55;15366:14;15361:2;15356:3;15352:12;15345:36;15407:2;15402:3;15398:12;15391:19;;15186:230;;;:::o;15422:330::-;;15585:67;15649:2;15644:3;15585:67;:::i;:::-;15578:74;;15682:34;15678:1;15673:3;15669:11;15662:55;15743:2;15738:3;15734:12;15727:19;;15568:184;;;:::o;15758:373::-;;15921:67;15985:2;15980:3;15921:67;:::i;:::-;15914:74;;16018:34;16014:1;16009:3;16005:11;15998:55;16084:11;16079:2;16074:3;16070:12;16063:33;16122:2;16117:3;16113:12;16106:19;;15904:227;;;:::o;16137:370::-;;16300:67;16364:2;16359:3;16300:67;:::i;:::-;16293:74;;16397:34;16393:1;16388:3;16384:11;16377:55;16463:8;16458:2;16453:3;16449:12;16442:30;16498:2;16493:3;16489:12;16482:19;;16283:224;;;:::o;16513:379::-;;16676:67;16740:2;16735:3;16676:67;:::i;:::-;16669:74;;16773:34;16769:1;16764:3;16760:11;16753:55;16839:17;16834:2;16829:3;16825:12;16818:39;16883:2;16878:3;16874:12;16867:19;;16659:233;;;:::o;16898:365::-;;17061:67;17125:2;17120:3;17061:67;:::i;:::-;17054:74;;17158:34;17154:1;17149:3;17145:11;17138:55;17224:3;17219:2;17214:3;17210:12;17203:25;17254:2;17249:3;17245:12;17238:19;;17044:219;;;:::o;17269:381::-;;17432:67;17496:2;17491:3;17432:67;:::i;:::-;17425:74;;17529:34;17525:1;17520:3;17516:11;17509:55;17595:19;17590:2;17585:3;17581:12;17574:41;17641:2;17636:3;17632:12;17625:19;;17415:235;;;:::o;17656:327::-;;17819:67;17883:2;17878:3;17819:67;:::i;:::-;17812:74;;17916:31;17912:1;17907:3;17903:11;17896:52;17974:2;17969:3;17965:12;17958:19;;17802:181;;;:::o;17989:381::-;;18152:67;18216:2;18211:3;18152:67;:::i;:::-;18145:74;;18249:34;18245:1;18240:3;18236:11;18229:55;18315:19;18310:2;18305:3;18301:12;18294:41;18361:2;18356:3;18352:12;18345:19;;18135:235;;;:::o;18376:365::-;;18539:67;18603:2;18598:3;18539:67;:::i;:::-;18532:74;;18636:34;18632:1;18627:3;18623:11;18616:55;18702:3;18697:2;18692:3;18688:12;18681:25;18732:2;18727:3;18723:12;18716:19;;18522:219;;;:::o;18747:108::-;18824:24;18842:5;18824:24;:::i;:::-;18819:3;18812:37;18802:53;;:::o;18861:118::-;18948:24;18966:5;18948:24;:::i;:::-;18943:3;18936:37;18926:53;;:::o;18985:271::-;;19137:93;19226:3;19217:6;19137:93;:::i;:::-;19130:100;;19247:3;19240:10;;19119:137;;;;:::o;19262:435::-;;19464:95;19555:3;19546:6;19464:95;:::i;:::-;19457:102;;19576:95;19667:3;19658:6;19576:95;:::i;:::-;19569:102;;19688:3;19681:10;;19446:251;;;;;:::o;19703:222::-;;19834:2;19823:9;19819:18;19811:26;;19847:71;19915:1;19904:9;19900:17;19891:6;19847:71;:::i;:::-;19801:124;;;;:::o;19931:672::-;;20180:3;20169:9;20165:19;20157:27;;20194:87;20278:1;20267:9;20263:17;20254:6;20194:87;:::i;:::-;20291:72;20359:2;20348:9;20344:18;20335:6;20291:72;:::i;:::-;20373;20441:2;20430:9;20426:18;20417:6;20373:72;:::i;:::-;20492:9;20486:4;20482:20;20477:2;20466:9;20462:18;20455:48;20520:76;20591:4;20582:6;20520:76;:::i;:::-;20512:84;;20147:456;;;;;;;:::o;20609:373::-;;20790:2;20779:9;20775:18;20767:26;;20839:9;20833:4;20829:20;20825:1;20814:9;20810:17;20803:47;20867:108;20970:4;20961:6;20867:108;:::i;:::-;20859:116;;20757:225;;;;:::o;20988:210::-;;21113:2;21102:9;21098:18;21090:26;;21126:65;21188:1;21177:9;21173:17;21164:6;21126:65;:::i;:::-;21080:118;;;;:::o;21204:313::-;;21355:2;21344:9;21340:18;21332:26;;21404:9;21398:4;21394:20;21390:1;21379:9;21375:17;21368:47;21432:78;21505:4;21496:6;21432:78;:::i;:::-;21424:86;;21322:195;;;;:::o;21523:419::-;;21727:2;21716:9;21712:18;21704:26;;21776:9;21770:4;21766:20;21762:1;21751:9;21747:17;21740:47;21804:131;21930:4;21804:131;:::i;:::-;21796:139;;21694:248;;;:::o;21948:419::-;;22152:2;22141:9;22137:18;22129:26;;22201:9;22195:4;22191:20;22187:1;22176:9;22172:17;22165:47;22229:131;22355:4;22229:131;:::i;:::-;22221:139;;22119:248;;;:::o;22373:419::-;;22577:2;22566:9;22562:18;22554:26;;22626:9;22620:4;22616:20;22612:1;22601:9;22597:17;22590:47;22654:131;22780:4;22654:131;:::i;:::-;22646:139;;22544:248;;;:::o;22798:419::-;;23002:2;22991:9;22987:18;22979:26;;23051:9;23045:4;23041:20;23037:1;23026:9;23022:17;23015:47;23079:131;23205:4;23079:131;:::i;:::-;23071:139;;22969:248;;;:::o;23223:419::-;;23427:2;23416:9;23412:18;23404:26;;23476:9;23470:4;23466:20;23462:1;23451:9;23447:17;23440:47;23504:131;23630:4;23504:131;:::i;:::-;23496:139;;23394:248;;;:::o;23648:419::-;;23852:2;23841:9;23837:18;23829:26;;23901:9;23895:4;23891:20;23887:1;23876:9;23872:17;23865:47;23929:131;24055:4;23929:131;:::i;:::-;23921:139;;23819:248;;;:::o;24073:419::-;;24277:2;24266:9;24262:18;24254:26;;24326:9;24320:4;24316:20;24312:1;24301:9;24297:17;24290:47;24354:131;24480:4;24354:131;:::i;:::-;24346:139;;24244:248;;;:::o;24498:419::-;;24702:2;24691:9;24687:18;24679:26;;24751:9;24745:4;24741:20;24737:1;24726:9;24722:17;24715:47;24779:131;24905:4;24779:131;:::i;:::-;24771:139;;24669:248;;;:::o;24923:419::-;;25127:2;25116:9;25112:18;25104:26;;25176:9;25170:4;25166:20;25162:1;25151:9;25147:17;25140:47;25204:131;25330:4;25204:131;:::i;:::-;25196:139;;25094:248;;;:::o;25348:419::-;;25552:2;25541:9;25537:18;25529:26;;25601:9;25595:4;25591:20;25587:1;25576:9;25572:17;25565:47;25629:131;25755:4;25629:131;:::i;:::-;25621:139;;25519:248;;;:::o;25773:419::-;;25977:2;25966:9;25962:18;25954:26;;26026:9;26020:4;26016:20;26012:1;26001:9;25997:17;25990:47;26054:131;26180:4;26054:131;:::i;:::-;26046:139;;25944:248;;;:::o;26198:419::-;;26402:2;26391:9;26387:18;26379:26;;26451:9;26445:4;26441:20;26437:1;26426:9;26422:17;26415:47;26479:131;26605:4;26479:131;:::i;:::-;26471:139;;26369:248;;;:::o;26623:419::-;;26827:2;26816:9;26812:18;26804:26;;26876:9;26870:4;26866:20;26862:1;26851:9;26847:17;26840:47;26904:131;27030:4;26904:131;:::i;:::-;26896:139;;26794:248;;;:::o;27048:419::-;;27252:2;27241:9;27237:18;27229:26;;27301:9;27295:4;27291:20;27287:1;27276:9;27272:17;27265:47;27329:131;27455:4;27329:131;:::i;:::-;27321:139;;27219:248;;;:::o;27473:419::-;;27677:2;27666:9;27662:18;27654:26;;27726:9;27720:4;27716:20;27712:1;27701:9;27697:17;27690:47;27754:131;27880:4;27754:131;:::i;:::-;27746:139;;27644:248;;;:::o;27898:419::-;;28102:2;28091:9;28087:18;28079:26;;28151:9;28145:4;28141:20;28137:1;28126:9;28122:17;28115:47;28179:131;28305:4;28179:131;:::i;:::-;28171:139;;28069:248;;;:::o;28323:419::-;;28527:2;28516:9;28512:18;28504:26;;28576:9;28570:4;28566:20;28562:1;28551:9;28547:17;28540:47;28604:131;28730:4;28604:131;:::i;:::-;28596:139;;28494:248;;;:::o;28748:419::-;;28952:2;28941:9;28937:18;28929:26;;29001:9;28995:4;28991:20;28987:1;28976:9;28972:17;28965:47;29029:131;29155:4;29029:131;:::i;:::-;29021:139;;28919:248;;;:::o;29173:419::-;;29377:2;29366:9;29362:18;29354:26;;29426:9;29420:4;29416:20;29412:1;29401:9;29397:17;29390:47;29454:131;29580:4;29454:131;:::i;:::-;29446:139;;29344:248;;;:::o;29598:419::-;;29802:2;29791:9;29787:18;29779:26;;29851:9;29845:4;29841:20;29837:1;29826:9;29822:17;29815:47;29879:131;30005:4;29879:131;:::i;:::-;29871:139;;29769:248;;;:::o;30023:419::-;;30227:2;30216:9;30212:18;30204:26;;30276:9;30270:4;30266:20;30262:1;30251:9;30247:17;30240:47;30304:131;30430:4;30304:131;:::i;:::-;30296:139;;30194:248;;;:::o;30448:419::-;;30652:2;30641:9;30637:18;30629:26;;30701:9;30695:4;30691:20;30687:1;30676:9;30672:17;30665:47;30729:131;30855:4;30729:131;:::i;:::-;30721:139;;30619:248;;;:::o;30873:419::-;;31077:2;31066:9;31062:18;31054:26;;31126:9;31120:4;31116:20;31112:1;31101:9;31097:17;31090:47;31154:131;31280:4;31154:131;:::i;:::-;31146:139;;31044:248;;;:::o;31298:419::-;;31502:2;31491:9;31487:18;31479:26;;31551:9;31545:4;31541:20;31537:1;31526:9;31522:17;31515:47;31579:131;31705:4;31579:131;:::i;:::-;31571:139;;31469:248;;;:::o;31723:419::-;;31927:2;31916:9;31912:18;31904:26;;31976:9;31970:4;31966:20;31962:1;31951:9;31947:17;31940:47;32004:131;32130:4;32004:131;:::i;:::-;31996:139;;31894:248;;;:::o;32148:419::-;;32352:2;32341:9;32337:18;32329:26;;32401:9;32395:4;32391:20;32387:1;32376:9;32372:17;32365:47;32429:131;32555:4;32429:131;:::i;:::-;32421:139;;32319:248;;;:::o;32573:419::-;;32777:2;32766:9;32762:18;32754:26;;32826:9;32820:4;32816:20;32812:1;32801:9;32797:17;32790:47;32854:131;32980:4;32854:131;:::i;:::-;32846:139;;32744:248;;;:::o;32998:222::-;;33129:2;33118:9;33114:18;33106:26;;33142:71;33210:1;33199:9;33195:17;33186:6;33142:71;:::i;:::-;33096:124;;;;:::o;33226:278::-;;33292:2;33286:9;33276:19;;33334:4;33326:6;33322:17;33441:6;33429:10;33426:22;33405:18;33393:10;33390:34;33387:62;33384:2;;;33452:13;;:::i;:::-;33384:2;33487:10;33483:2;33476:22;33266:238;;;;:::o;33510:326::-;;33661:18;33653:6;33650:30;33647:2;;;33683:13;;:::i;:::-;33647:2;33763:4;33759:9;33752:4;33744:6;33740:17;33736:33;33728:41;;33824:4;33818;33814:15;33806:23;;33576:260;;;:::o;33842:327::-;;33994:18;33986:6;33983:30;33980:2;;;34016:13;;:::i;:::-;33980:2;34096:4;34092:9;34085:4;34077:6;34073:17;34069:33;34061:41;;34157:4;34151;34147:15;34139:23;;33909:260;;;:::o;34175:132::-;;34265:3;34257:11;;34295:4;34290:3;34286:14;34278:22;;34247:60;;;:::o;34313:114::-;;34414:5;34408:12;34398:22;;34387:40;;;:::o;34433:98::-;;34518:5;34512:12;34502:22;;34491:40;;;:::o;34537:99::-;;34623:5;34617:12;34607:22;;34596:40;;;:::o;34642:113::-;;34744:4;34739:3;34735:14;34727:22;;34717:38;;;:::o;34761:184::-;;34894:6;34889:3;34882:19;34934:4;34929:3;34925:14;34910:29;;34872:73;;;;:::o;34951:168::-;;35068:6;35063:3;35056:19;35108:4;35103:3;35099:14;35084:29;;35046:73;;;;:::o;35125:147::-;;35263:3;35248:18;;35238:34;;;;:::o;35278:169::-;;35396:6;35391:3;35384:19;35436:4;35431:3;35427:14;35412:29;;35374:73;;;;:::o;35453:148::-;;35592:3;35577:18;;35567:34;;;;:::o;35607:96::-;;35673:24;35691:5;35673:24;:::i;:::-;35662:35;;35652:51;;;:::o;35709:104::-;;35783:24;35801:5;35783:24;:::i;:::-;35772:35;;35762:51;;;:::o;35819:90::-;;35896:5;35889:13;35882:21;35871:32;;35861:48;;;:::o;35915:149::-;;35991:66;35984:5;35980:78;35969:89;;35959:105;;;:::o;36070:126::-;;36147:42;36140:5;36136:54;36125:65;;36115:81;;;:::o;36202:77::-;;36268:5;36257:16;;36247:32;;;:::o;36285:154::-;36369:6;36364:3;36359;36346:30;36431:1;36422:6;36417:3;36413:16;36406:27;36336:103;;;:::o;36445:307::-;36513:1;36523:113;36537:6;36534:1;36531:13;36523:113;;;36622:1;36617:3;36613:11;36607:18;36603:1;36598:3;36594:11;36587:39;36559:2;36556:1;36552:10;36547:15;;36523:113;;;36654:6;36651:1;36648:13;36645:2;;;36734:1;36725:6;36720:3;36716:16;36709:27;36645:2;36494:258;;;;:::o;36758:48::-;36791:9;36812:102;;36904:2;36900:7;36895:2;36888:5;36884:14;36880:28;36870:38;;36860:54;;;:::o;36920:122::-;36993:24;37011:5;36993:24;:::i;:::-;36986:5;36983:35;36973:2;;37032:1;37029;37022:12;36973:2;36963:79;:::o;37048:116::-;37118:21;37133:5;37118:21;:::i;:::-;37111:5;37108:32;37098:2;;37154:1;37151;37144:12;37098:2;37088:76;:::o;37170:120::-;37242:23;37259:5;37242:23;:::i;:::-;37235:5;37232:34;37222:2;;37280:1;37277;37270:12;37222:2;37212:78;:::o;37296:122::-;37369:24;37387:5;37369:24;:::i;:::-;37362:5;37359:35;37349:2;;37408:1;37405;37398:12;37349:2;37339:79;:::o

Swarm Source

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