ETH Price: $3,391.18 (-1.55%)
Gas: 5 Gwei

Token

Villains by Felt Zine (VILL)
 

Overview

Max Total Supply

865 VILL

Holders

336

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
Villains by Felt Zine: Deployer
Balance
4 VILL
0x5e080d8b14c1da5936509c2c9ef0168a19304202
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Villains is an Art Avatar / PFP collection by Mark Sabb for Felt Zine. Public Minting closing soon: https://villains.feltzine.art/

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Villains

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

// SPDX-License-Identifier: MIT

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

pragma solidity >=0.6.0 <0.8.0;

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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



pragma solidity >=0.6.2 <0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity >=0.6.2 <0.8.0;


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

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

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

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

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



pragma solidity >=0.6.2 <0.8.0;


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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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



pragma solidity >=0.6.0 <0.8.0;


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

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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity >=0.6.2 <0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

            bytes32 lastvalue = set._values[lastIndex];

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

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

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

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

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

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

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

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

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

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

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

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


    // UintSet

    struct UintSet {
        Set _inner;
    }

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

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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

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

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

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

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

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

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

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

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

            MapEntry storage lastEntry = map._entries[lastIndex];

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

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

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

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

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

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

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

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

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

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

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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

    // Base URI
    string private _baseURI;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

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

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

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

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

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

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(tokenId);

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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


// Villains is a collection by Mark Sabb for Felt Zine

pragma solidity ^0.7.0;
pragma abicoder v2;

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

    string public VILLAINS_PROVENANCE = ""; // IPFS URL WILL BE ADDED WHEN VILLAINS ARE ALL SOLD OUT
    
    string public LICENSE_TEXT = ""; // IT IS WHAT IT SAYS
    
    bool licenseLocked = false; // TEAM CAN'T EDIT THE LICENSE AFTER THIS GETS TRUE

    uint256 public constant VillainsPrice = 50000000000000000; // 0.05 ETH

    uint public constant maxVillainsPurchase = 10;

    uint256 public constant MAX_VILLAINS = 5000;

    bool public saleIsActive = false;
    
    mapping(uint => string) public VillainNames;
    
    // Reserve 50 Villains for Felt team - Giveaways/Prizes etc
    uint public VillainReserve = 50;
    
    event VillainNameChange(address _by, uint _tokenId, string _name);
    
    event licenseisLocked(string _licenseText);

    constructor() ERC721("Villains by Felt Zine", "VILL") { }
    
    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        msg.sender.transfer(balance);
    }
    
    function reserveVillains(address _to, uint256 _reserveAmount) public onlyOwner {        
        uint supply = totalSupply();
        require(_reserveAmount > 0 && _reserveAmount <= VillainReserve, "Nah fam, there's no more left for Felt.");
        for (uint i = 0; i < _reserveAmount; i++) {
            _safeMint(_to, supply + i);
        }
        VillainReserve = VillainReserve.sub(_reserveAmount);
    }


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

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


    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }
    
    
    function tokensOfOwner(address _owner) external view returns(uint256[] memory ) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }
    
    // Returns the license for tokens
    function tokenLicense(uint _id) public view returns(string memory) {
        require(_id < totalSupply(), "CHOOSE A VILLAIN WITHIN RANGE");
        return LICENSE_TEXT;
    }
    
    // Locks the license to prevent further changes 
    function lockLicense() public onlyOwner {
        licenseLocked =  true;
        emit licenseisLocked(LICENSE_TEXT);
    }
    
    // Change the license
    function changeLicense(string memory _license) public onlyOwner {
        require(licenseLocked == false, "License already locked");
        LICENSE_TEXT = _license;
    }
    
    
    function mintVillain(uint numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint Villain");
        require(numberOfTokens > 0 && numberOfTokens <= maxVillainsPurchase, "Too many fucking Villains in your gang fam! You can only mint 10 tokens at a time");
        require(totalSupply().add(numberOfTokens) <= MAX_VILLAINS, "Not enough Villains for that big fam.");
        require(msg.value >= VillainsPrice.mul(numberOfTokens), "Ether value sent is not correct");
        
        for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = totalSupply();
            if (totalSupply() < MAX_VILLAINS) {
                _safeMint(msg.sender, mintIndex);
            }
        }

    }
     
    function changeVillainName(uint _tokenId, string memory _name) public {
        require(ownerOf(_tokenId) == msg.sender, "This ain't your Villain fam!");
        require(sha256(bytes(_name)) != sha256(bytes(VillainNames[_tokenId])), "Nah fam, thats the same name! Switch it up a bit...");
        VillainNames[_tokenId] = _name;
        
        emit VillainNameChange(msg.sender, _tokenId, _name);
        
    }
    
    function viewVillainName(uint _tokenId) public view returns( string memory ){
        require( _tokenId < totalSupply(), "Pick a Villain within range plz" );
        return VillainNames[_tokenId];
    }
    
    
    // GET ALL Villains OF A WALLET AS AN ARRAY OF STRINGS. WOULD BE BETTER MAYBE IF IT RETURNED A STRUCT WITH ID-NAME MATCH
    function VillainNamesOfOwner(address _owner) external view returns(string[] memory ) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            return new string[](0);
        } else {
            string[] memory result = new string[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = VillainNames[ tokenOfOwnerByIndex(_owner, index) ] ;
            }
            return result;
        }
    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_by","type":"address"},{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"_name","type":"string"}],"name":"VillainNameChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_licenseText","type":"string"}],"name":"licenseisLocked","type":"event"},{"inputs":[],"name":"LICENSE_TEXT","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_VILLAINS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VILLAINS_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"VillainNames","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"VillainNamesOfOwner","outputs":[{"internalType":"string[]","name":"","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VillainReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VillainsPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_license","type":"string"}],"name":"changeLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_name","type":"string"}],"name":"changeVillainName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxVillainsPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintVillain","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"reserveVillains","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"tokenLicense","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"viewVillainName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600b90805190602001906200002b92919062000334565b5060405180602001604052806000815250600c90805190602001906200005392919062000334565b506000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506032600f553480156200009c57600080fd5b506040518060400160405280601581526020017f56696c6c61696e732062792046656c74205a696e6500000000000000000000008152506040518060400160405280600481526020017f56494c4c00000000000000000000000000000000000000000000000000000000815250620001216301ffc9a760e01b6200025460201b60201c565b81600690805190602001906200013992919062000334565b5080600790805190602001906200015292919062000334565b506200016b6380ac58cd60e01b6200025460201b60201c565b62000183635b5e139f60e01b6200025460201b60201c565b6200019b63780e9d6360e01b6200025460201b60201c565b50506000620001af6200032c60201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200045f565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620002c0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b7906200042c565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200036c5760008555620003b8565b82601f106200038757805160ff1916838001178555620003b8565b82800160010185558215620003b8579182015b82811115620003b75782518255916020019190600101906200039a565b5b509050620003c79190620003cb565b5090565b5b80821115620003e6576000816000905550600101620003cc565b5090565b6000620003f9601c836200044e565b91507f4552433136353a20696e76616c696420696e74657266616365206964000000006000830152602082019050919050565b600060208201905081810360008301526200044781620003ea565b9050919050565b600082825260208201905092915050565b6153e9806200046f6000396000f3fe6080604052600436106102465760003560e01c806370a0823111610139578063b6fbc8b3116100b6578063c87b56dd1161007a578063c87b56dd1461086f578063d9b137b2146108ac578063e985e9c5146108e9578063eb4c89d814610926578063eb8d24441461094f578063f2fde38b1461097a57610246565b8063b6fbc8b31461079e578063b88d4fde146107c9578063bcd7fa61146107f2578063bf4702fc1461081b578063c36134291461083257610246565b806395d89b41116100fd57806395d89b41146106b95780639c3e72bd146106e4578063a22cb4651461070f578063a9326d5014610738578063b09904b51461077557610246565b806370a08231146105d2578063715018a61461060f5780637d0499a1146106265780638462151c146106515780638da5cb5b1461068e57610246565b806323b872dd116101c75780634f6ccce71161018b5780634f6ccce7146104d957806355f804b31461051657806358f7a7931461053f5780636352211e1461056a5780636c0360eb146105a757610246565b806323b872dd1461041c5780632f745c591461044557806334918dfd146104825780633ccfd60b1461049957806342842e0e146104b057610246565b80630ff33f7c1161020e5780630ff33f7c14610344578063109695231461038157806318160ddd146103aa5780631b907c23146103d55780631c18ab661461040057610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f05780630d21352d14610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613ad8565b6109a3565b60405161027f9190614bc4565b60405180910390f35b34801561029457600080fd5b5061029d610a0a565b6040516102aa9190614bdf565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613b6b565b610aac565b6040516102e79190614adb565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613a73565b610b31565b005b34801561032557600080fd5b5061032e610c49565b60405161033b9190615023565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190613b6b565b610c54565b6040516103789190614bdf565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a39190613b2a565b610d52565b005b3480156103b657600080fd5b506103bf610de8565b6040516103cc9190615023565b60405180910390f35b3480156103e157600080fd5b506103ea610df9565b6040516103f79190615023565b60405180910390f35b61041a60048036038101906104159190613b6b565b610dfe565b005b34801561042857600080fd5b50610443600480360381019061043e919061396d565b610f9c565b005b34801561045157600080fd5b5061046c60048036038101906104679190613a73565b610ffc565b6040516104799190615023565b60405180910390f35b34801561048e57600080fd5b50610497611057565b005b3480156104a557600080fd5b506104ae6110ff565b005b3480156104bc57600080fd5b506104d760048036038101906104d2919061396d565b6111ca565b005b3480156104e557600080fd5b5061050060048036038101906104fb9190613b6b565b6111ea565b60405161050d9190615023565b60405180910390f35b34801561052257600080fd5b5061053d60048036038101906105389190613b2a565b61120d565b005b34801561054b57600080fd5b50610554611295565b6040516105619190615023565b60405180910390f35b34801561057657600080fd5b50610591600480360381019061058c9190613b6b565b61129b565b60405161059e9190614adb565b60405180910390f35b3480156105b357600080fd5b506105bc6112d2565b6040516105c99190614bdf565b60405180910390f35b3480156105de57600080fd5b506105f960048036038101906105f49190613908565b611374565b6040516106069190615023565b60405180910390f35b34801561061b57600080fd5b50610624611433565b005b34801561063257600080fd5b5061063b611570565b6040516106489190615023565b60405180910390f35b34801561065d57600080fd5b5061067860048036038101906106739190613908565b611576565b6040516106859190614ba2565b60405180910390f35b34801561069a57600080fd5b506106a361166f565b6040516106b09190614adb565b60405180910390f35b3480156106c557600080fd5b506106ce611699565b6040516106db9190614bdf565b60405180910390f35b3480156106f057600080fd5b506106f961173b565b6040516107069190614bdf565b60405180910390f35b34801561071b57600080fd5b5061073660048036038101906107319190613a37565b6117d9565b005b34801561074457600080fd5b5061075f600480360381019061075a9190613908565b61195a565b60405161076c9190614b80565b60405180910390f35b34801561078157600080fd5b5061079c60048036038101906107979190613b2a565b611b07565b005b3480156107aa57600080fd5b506107b3611bf3565b6040516107c09190614bdf565b60405180910390f35b3480156107d557600080fd5b506107f060048036038101906107eb91906139bc565b611c91565b005b3480156107fe57600080fd5b5061081960048036038101906108149190613b94565b611cf3565b005b34801561082757600080fd5b50610830611ec3565b005b34801561083e57600080fd5b5061085960048036038101906108549190613b6b565b611f94565b6040516108669190614bdf565b60405180910390f35b34801561087b57600080fd5b5061089660048036038101906108919190613b6b565b612044565b6040516108a39190614bdf565b60405180910390f35b3480156108b857600080fd5b506108d360048036038101906108ce9190613b6b565b6121c7565b6040516108e09190614bdf565b60405180910390f35b3480156108f557600080fd5b50610910600480360381019061090b9190613931565b6122b4565b60405161091d9190614bc4565b60405180910390f35b34801561093257600080fd5b5061094d60048036038101906109489190613a73565b612348565b005b34801561095b57600080fd5b50610964612466565b6040516109719190614bc4565b60405180910390f35b34801561098657600080fd5b506109a1600480360381019061099c9190613908565b612479565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610aa25780601f10610a7757610100808354040283529160200191610aa2565b820191906000526020600020905b815481529060010190602001808311610a8557829003601f168201915b5050505050905090565b6000610ab782612625565b610af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aed90614ec3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b3c8261129b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba490614fa3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bcc612642565b73ffffffffffffffffffffffffffffffffffffffff161480610bfb5750610bfa81610bf5612642565b6122b4565b5b610c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3190614dc3565b60405180910390fd5b610c44838361264a565b505050565b66b1a2bc2ec5000081565b6060610c5e610de8565b8210610c9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9690614f03565b60405180910390fd5b600e60008381526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610d465780601f10610d1b57610100808354040283529160200191610d46565b820191906000526020600020905b815481529060010190602001808311610d2957829003601f168201915b50505050509050919050565b610d5a612642565b73ffffffffffffffffffffffffffffffffffffffff16610d7861166f565b73ffffffffffffffffffffffffffffffffffffffff1614610dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc590614ee3565b60405180910390fd5b80600b9080519060200190610de492919061370f565b5050565b6000610df46002612703565b905090565b600a81565b600d60019054906101000a900460ff16610e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4490614d63565b60405180910390fd5b600081118015610e5e5750600a8111155b610e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9490614e83565b60405180910390fd5b611388610eba82610eac610de8565b61271890919063ffffffff16565b1115610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef290614f43565b60405180910390fd5b610f158166b1a2bc2ec5000061276d90919063ffffffff16565b341015610f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4e90614d23565b60405180910390fd5b60005b81811015610f98576000610f6c610de8565b9050611388610f79610de8565b1015610f8a57610f8933826127dd565b5b508080600101915050610f5a565b5050565b610fad610fa7612642565b826127fb565b610fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe390614fe3565b60405180910390fd5b610ff78383836128d9565b505050565b600061104f82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612af090919063ffffffff16565b905092915050565b61105f612642565b73ffffffffffffffffffffffffffffffffffffffff1661107d61166f565b73ffffffffffffffffffffffffffffffffffffffff16146110d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ca90614ee3565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b611107612642565b73ffffffffffffffffffffffffffffffffffffffff1661112561166f565b73ffffffffffffffffffffffffffffffffffffffff161461117b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117290614ee3565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156111c6573d6000803e3d6000fd5b5050565b6111e583838360405180602001604052806000815250611c91565b505050565b600080611201836002612b0a90919063ffffffff16565b50905080915050919050565b611215612642565b73ffffffffffffffffffffffffffffffffffffffff1661123361166f565b73ffffffffffffffffffffffffffffffffffffffff1614611289576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128090614ee3565b60405180910390fd5b61129281612b36565b50565b61138881565b60006112cb8260405180606001604052806029815260200161538b602991396002612b509092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561136a5780601f1061133f5761010080835404028352916020019161136a565b820191906000526020600020905b81548152906001019060200180831161134d57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dc90614de3565b60405180910390fd5b61142c600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612b6f565b9050919050565b61143b612642565b73ffffffffffffffffffffffffffffffffffffffff1661145961166f565b73ffffffffffffffffffffffffffffffffffffffff16146114af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a690614ee3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600f5481565b6060600061158383611374565b905060008114156115de57600067ffffffffffffffff811180156115a657600080fd5b506040519080825280602002602001820160405280156115d55781602001602082028036833780820191505090505b5091505061166a565b60008167ffffffffffffffff811180156115f757600080fd5b506040519080825280602002602001820160405280156116265781602001602082028036833780820191505090505b50905060005b828110156116635761163e8582610ffc565b82828151811061164a57fe5b602002602001018181525050808060010191505061162c565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117315780601f1061170657610100808354040283529160200191611731565b820191906000526020600020905b81548152906001019060200180831161171457829003601f168201915b5050505050905090565b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117d15780601f106117a6576101008083540402835291602001916117d1565b820191906000526020600020905b8154815290600101906020018083116117b457829003601f168201915b505050505081565b6117e1612642565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561184f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184690614d03565b60405180910390fd5b806005600061185c612642565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611909612642565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161194e9190614bc4565b60405180910390a35050565b6060600061196783611374565b905060008114156119c757600067ffffffffffffffff8111801561198a57600080fd5b506040519080825280602002602001820160405280156119be57816020015b60608152602001906001900390816119a95790505b50915050611b02565b60008167ffffffffffffffff811180156119e057600080fd5b50604051908082528060200260200182016040528015611a1457816020015b60608152602001906001900390816119ff5790505b50905060005b82811015611afb57600e6000611a308784610ffc565b81526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611ad25780601f10611aa757610100808354040283529160200191611ad2565b820191906000526020600020905b815481529060010190602001808311611ab557829003601f168201915b5050505050828281518110611ae357fe5b60200260200101819052508080600101915050611a1a565b8193505050505b919050565b611b0f612642565b73ffffffffffffffffffffffffffffffffffffffff16611b2d61166f565b73ffffffffffffffffffffffffffffffffffffffff1614611b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7a90614ee3565b60405180910390fd5b60001515600d60009054906101000a900460ff16151514611bd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd090614fc3565b60405180910390fd5b80600c9080519060200190611bef92919061370f565b5050565b600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611c895780601f10611c5e57610100808354040283529160200191611c89565b820191906000526020600020905b815481529060010190602001808311611c6c57829003601f168201915b505050505081565b611ca2611c9c612642565b836127fb565b611ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd890614fe3565b60405180910390fd5b611ced84848484612b84565b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16611d138361129b565b73ffffffffffffffffffffffffffffffffffffffff1614611d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6090614f83565b60405180910390fd5b6002600e6000848152602001908152602001600020604051611d8b9190614aa0565b602060405180830381855afa158015611da8573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190611dcb9190613aaf565b600282604051611ddb9190614a89565b602060405180830381855afa158015611df8573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190611e1b9190613aaf565b1415611e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5390614e23565b60405180910390fd5b80600e60008481526020019081526020016000209080519060200190611e8392919061370f565b507fd5009640b6ce057b5d18120d402f83e0e21ac8210af486e36b53940a3c53a3c5338383604051611eb793929190614b42565b60405180910390a15050565b611ecb612642565b73ffffffffffffffffffffffffffffffffffffffff16611ee961166f565b73ffffffffffffffffffffffffffffffffffffffff1614611f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3690614ee3565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055507f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0600c604051611f8a9190614c01565b60405180910390a1565b600e6020528060005260406000206000915090508054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561203c5780601f106120115761010080835404028352916020019161203c565b820191906000526020600020905b81548152906001019060200180831161201f57829003601f168201915b505050505081565b606061204f82612625565b61208e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208590614f63565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156121375780601f1061210c57610100808354040283529160200191612137565b820191906000526020600020905b81548152906001019060200180831161211a57829003601f168201915b5050505050905060006121486112d2565b905060008151141561215e5781925050506121c2565b60008251111561219357808260405160200161217b929190614ab7565b604051602081830303815290604052925050506121c2565b8061219d85612be0565b6040516020016121ae929190614ab7565b604051602081830303815290604052925050505b919050565b60606121d1610de8565b8210612212576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220990614c43565b60405180910390fd5b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156122a85780601f1061227d576101008083540402835291602001916122a8565b820191906000526020600020905b81548152906001019060200180831161228b57829003601f168201915b50505050509050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612350612642565b73ffffffffffffffffffffffffffffffffffffffff1661236e61166f565b73ffffffffffffffffffffffffffffffffffffffff16146123c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bb90614ee3565b60405180910390fd5b60006123ce610de8565b90506000821180156123e25750600f548211155b612421576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241890614e03565b60405180910390fd5b60005b8281101561244557612438848284016127dd565b8080600101915050612424565b5061245b82600f54612d2790919063ffffffff16565b600f81905550505050565b600d60019054906101000a900460ff1681565b612481612642565b73ffffffffffffffffffffffffffffffffffffffff1661249f61166f565b73ffffffffffffffffffffffffffffffffffffffff16146124f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ec90614ee3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255c90614c83565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061263b826002612d7790919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126bd8361129b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061271182600001612d91565b9050919050565b600080828401905083811015612763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275a90614cc3565b60405180910390fd5b8091505092915050565b60008083141561278057600090506127d7565b600082840290508284828161279157fe5b04146127d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c990614ea3565b60405180910390fd5b809150505b92915050565b6127f7828260405180602001604052806000815250612da2565b5050565b600061280682612625565b612845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283c90614da3565b60405180910390fd5b60006128508361129b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128bf57508373ffffffffffffffffffffffffffffffffffffffff166128a784610aac565b73ffffffffffffffffffffffffffffffffffffffff16145b806128d057506128cf81856122b4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166128f98261129b565b73ffffffffffffffffffffffffffffffffffffffff161461294f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294690614f23565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b690614ce3565b60405180910390fd5b6129ca838383612dfd565b6129d560008261264a565b612a2681600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612e0290919063ffffffff16565b50612a7881600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612e1c90919063ffffffff16565b50612a8f81836002612e369092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612aff8360000183612e6b565b60001c905092915050565b600080600080612b1d8660000186612ed8565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190612b4c92919061370f565b5050565b6000612b63846000018460001b84612f5b565b60001c90509392505050565b6000612b7d82600001612fec565b9050919050565b612b8f8484846128d9565b612b9b84848484612ffd565b612bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd190614c63565b60405180910390fd5b50505050565b60606000821415612c28576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d22565b600082905060005b60008214612c52578080600101915050600a8281612c4a57fe5b049150612c30565b60008167ffffffffffffffff81118015612c6b57600080fd5b506040519080825280601f01601f191660200182016040528015612c9e5781602001600182028036833780820191505090505b50905060006001830390508593505b60008414612d1a57600a8481612cbf57fe5b0660300160f81b82828060019003935081518110612cd957fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481612d1257fe5b049350612cad565b819450505050505b919050565b600082821115612d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6390614d43565b60405180910390fd5b818303905092915050565b6000612d89836000018360001b613161565b905092915050565b600081600001805490509050919050565b612dac8383613184565b612db96000848484612ffd565b612df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612def90614c63565b60405180910390fd5b505050565b505050565b6000612e14836000018360001b613312565b905092915050565b6000612e2e836000018360001b6133fa565b905092915050565b6000612e62846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b61346a565b90509392505050565b600081836000018054905011612eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ead90614c23565b60405180910390fd5b826000018281548110612ec557fe5b9060005260206000200154905092915050565b60008082846000018054905011612f24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1b90614e43565b60405180910390fd5b6000846000018481548110612f3557fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb49190614bdf565b60405180910390fd5b50846000016001820381548110612fd057fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b600061301e8473ffffffffffffffffffffffffffffffffffffffff16613546565b61302b5760019050613159565b60006130f263150b7a0260e01b613040612642565b8887876040516024016130569493929190614af6565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001615359603291398773ffffffffffffffffffffffffffffffffffffffff166135599092919063ffffffff16565b905060008180602001905181019061310a9190613b01565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131eb90614e63565b60405180910390fd5b6131fd81612625565b1561323d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161323490614ca3565b60405180910390fd5b61324960008383612dfd565b61329a81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612e1c90919063ffffffff16565b506132b181836002612e369092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080836001016000848152602001908152602001600020549050600081146133ee576000600182039050600060018660000180549050039050600086600001828154811061335d57fe5b906000526020600020015490508087600001848154811061337a57fe5b90600052602060002001819055506001830187600101600083815260200190815260200160002081905550866000018054806133b257fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506133f4565b60009150505b92915050565b60006134068383613571565b61345f578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050613464565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156135115784600001604051806040016040528086815260200185815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050846000018054905085600101600086815260200190815260200160002081905550600191505061353f565b8285600001600183038154811061352457fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600080823b905060008111915050919050565b60606135688484600085613594565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b6060824710156135d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135d090614d83565b60405180910390fd5b6135e285613546565b613621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161361890615003565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161364a9190614a89565b60006040518083038185875af1925050503d8060008114613687576040519150601f19603f3d011682016040523d82523d6000602084013e61368c565b606091505b509150915061369c8282866136a8565b92505050949350505050565b606083156136b857829050613708565b6000835111156136cb5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136ff9190614bdf565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282613745576000855561378c565b82601f1061375e57805160ff191683800117855561378c565b8280016001018555821561378c579182015b8281111561378b578251825591602001919060010190613770565b5b509050613799919061379d565b5090565b5b808211156137b657600081600090555060010161379e565b5090565b60006137cd6137c88461506f565b61503e565b9050828152602081018484840111156137e557600080fd5b6137f0848285615290565b509392505050565b600061380b6138068461509f565b61503e565b90508281526020810184848401111561382357600080fd5b61382e848285615290565b509392505050565b600081359050613845816152e5565b92915050565b60008135905061385a816152fc565b92915050565b60008151905061386f81615313565b92915050565b6000813590506138848161532a565b92915050565b6000815190506138998161532a565b92915050565b600082601f8301126138b057600080fd5b81356138c08482602086016137ba565b91505092915050565b600082601f8301126138da57600080fd5b81356138ea8482602086016137f8565b91505092915050565b60008135905061390281615341565b92915050565b60006020828403121561391a57600080fd5b600061392884828501613836565b91505092915050565b6000806040838503121561394457600080fd5b600061395285828601613836565b925050602061396385828601613836565b9150509250929050565b60008060006060848603121561398257600080fd5b600061399086828701613836565b93505060206139a186828701613836565b92505060406139b2868287016138f3565b9150509250925092565b600080600080608085870312156139d257600080fd5b60006139e087828801613836565b94505060206139f187828801613836565b9350506040613a02878288016138f3565b925050606085013567ffffffffffffffff811115613a1f57600080fd5b613a2b8782880161389f565b91505092959194509250565b60008060408385031215613a4a57600080fd5b6000613a5885828601613836565b9250506020613a698582860161384b565b9150509250929050565b60008060408385031215613a8657600080fd5b6000613a9485828601613836565b9250506020613aa5858286016138f3565b9150509250929050565b600060208284031215613ac157600080fd5b6000613acf84828501613860565b91505092915050565b600060208284031215613aea57600080fd5b6000613af884828501613875565b91505092915050565b600060208284031215613b1357600080fd5b6000613b218482850161388a565b91505092915050565b600060208284031215613b3c57600080fd5b600082013567ffffffffffffffff811115613b5657600080fd5b613b62848285016138c9565b91505092915050565b600060208284031215613b7d57600080fd5b6000613b8b848285016138f3565b91505092915050565b60008060408385031215613ba757600080fd5b6000613bb5858286016138f3565b925050602083013567ffffffffffffffff811115613bd257600080fd5b613bde858286016138c9565b9150509250929050565b6000613bf48383613e1b565b905092915050565b6000613c088383614a6b565b60208301905092915050565b613c1d8161525a565b82525050565b613c2c816151dc565b82525050565b613c3b816151ca565b82525050565b6000613c4c82615119565b613c56818561515f565b935083602082028501613c68856150cf565b8060005b85811015613ca45784840389528151613c858582613be8565b9450613c9083615145565b925060208a01995050600181019050613c6c565b50829750879550505050505092915050565b6000613cc182615124565b613ccb8185615170565b9350613cd6836150df565b8060005b83811015613d07578151613cee8882613bfc565b9750613cf983615152565b925050600181019050613cda565b5085935050505092915050565b613d1d816151ee565b82525050565b6000613d2e8261512f565b613d388185615181565b9350613d4881856020860161529f565b613d51816152d4565b840191505092915050565b6000613d678261512f565b613d718185615192565b9350613d8181856020860161529f565b80840191505092915050565b600081546001811660008114613daa5760018114613dcf57613e13565b607f6002830416613dbb8187615192565b955060ff1983168652808601935050613e13565b60028204613ddd8187615192565b9550613de8856150ef565b60005b82811015613e0a57815481890152600182019150602081019050613deb565b82880195505050505b505092915050565b6000613e268261513a565b613e30818561519d565b9350613e4081856020860161529f565b613e49816152d4565b840191505092915050565b6000613e5f8261513a565b613e6981856151ae565b9350613e7981856020860161529f565b613e82816152d4565b840191505092915050565b6000613e988261513a565b613ea281856151bf565b9350613eb281856020860161529f565b80840191505092915050565b600081546001811660008114613edb5760018114613f0157613f45565b607f6002830416613eec81876151ae565b955060ff198316865260208601935050613f45565b60028204613f0f81876151ae565b9550613f1a85615104565b60005b82811015613f3c57815481890152600182019150602081019050613f1d565b80880195505050505b505092915050565b6000613f5a6022836151ae565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fc0601d836151ae565b91507f43484f4f534520412056494c4c41494e2057495448494e2052414e47450000006000830152602082019050919050565b60006140006032836151ae565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006140666026836151ae565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140cc601c836151ae565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061410c601b836151ae565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b600061414c6024836151ae565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006141b26019836151ae565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006141f2601f836151ae565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000614232601e836151ae565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b60006142726023836151ae565b91507f53616c65206d7573742062652061637469766520746f206d696e742056696c6c60008301527f61696e00000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006142d86026836151ae565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061433e602c836151ae565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006143a46038836151ae565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061440a602a836151ae565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006144706027836151ae565b91507f4e61682066616d2c2074686572652773206e6f206d6f7265206c65667420666f60008301527f722046656c742e000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006144d66033836151ae565b91507f4e61682066616d2c207468617473207468652073616d65206e616d652120537760008301527f697463682069742075702061206269742e2e2e000000000000000000000000006020830152604082019050919050565b600061453c6022836151ae565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006145a26020836151ae565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006145e26051836151ae565b91507f546f6f206d616e79206675636b696e672056696c6c61696e7320696e20796f7560008301527f722067616e672066616d2120596f752063616e206f6e6c79206d696e7420313060208301527f20746f6b656e7320617420612074696d650000000000000000000000000000006040830152606082019050919050565b600061466e6021836151ae565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146d4602c836151ae565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061473a6020836151ae565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061477a601f836151ae565b91507f5069636b20612056696c6c61696e2077697468696e2072616e676520706c7a006000830152602082019050919050565b60006147ba6029836151ae565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006148206025836151ae565b91507f4e6f7420656e6f7567682056696c6c61696e7320666f7220746861742062696760008301527f2066616d2e0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614886602f836151ae565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006148ec601c836151ae565b91507f546869732061696e277420796f75722056696c6c61696e2066616d21000000006000830152602082019050919050565b600061492c6021836151ae565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006149926016836151ae565b91507f4c6963656e736520616c7265616479206c6f636b6564000000000000000000006000830152602082019050919050565b60006149d26031836151ae565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614a38601d836151ae565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b614a7481615250565b82525050565b614a8381615250565b82525050565b6000614a958284613d5c565b915081905092915050565b6000614aac8284613d8d565b915081905092915050565b6000614ac38285613e8d565b9150614acf8284613e8d565b91508190509392505050565b6000602082019050614af06000830184613c32565b92915050565b6000608082019050614b0b6000830187613c23565b614b186020830186613c32565b614b256040830185614a7a565b8181036060830152614b378184613d23565b905095945050505050565b6000606082019050614b576000830186613c14565b614b646020830185614a7a565b8181036040830152614b768184613e54565b9050949350505050565b60006020820190508181036000830152614b9a8184613c41565b905092915050565b60006020820190508181036000830152614bbc8184613cb6565b905092915050565b6000602082019050614bd96000830184613d14565b92915050565b60006020820190508181036000830152614bf98184613e54565b905092915050565b60006020820190508181036000830152614c1b8184613ebe565b905092915050565b60006020820190508181036000830152614c3c81613f4d565b9050919050565b60006020820190508181036000830152614c5c81613fb3565b9050919050565b60006020820190508181036000830152614c7c81613ff3565b9050919050565b60006020820190508181036000830152614c9c81614059565b9050919050565b60006020820190508181036000830152614cbc816140bf565b9050919050565b60006020820190508181036000830152614cdc816140ff565b9050919050565b60006020820190508181036000830152614cfc8161413f565b9050919050565b60006020820190508181036000830152614d1c816141a5565b9050919050565b60006020820190508181036000830152614d3c816141e5565b9050919050565b60006020820190508181036000830152614d5c81614225565b9050919050565b60006020820190508181036000830152614d7c81614265565b9050919050565b60006020820190508181036000830152614d9c816142cb565b9050919050565b60006020820190508181036000830152614dbc81614331565b9050919050565b60006020820190508181036000830152614ddc81614397565b9050919050565b60006020820190508181036000830152614dfc816143fd565b9050919050565b60006020820190508181036000830152614e1c81614463565b9050919050565b60006020820190508181036000830152614e3c816144c9565b9050919050565b60006020820190508181036000830152614e5c8161452f565b9050919050565b60006020820190508181036000830152614e7c81614595565b9050919050565b60006020820190508181036000830152614e9c816145d5565b9050919050565b60006020820190508181036000830152614ebc81614661565b9050919050565b60006020820190508181036000830152614edc816146c7565b9050919050565b60006020820190508181036000830152614efc8161472d565b9050919050565b60006020820190508181036000830152614f1c8161476d565b9050919050565b60006020820190508181036000830152614f3c816147ad565b9050919050565b60006020820190508181036000830152614f5c81614813565b9050919050565b60006020820190508181036000830152614f7c81614879565b9050919050565b60006020820190508181036000830152614f9c816148df565b9050919050565b60006020820190508181036000830152614fbc8161491f565b9050919050565b60006020820190508181036000830152614fdc81614985565b9050919050565b60006020820190508181036000830152614ffc816149c5565b9050919050565b6000602082019050818103600083015261501c81614a2b565b9050919050565b60006020820190506150386000830184614a7a565b92915050565b6000604051905081810181811067ffffffffffffffff82111715615065576150646152d2565b5b8060405250919050565b600067ffffffffffffffff82111561508a576150896152d2565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156150ba576150b96152d2565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006151d582615230565b9050919050565b60006151e782615230565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006152658261526c565b9050919050565b60006152778261527e565b9050919050565b600061528982615230565b9050919050565b82818337600083830152505050565b60005b838110156152bd5780820151818401526020810190506152a2565b838111156152cc576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b6152ee816151ca565b81146152f957600080fd5b50565b615305816151ee565b811461531057600080fd5b50565b61531c816151fa565b811461532757600080fd5b50565b61533381615204565b811461533e57600080fd5b50565b61534a81615250565b811461535557600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220f0acc938c9cb733f3058cf480d673a57cf0a6d55c559310e1643ba49431056b264736f6c63430007060033

Deployed Bytecode

0x6080604052600436106102465760003560e01c806370a0823111610139578063b6fbc8b3116100b6578063c87b56dd1161007a578063c87b56dd1461086f578063d9b137b2146108ac578063e985e9c5146108e9578063eb4c89d814610926578063eb8d24441461094f578063f2fde38b1461097a57610246565b8063b6fbc8b31461079e578063b88d4fde146107c9578063bcd7fa61146107f2578063bf4702fc1461081b578063c36134291461083257610246565b806395d89b41116100fd57806395d89b41146106b95780639c3e72bd146106e4578063a22cb4651461070f578063a9326d5014610738578063b09904b51461077557610246565b806370a08231146105d2578063715018a61461060f5780637d0499a1146106265780638462151c146106515780638da5cb5b1461068e57610246565b806323b872dd116101c75780634f6ccce71161018b5780634f6ccce7146104d957806355f804b31461051657806358f7a7931461053f5780636352211e1461056a5780636c0360eb146105a757610246565b806323b872dd1461041c5780632f745c591461044557806334918dfd146104825780633ccfd60b1461049957806342842e0e146104b057610246565b80630ff33f7c1161020e5780630ff33f7c14610344578063109695231461038157806318160ddd146103aa5780631b907c23146103d55780631c18ab661461040057610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f05780630d21352d14610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613ad8565b6109a3565b60405161027f9190614bc4565b60405180910390f35b34801561029457600080fd5b5061029d610a0a565b6040516102aa9190614bdf565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613b6b565b610aac565b6040516102e79190614adb565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613a73565b610b31565b005b34801561032557600080fd5b5061032e610c49565b60405161033b9190615023565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190613b6b565b610c54565b6040516103789190614bdf565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a39190613b2a565b610d52565b005b3480156103b657600080fd5b506103bf610de8565b6040516103cc9190615023565b60405180910390f35b3480156103e157600080fd5b506103ea610df9565b6040516103f79190615023565b60405180910390f35b61041a60048036038101906104159190613b6b565b610dfe565b005b34801561042857600080fd5b50610443600480360381019061043e919061396d565b610f9c565b005b34801561045157600080fd5b5061046c60048036038101906104679190613a73565b610ffc565b6040516104799190615023565b60405180910390f35b34801561048e57600080fd5b50610497611057565b005b3480156104a557600080fd5b506104ae6110ff565b005b3480156104bc57600080fd5b506104d760048036038101906104d2919061396d565b6111ca565b005b3480156104e557600080fd5b5061050060048036038101906104fb9190613b6b565b6111ea565b60405161050d9190615023565b60405180910390f35b34801561052257600080fd5b5061053d60048036038101906105389190613b2a565b61120d565b005b34801561054b57600080fd5b50610554611295565b6040516105619190615023565b60405180910390f35b34801561057657600080fd5b50610591600480360381019061058c9190613b6b565b61129b565b60405161059e9190614adb565b60405180910390f35b3480156105b357600080fd5b506105bc6112d2565b6040516105c99190614bdf565b60405180910390f35b3480156105de57600080fd5b506105f960048036038101906105f49190613908565b611374565b6040516106069190615023565b60405180910390f35b34801561061b57600080fd5b50610624611433565b005b34801561063257600080fd5b5061063b611570565b6040516106489190615023565b60405180910390f35b34801561065d57600080fd5b5061067860048036038101906106739190613908565b611576565b6040516106859190614ba2565b60405180910390f35b34801561069a57600080fd5b506106a361166f565b6040516106b09190614adb565b60405180910390f35b3480156106c557600080fd5b506106ce611699565b6040516106db9190614bdf565b60405180910390f35b3480156106f057600080fd5b506106f961173b565b6040516107069190614bdf565b60405180910390f35b34801561071b57600080fd5b5061073660048036038101906107319190613a37565b6117d9565b005b34801561074457600080fd5b5061075f600480360381019061075a9190613908565b61195a565b60405161076c9190614b80565b60405180910390f35b34801561078157600080fd5b5061079c60048036038101906107979190613b2a565b611b07565b005b3480156107aa57600080fd5b506107b3611bf3565b6040516107c09190614bdf565b60405180910390f35b3480156107d557600080fd5b506107f060048036038101906107eb91906139bc565b611c91565b005b3480156107fe57600080fd5b5061081960048036038101906108149190613b94565b611cf3565b005b34801561082757600080fd5b50610830611ec3565b005b34801561083e57600080fd5b5061085960048036038101906108549190613b6b565b611f94565b6040516108669190614bdf565b60405180910390f35b34801561087b57600080fd5b5061089660048036038101906108919190613b6b565b612044565b6040516108a39190614bdf565b60405180910390f35b3480156108b857600080fd5b506108d360048036038101906108ce9190613b6b565b6121c7565b6040516108e09190614bdf565b60405180910390f35b3480156108f557600080fd5b50610910600480360381019061090b9190613931565b6122b4565b60405161091d9190614bc4565b60405180910390f35b34801561093257600080fd5b5061094d60048036038101906109489190613a73565b612348565b005b34801561095b57600080fd5b50610964612466565b6040516109719190614bc4565b60405180910390f35b34801561098657600080fd5b506109a1600480360381019061099c9190613908565b612479565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610aa25780601f10610a7757610100808354040283529160200191610aa2565b820191906000526020600020905b815481529060010190602001808311610a8557829003601f168201915b5050505050905090565b6000610ab782612625565b610af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aed90614ec3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b3c8261129b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba490614fa3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bcc612642565b73ffffffffffffffffffffffffffffffffffffffff161480610bfb5750610bfa81610bf5612642565b6122b4565b5b610c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3190614dc3565b60405180910390fd5b610c44838361264a565b505050565b66b1a2bc2ec5000081565b6060610c5e610de8565b8210610c9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9690614f03565b60405180910390fd5b600e60008381526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610d465780601f10610d1b57610100808354040283529160200191610d46565b820191906000526020600020905b815481529060010190602001808311610d2957829003601f168201915b50505050509050919050565b610d5a612642565b73ffffffffffffffffffffffffffffffffffffffff16610d7861166f565b73ffffffffffffffffffffffffffffffffffffffff1614610dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc590614ee3565b60405180910390fd5b80600b9080519060200190610de492919061370f565b5050565b6000610df46002612703565b905090565b600a81565b600d60019054906101000a900460ff16610e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4490614d63565b60405180910390fd5b600081118015610e5e5750600a8111155b610e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9490614e83565b60405180910390fd5b611388610eba82610eac610de8565b61271890919063ffffffff16565b1115610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef290614f43565b60405180910390fd5b610f158166b1a2bc2ec5000061276d90919063ffffffff16565b341015610f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4e90614d23565b60405180910390fd5b60005b81811015610f98576000610f6c610de8565b9050611388610f79610de8565b1015610f8a57610f8933826127dd565b5b508080600101915050610f5a565b5050565b610fad610fa7612642565b826127fb565b610fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe390614fe3565b60405180910390fd5b610ff78383836128d9565b505050565b600061104f82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612af090919063ffffffff16565b905092915050565b61105f612642565b73ffffffffffffffffffffffffffffffffffffffff1661107d61166f565b73ffffffffffffffffffffffffffffffffffffffff16146110d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ca90614ee3565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b611107612642565b73ffffffffffffffffffffffffffffffffffffffff1661112561166f565b73ffffffffffffffffffffffffffffffffffffffff161461117b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117290614ee3565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156111c6573d6000803e3d6000fd5b5050565b6111e583838360405180602001604052806000815250611c91565b505050565b600080611201836002612b0a90919063ffffffff16565b50905080915050919050565b611215612642565b73ffffffffffffffffffffffffffffffffffffffff1661123361166f565b73ffffffffffffffffffffffffffffffffffffffff1614611289576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128090614ee3565b60405180910390fd5b61129281612b36565b50565b61138881565b60006112cb8260405180606001604052806029815260200161538b602991396002612b509092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561136a5780601f1061133f5761010080835404028352916020019161136a565b820191906000526020600020905b81548152906001019060200180831161134d57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dc90614de3565b60405180910390fd5b61142c600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612b6f565b9050919050565b61143b612642565b73ffffffffffffffffffffffffffffffffffffffff1661145961166f565b73ffffffffffffffffffffffffffffffffffffffff16146114af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a690614ee3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600f5481565b6060600061158383611374565b905060008114156115de57600067ffffffffffffffff811180156115a657600080fd5b506040519080825280602002602001820160405280156115d55781602001602082028036833780820191505090505b5091505061166a565b60008167ffffffffffffffff811180156115f757600080fd5b506040519080825280602002602001820160405280156116265781602001602082028036833780820191505090505b50905060005b828110156116635761163e8582610ffc565b82828151811061164a57fe5b602002602001018181525050808060010191505061162c565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117315780601f1061170657610100808354040283529160200191611731565b820191906000526020600020905b81548152906001019060200180831161171457829003601f168201915b5050505050905090565b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117d15780601f106117a6576101008083540402835291602001916117d1565b820191906000526020600020905b8154815290600101906020018083116117b457829003601f168201915b505050505081565b6117e1612642565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561184f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184690614d03565b60405180910390fd5b806005600061185c612642565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611909612642565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161194e9190614bc4565b60405180910390a35050565b6060600061196783611374565b905060008114156119c757600067ffffffffffffffff8111801561198a57600080fd5b506040519080825280602002602001820160405280156119be57816020015b60608152602001906001900390816119a95790505b50915050611b02565b60008167ffffffffffffffff811180156119e057600080fd5b50604051908082528060200260200182016040528015611a1457816020015b60608152602001906001900390816119ff5790505b50905060005b82811015611afb57600e6000611a308784610ffc565b81526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611ad25780601f10611aa757610100808354040283529160200191611ad2565b820191906000526020600020905b815481529060010190602001808311611ab557829003601f168201915b5050505050828281518110611ae357fe5b60200260200101819052508080600101915050611a1a565b8193505050505b919050565b611b0f612642565b73ffffffffffffffffffffffffffffffffffffffff16611b2d61166f565b73ffffffffffffffffffffffffffffffffffffffff1614611b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7a90614ee3565b60405180910390fd5b60001515600d60009054906101000a900460ff16151514611bd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd090614fc3565b60405180910390fd5b80600c9080519060200190611bef92919061370f565b5050565b600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611c895780601f10611c5e57610100808354040283529160200191611c89565b820191906000526020600020905b815481529060010190602001808311611c6c57829003601f168201915b505050505081565b611ca2611c9c612642565b836127fb565b611ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd890614fe3565b60405180910390fd5b611ced84848484612b84565b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16611d138361129b565b73ffffffffffffffffffffffffffffffffffffffff1614611d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6090614f83565b60405180910390fd5b6002600e6000848152602001908152602001600020604051611d8b9190614aa0565b602060405180830381855afa158015611da8573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190611dcb9190613aaf565b600282604051611ddb9190614a89565b602060405180830381855afa158015611df8573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190611e1b9190613aaf565b1415611e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5390614e23565b60405180910390fd5b80600e60008481526020019081526020016000209080519060200190611e8392919061370f565b507fd5009640b6ce057b5d18120d402f83e0e21ac8210af486e36b53940a3c53a3c5338383604051611eb793929190614b42565b60405180910390a15050565b611ecb612642565b73ffffffffffffffffffffffffffffffffffffffff16611ee961166f565b73ffffffffffffffffffffffffffffffffffffffff1614611f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3690614ee3565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055507f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0600c604051611f8a9190614c01565b60405180910390a1565b600e6020528060005260406000206000915090508054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561203c5780601f106120115761010080835404028352916020019161203c565b820191906000526020600020905b81548152906001019060200180831161201f57829003601f168201915b505050505081565b606061204f82612625565b61208e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208590614f63565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156121375780601f1061210c57610100808354040283529160200191612137565b820191906000526020600020905b81548152906001019060200180831161211a57829003601f168201915b5050505050905060006121486112d2565b905060008151141561215e5781925050506121c2565b60008251111561219357808260405160200161217b929190614ab7565b604051602081830303815290604052925050506121c2565b8061219d85612be0565b6040516020016121ae929190614ab7565b604051602081830303815290604052925050505b919050565b60606121d1610de8565b8210612212576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220990614c43565b60405180910390fd5b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156122a85780601f1061227d576101008083540402835291602001916122a8565b820191906000526020600020905b81548152906001019060200180831161228b57829003601f168201915b50505050509050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612350612642565b73ffffffffffffffffffffffffffffffffffffffff1661236e61166f565b73ffffffffffffffffffffffffffffffffffffffff16146123c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bb90614ee3565b60405180910390fd5b60006123ce610de8565b90506000821180156123e25750600f548211155b612421576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241890614e03565b60405180910390fd5b60005b8281101561244557612438848284016127dd565b8080600101915050612424565b5061245b82600f54612d2790919063ffffffff16565b600f81905550505050565b600d60019054906101000a900460ff1681565b612481612642565b73ffffffffffffffffffffffffffffffffffffffff1661249f61166f565b73ffffffffffffffffffffffffffffffffffffffff16146124f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ec90614ee3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255c90614c83565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061263b826002612d7790919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126bd8361129b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061271182600001612d91565b9050919050565b600080828401905083811015612763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275a90614cc3565b60405180910390fd5b8091505092915050565b60008083141561278057600090506127d7565b600082840290508284828161279157fe5b04146127d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c990614ea3565b60405180910390fd5b809150505b92915050565b6127f7828260405180602001604052806000815250612da2565b5050565b600061280682612625565b612845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283c90614da3565b60405180910390fd5b60006128508361129b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128bf57508373ffffffffffffffffffffffffffffffffffffffff166128a784610aac565b73ffffffffffffffffffffffffffffffffffffffff16145b806128d057506128cf81856122b4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166128f98261129b565b73ffffffffffffffffffffffffffffffffffffffff161461294f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294690614f23565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b690614ce3565b60405180910390fd5b6129ca838383612dfd565b6129d560008261264a565b612a2681600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612e0290919063ffffffff16565b50612a7881600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612e1c90919063ffffffff16565b50612a8f81836002612e369092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612aff8360000183612e6b565b60001c905092915050565b600080600080612b1d8660000186612ed8565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190612b4c92919061370f565b5050565b6000612b63846000018460001b84612f5b565b60001c90509392505050565b6000612b7d82600001612fec565b9050919050565b612b8f8484846128d9565b612b9b84848484612ffd565b612bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd190614c63565b60405180910390fd5b50505050565b60606000821415612c28576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d22565b600082905060005b60008214612c52578080600101915050600a8281612c4a57fe5b049150612c30565b60008167ffffffffffffffff81118015612c6b57600080fd5b506040519080825280601f01601f191660200182016040528015612c9e5781602001600182028036833780820191505090505b50905060006001830390508593505b60008414612d1a57600a8481612cbf57fe5b0660300160f81b82828060019003935081518110612cd957fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481612d1257fe5b049350612cad565b819450505050505b919050565b600082821115612d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6390614d43565b60405180910390fd5b818303905092915050565b6000612d89836000018360001b613161565b905092915050565b600081600001805490509050919050565b612dac8383613184565b612db96000848484612ffd565b612df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612def90614c63565b60405180910390fd5b505050565b505050565b6000612e14836000018360001b613312565b905092915050565b6000612e2e836000018360001b6133fa565b905092915050565b6000612e62846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b61346a565b90509392505050565b600081836000018054905011612eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ead90614c23565b60405180910390fd5b826000018281548110612ec557fe5b9060005260206000200154905092915050565b60008082846000018054905011612f24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1b90614e43565b60405180910390fd5b6000846000018481548110612f3557fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb49190614bdf565b60405180910390fd5b50846000016001820381548110612fd057fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b600061301e8473ffffffffffffffffffffffffffffffffffffffff16613546565b61302b5760019050613159565b60006130f263150b7a0260e01b613040612642565b8887876040516024016130569493929190614af6565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001615359603291398773ffffffffffffffffffffffffffffffffffffffff166135599092919063ffffffff16565b905060008180602001905181019061310a9190613b01565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131eb90614e63565b60405180910390fd5b6131fd81612625565b1561323d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161323490614ca3565b60405180910390fd5b61324960008383612dfd565b61329a81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612e1c90919063ffffffff16565b506132b181836002612e369092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080836001016000848152602001908152602001600020549050600081146133ee576000600182039050600060018660000180549050039050600086600001828154811061335d57fe5b906000526020600020015490508087600001848154811061337a57fe5b90600052602060002001819055506001830187600101600083815260200190815260200160002081905550866000018054806133b257fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506133f4565b60009150505b92915050565b60006134068383613571565b61345f578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050613464565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156135115784600001604051806040016040528086815260200185815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050846000018054905085600101600086815260200190815260200160002081905550600191505061353f565b8285600001600183038154811061352457fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600080823b905060008111915050919050565b60606135688484600085613594565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b6060824710156135d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135d090614d83565b60405180910390fd5b6135e285613546565b613621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161361890615003565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161364a9190614a89565b60006040518083038185875af1925050503d8060008114613687576040519150601f19603f3d011682016040523d82523d6000602084013e61368c565b606091505b509150915061369c8282866136a8565b92505050949350505050565b606083156136b857829050613708565b6000835111156136cb5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136ff9190614bdf565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282613745576000855561378c565b82601f1061375e57805160ff191683800117855561378c565b8280016001018555821561378c579182015b8281111561378b578251825591602001919060010190613770565b5b509050613799919061379d565b5090565b5b808211156137b657600081600090555060010161379e565b5090565b60006137cd6137c88461506f565b61503e565b9050828152602081018484840111156137e557600080fd5b6137f0848285615290565b509392505050565b600061380b6138068461509f565b61503e565b90508281526020810184848401111561382357600080fd5b61382e848285615290565b509392505050565b600081359050613845816152e5565b92915050565b60008135905061385a816152fc565b92915050565b60008151905061386f81615313565b92915050565b6000813590506138848161532a565b92915050565b6000815190506138998161532a565b92915050565b600082601f8301126138b057600080fd5b81356138c08482602086016137ba565b91505092915050565b600082601f8301126138da57600080fd5b81356138ea8482602086016137f8565b91505092915050565b60008135905061390281615341565b92915050565b60006020828403121561391a57600080fd5b600061392884828501613836565b91505092915050565b6000806040838503121561394457600080fd5b600061395285828601613836565b925050602061396385828601613836565b9150509250929050565b60008060006060848603121561398257600080fd5b600061399086828701613836565b93505060206139a186828701613836565b92505060406139b2868287016138f3565b9150509250925092565b600080600080608085870312156139d257600080fd5b60006139e087828801613836565b94505060206139f187828801613836565b9350506040613a02878288016138f3565b925050606085013567ffffffffffffffff811115613a1f57600080fd5b613a2b8782880161389f565b91505092959194509250565b60008060408385031215613a4a57600080fd5b6000613a5885828601613836565b9250506020613a698582860161384b565b9150509250929050565b60008060408385031215613a8657600080fd5b6000613a9485828601613836565b9250506020613aa5858286016138f3565b9150509250929050565b600060208284031215613ac157600080fd5b6000613acf84828501613860565b91505092915050565b600060208284031215613aea57600080fd5b6000613af884828501613875565b91505092915050565b600060208284031215613b1357600080fd5b6000613b218482850161388a565b91505092915050565b600060208284031215613b3c57600080fd5b600082013567ffffffffffffffff811115613b5657600080fd5b613b62848285016138c9565b91505092915050565b600060208284031215613b7d57600080fd5b6000613b8b848285016138f3565b91505092915050565b60008060408385031215613ba757600080fd5b6000613bb5858286016138f3565b925050602083013567ffffffffffffffff811115613bd257600080fd5b613bde858286016138c9565b9150509250929050565b6000613bf48383613e1b565b905092915050565b6000613c088383614a6b565b60208301905092915050565b613c1d8161525a565b82525050565b613c2c816151dc565b82525050565b613c3b816151ca565b82525050565b6000613c4c82615119565b613c56818561515f565b935083602082028501613c68856150cf565b8060005b85811015613ca45784840389528151613c858582613be8565b9450613c9083615145565b925060208a01995050600181019050613c6c565b50829750879550505050505092915050565b6000613cc182615124565b613ccb8185615170565b9350613cd6836150df565b8060005b83811015613d07578151613cee8882613bfc565b9750613cf983615152565b925050600181019050613cda565b5085935050505092915050565b613d1d816151ee565b82525050565b6000613d2e8261512f565b613d388185615181565b9350613d4881856020860161529f565b613d51816152d4565b840191505092915050565b6000613d678261512f565b613d718185615192565b9350613d8181856020860161529f565b80840191505092915050565b600081546001811660008114613daa5760018114613dcf57613e13565b607f6002830416613dbb8187615192565b955060ff1983168652808601935050613e13565b60028204613ddd8187615192565b9550613de8856150ef565b60005b82811015613e0a57815481890152600182019150602081019050613deb565b82880195505050505b505092915050565b6000613e268261513a565b613e30818561519d565b9350613e4081856020860161529f565b613e49816152d4565b840191505092915050565b6000613e5f8261513a565b613e6981856151ae565b9350613e7981856020860161529f565b613e82816152d4565b840191505092915050565b6000613e988261513a565b613ea281856151bf565b9350613eb281856020860161529f565b80840191505092915050565b600081546001811660008114613edb5760018114613f0157613f45565b607f6002830416613eec81876151ae565b955060ff198316865260208601935050613f45565b60028204613f0f81876151ae565b9550613f1a85615104565b60005b82811015613f3c57815481890152600182019150602081019050613f1d565b80880195505050505b505092915050565b6000613f5a6022836151ae565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fc0601d836151ae565b91507f43484f4f534520412056494c4c41494e2057495448494e2052414e47450000006000830152602082019050919050565b60006140006032836151ae565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006140666026836151ae565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140cc601c836151ae565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061410c601b836151ae565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b600061414c6024836151ae565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006141b26019836151ae565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006141f2601f836151ae565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000614232601e836151ae565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b60006142726023836151ae565b91507f53616c65206d7573742062652061637469766520746f206d696e742056696c6c60008301527f61696e00000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006142d86026836151ae565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061433e602c836151ae565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006143a46038836151ae565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061440a602a836151ae565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006144706027836151ae565b91507f4e61682066616d2c2074686572652773206e6f206d6f7265206c65667420666f60008301527f722046656c742e000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006144d66033836151ae565b91507f4e61682066616d2c207468617473207468652073616d65206e616d652120537760008301527f697463682069742075702061206269742e2e2e000000000000000000000000006020830152604082019050919050565b600061453c6022836151ae565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006145a26020836151ae565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006145e26051836151ae565b91507f546f6f206d616e79206675636b696e672056696c6c61696e7320696e20796f7560008301527f722067616e672066616d2120596f752063616e206f6e6c79206d696e7420313060208301527f20746f6b656e7320617420612074696d650000000000000000000000000000006040830152606082019050919050565b600061466e6021836151ae565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146d4602c836151ae565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061473a6020836151ae565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061477a601f836151ae565b91507f5069636b20612056696c6c61696e2077697468696e2072616e676520706c7a006000830152602082019050919050565b60006147ba6029836151ae565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006148206025836151ae565b91507f4e6f7420656e6f7567682056696c6c61696e7320666f7220746861742062696760008301527f2066616d2e0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614886602f836151ae565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006148ec601c836151ae565b91507f546869732061696e277420796f75722056696c6c61696e2066616d21000000006000830152602082019050919050565b600061492c6021836151ae565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006149926016836151ae565b91507f4c6963656e736520616c7265616479206c6f636b6564000000000000000000006000830152602082019050919050565b60006149d26031836151ae565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614a38601d836151ae565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b614a7481615250565b82525050565b614a8381615250565b82525050565b6000614a958284613d5c565b915081905092915050565b6000614aac8284613d8d565b915081905092915050565b6000614ac38285613e8d565b9150614acf8284613e8d565b91508190509392505050565b6000602082019050614af06000830184613c32565b92915050565b6000608082019050614b0b6000830187613c23565b614b186020830186613c32565b614b256040830185614a7a565b8181036060830152614b378184613d23565b905095945050505050565b6000606082019050614b576000830186613c14565b614b646020830185614a7a565b8181036040830152614b768184613e54565b9050949350505050565b60006020820190508181036000830152614b9a8184613c41565b905092915050565b60006020820190508181036000830152614bbc8184613cb6565b905092915050565b6000602082019050614bd96000830184613d14565b92915050565b60006020820190508181036000830152614bf98184613e54565b905092915050565b60006020820190508181036000830152614c1b8184613ebe565b905092915050565b60006020820190508181036000830152614c3c81613f4d565b9050919050565b60006020820190508181036000830152614c5c81613fb3565b9050919050565b60006020820190508181036000830152614c7c81613ff3565b9050919050565b60006020820190508181036000830152614c9c81614059565b9050919050565b60006020820190508181036000830152614cbc816140bf565b9050919050565b60006020820190508181036000830152614cdc816140ff565b9050919050565b60006020820190508181036000830152614cfc8161413f565b9050919050565b60006020820190508181036000830152614d1c816141a5565b9050919050565b60006020820190508181036000830152614d3c816141e5565b9050919050565b60006020820190508181036000830152614d5c81614225565b9050919050565b60006020820190508181036000830152614d7c81614265565b9050919050565b60006020820190508181036000830152614d9c816142cb565b9050919050565b60006020820190508181036000830152614dbc81614331565b9050919050565b60006020820190508181036000830152614ddc81614397565b9050919050565b60006020820190508181036000830152614dfc816143fd565b9050919050565b60006020820190508181036000830152614e1c81614463565b9050919050565b60006020820190508181036000830152614e3c816144c9565b9050919050565b60006020820190508181036000830152614e5c8161452f565b9050919050565b60006020820190508181036000830152614e7c81614595565b9050919050565b60006020820190508181036000830152614e9c816145d5565b9050919050565b60006020820190508181036000830152614ebc81614661565b9050919050565b60006020820190508181036000830152614edc816146c7565b9050919050565b60006020820190508181036000830152614efc8161472d565b9050919050565b60006020820190508181036000830152614f1c8161476d565b9050919050565b60006020820190508181036000830152614f3c816147ad565b9050919050565b60006020820190508181036000830152614f5c81614813565b9050919050565b60006020820190508181036000830152614f7c81614879565b9050919050565b60006020820190508181036000830152614f9c816148df565b9050919050565b60006020820190508181036000830152614fbc8161491f565b9050919050565b60006020820190508181036000830152614fdc81614985565b9050919050565b60006020820190508181036000830152614ffc816149c5565b9050919050565b6000602082019050818103600083015261501c81614a2b565b9050919050565b60006020820190506150386000830184614a7a565b92915050565b6000604051905081810181811067ffffffffffffffff82111715615065576150646152d2565b5b8060405250919050565b600067ffffffffffffffff82111561508a576150896152d2565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156150ba576150b96152d2565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006151d582615230565b9050919050565b60006151e782615230565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006152658261526c565b9050919050565b60006152778261527e565b9050919050565b600061528982615230565b9050919050565b82818337600083830152505050565b60005b838110156152bd5780820151818401526020810190506152a2565b838111156152cc576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b6152ee816151ca565b81146152f957600080fd5b50565b615305816151ee565b811461531057600080fd5b50565b61531c816151fa565b811461532757600080fd5b50565b61533381615204565b811461533e57600080fd5b50565b61534a81615250565b811461535557600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220f0acc938c9cb733f3058cf480d673a57cf0a6d55c559310e1643ba49431056b264736f6c63430007060033

Deployed Bytecode Sourcemap

66893:5159:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10235:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51520:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54306:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53836:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67239:57;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71135:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68401:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53314:211;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67317:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69944:746;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55196:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53076:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68647:89;;;;;;;;;;;;;:::i;:::-;;67831:131;;;;;;;;;;;;;:::i;:::-;;55572:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53602:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68538:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67371:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51276:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52895:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50993:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66231:148;;;;;;;;;;;;;:::i;:::-;;67589:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68754:540;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65580:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51689:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67086:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54599:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71484:559;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69752:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66978:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55794:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70703:420;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69588:125;;;;;;;;;;;;;:::i;:::-;;67468:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51864:792;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69345:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54965:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67974:417;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67423:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66534:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10235:150;10320:4;10344:20;:33;10365:11;10344:33;;;;;;;;;;;;;;;;;;;;;;;;;;;10337:40;;10235:150;;;:::o;51520:100::-;51574:13;51607:5;51600:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51520:100;:::o;54306:221::-;54382:7;54410:16;54418:7;54410;:16::i;:::-;54402:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54495:15;:24;54511:7;54495:24;;;;;;;;;;;;;;;;;;;;;54488:31;;54306:221;;;:::o;53836:404::-;53917:13;53933:23;53948:7;53933:14;:23::i;:::-;53917:39;;53981:5;53975:11;;:2;:11;;;;53967:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;54061:5;54045:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;54070:44;54094:5;54101:12;:10;:12::i;:::-;54070:23;:44::i;:::-;54045:69;54037:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;54211:21;54220:2;54224:7;54211:8;:21::i;:::-;53836:404;;;:::o;67239:57::-;67279:17;67239:57;:::o;71135:205::-;71196:13;71242;:11;:13::i;:::-;71231:8;:24;71222:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;71310:12;:22;71323:8;71310:22;;;;;;;;;;;71303:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71135:205;;;:::o;68401:129::-;65811:12;:10;:12::i;:::-;65800:23;;:7;:5;:7::i;:::-;:23;;;65792:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68508:14:::1;68486:19;:36;;;;;;;;;;;;:::i;:::-;;68401:129:::0;:::o;53314:211::-;53375:7;53496:21;:12;:19;:21::i;:::-;53489:28;;53314:211;:::o;67317:45::-;67360:2;67317:45;:::o;69944:746::-;70020:12;;;;;;;;;;;70012:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;70108:1;70091:14;:18;:59;;;;;67360:2;70113:14;:37;;70091:59;70083:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;67410:4;70255:33;70273:14;70255:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:49;;70247:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;70378:33;70396:14;67279:17;70378;;:33;;;;:::i;:::-;70365:9;:46;;70357:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;70472:6;70468:213;70488:14;70484:1;:18;70468:213;;;70524:14;70541:13;:11;:13::i;:::-;70524:30;;67410:4;70573:13;:11;:13::i;:::-;:28;70569:101;;;70622:32;70632:10;70644:9;70622;:32::i;:::-;70569:101;70468:213;70504:3;;;;;;;70468:213;;;;69944:746;:::o;55196:305::-;55357:41;55376:12;:10;:12::i;:::-;55390:7;55357:18;:41::i;:::-;55349:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;55465:28;55475:4;55481:2;55485:7;55465:9;:28::i;:::-;55196:305;;;:::o;53076:162::-;53173:7;53200:30;53224:5;53200:13;:20;53214:5;53200:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;53193:37;;53076:162;;;;:::o;68647:89::-;65811:12;:10;:12::i;:::-;65800:23;;:7;:5;:7::i;:::-;:23;;;65792:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68716:12:::1;;;;;;;;;;;68715:13;68700:12;;:28;;;;;;;;;;;;;;;;;;68647:89::o:0;67831:131::-;65811:12;:10;:12::i;:::-;65800:23;;:7;:5;:7::i;:::-;:23;;;65792:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67879:12:::1;67894:21;67879:36;;67926:10;:19;;:28;67946:7;67926:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;65871:1;67831:131::o:0;55572:151::-;55676:39;55693:4;55699:2;55703:7;55676:39;;;;;;;;;;;;:16;:39::i;:::-;55572:151;;;:::o;53602:172::-;53677:7;53698:15;53719:22;53735:5;53719:12;:15;;:22;;;;:::i;:::-;53697:44;;;53759:7;53752:14;;;53602:172;;;:::o;68538:99::-;65811:12;:10;:12::i;:::-;65800:23;;:7;:5;:7::i;:::-;:23;;;65792:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68609:20:::1;68621:7;68609:11;:20::i;:::-;68538:99:::0;:::o;67371:43::-;67410:4;67371:43;:::o;51276:177::-;51348:7;51375:70;51392:7;51375:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;51368:77;;51276:177;;;:::o;52895:97::-;52943:13;52976:8;52969:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52895:97;:::o;50993:221::-;51065:7;51110:1;51093:19;;:5;:19;;;;51085:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;51177:29;:13;:20;51191:5;51177:20;;;;;;;;;;;;;;;:27;:29::i;:::-;51170:36;;50993:221;;;:::o;66231:148::-;65811:12;:10;:12::i;:::-;65800:23;;:7;:5;:7::i;:::-;:23;;;65792:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66338:1:::1;66301:40;;66322:6;;;;;;;;;;;66301:40;;;;;;;;;;;;66369:1;66352:6;;:19;;;;;;;;;;;;;;;;;;66231:148::o:0;67589:31::-;;;;:::o;68754:540::-;68815:16;68845:18;68866:17;68876:6;68866:9;:17::i;:::-;68845:38;;68912:1;68898:10;:15;68894:393;;;68989:1;68975:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68968:23;;;;;68894:393;69024:23;69064:10;69050:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69024:51;;69090:13;69118:130;69142:10;69134:5;:18;69118:130;;;69198:34;69218:6;69226:5;69198:19;:34::i;:::-;69182:6;69189:5;69182:13;;;;;;;;;;;;;:50;;;;;69154:7;;;;;;;69118:130;;;69269:6;69262:13;;;;;68754:540;;;;:::o;65580:87::-;65626:7;65653:6;;;;;;;;;;;65646:13;;65580:87;:::o;51689:104::-;51745:13;51778:7;51771:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51689:104;:::o;67086:31::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54599:295::-;54714:12;:10;:12::i;:::-;54702:24;;:8;:24;;;;54694:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;54814:8;54769:18;:32;54788:12;:10;:12::i;:::-;54769:32;;;;;;;;;;;;;;;:42;54802:8;54769:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;54867:8;54838:48;;54853:12;:10;:12::i;:::-;54838:48;;;54877:8;54838:48;;;;;;:::i;:::-;;;;;;;;54599:295;;:::o;71484:559::-;71551:15;71580:18;71601:17;71611:6;71601:9;:17::i;:::-;71580:38;;71647:1;71633:10;:15;71629:407;;;71723:1;71710:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71703:22;;;;;71629:407;71758:22;71796:10;71783:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71758:49;;71822:13;71850:147;71874:10;71866:5;:18;71850:147;;;71930:12;:50;71944:34;71964:6;71972:5;71944:19;:34::i;:::-;71930:50;;;;;;;;;;;71914:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:6;71921:5;71914:13;;;;;;;;;;;;;:66;;;;71886:7;;;;;;;71850:147;;;72018:6;72011:13;;;;;71484:559;;;;:::o;69752:174::-;65811:12;:10;:12::i;:::-;65800:23;;:7;:5;:7::i;:::-;:23;;;65792:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69852:5:::1;69835:22;;:13;;;;;;;;;;;:22;;;69827:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;69910:8;69895:12;:23;;;;;;;;;;;;:::i;:::-;;69752:174:::0;:::o;66978:38::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55794:285::-;55926:41;55945:12;:10;:12::i;:::-;55959:7;55926:18;:41::i;:::-;55918:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;56032:39;56046:4;56052:2;56056:7;56065:5;56032:13;:39::i;:::-;55794:285;;;;:::o;70703:420::-;70813:10;70792:31;;:17;70800:8;70792:7;:17::i;:::-;:31;;;70784:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;70899:37;70912:12;:22;70925:8;70912:22;;;;;;;;;;;70899:37;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;70875:20;70888:5;70875:20;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:61;;70867:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;71028:5;71003:12;:22;71016:8;71003:22;;;;;;;;;;;:30;;;;;;;;;;;;:::i;:::-;;71059:46;71077:10;71089:8;71099:5;71059:46;;;;;;;;:::i;:::-;;;;;;;;70703:420;;:::o;69588:125::-;65811:12;:10;:12::i;:::-;65800:23;;:7;:5;:7::i;:::-;:23;;;65792:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69656:4:::1;69639:13;;:21;;;;;;;;;;;;;;;;;;69676:29;69692:12;69676:29;;;;;;:::i;:::-;;;;;;;;69588:125::o:0;67468:43::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51864:792::-;51937:13;51971:16;51979:7;51971;:16::i;:::-;51963:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;52052:23;52078:10;:19;52089:7;52078:19;;;;;;;;;;;52052:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52108:18;52129:9;:7;:9::i;:::-;52108:30;;52236:1;52220:4;52214:18;:23;52210:72;;;52261:9;52254:16;;;;;;52210:72;52412:1;52392:9;52386:23;:27;52382:108;;;52461:4;52467:9;52444:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52430:48;;;;;;52382:108;52622:4;52628:18;:7;:16;:18::i;:::-;52605:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52591:57;;;;51864:792;;;;:::o;69345:177::-;69397:13;69437;:11;:13::i;:::-;69431:3;:19;69423:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;69502:12;69495:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69345:177;;;:::o;54965:164::-;55062:4;55086:18;:25;55105:5;55086:25;;;;;;;;;;;;;;;:35;55112:8;55086:35;;;;;;;;;;;;;;;;;;;;;;;;;55079:42;;54965:164;;;;:::o;67974:417::-;65811:12;:10;:12::i;:::-;65800:23;;:7;:5;:7::i;:::-;:23;;;65792:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68072:11:::1;68086:13;:11;:13::i;:::-;68072:27;;68135:1;68118:14;:18;:54;;;;;68158:14;;68140;:32;;68118:54;68110:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;68232:6;68227:95;68248:14;68244:1;:18;68227:95;;;68284:26;68294:3;68308:1;68299:6;:10;68284:9;:26::i;:::-;68264:3;;;;;;;68227:95;;;;68349:34;68368:14;68349;;:18;;:34;;;;:::i;:::-;68332:14;:51;;;;65871:1;67974:417:::0;;:::o;67423:32::-;;;;;;;;;;;;;:::o;66534:244::-;65811:12;:10;:12::i;:::-;65800:23;;:7;:5;:7::i;:::-;:23;;;65792:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66643:1:::1;66623:22;;:8;:22;;;;66615:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;66733:8;66704:38;;66725:6;;;;;;;;;;;66704:38;;;;;;;;;;;;66762:8;66753:6;;:17;;;;;;;;;;;;;;;;;;66534:244:::0;:::o;57546:127::-;57611:4;57635:30;57657:7;57635:12;:21;;:30;;;;:::i;:::-;57628:37;;57546:127;;;:::o;667:106::-;720:15;755:10;748:17;;667:106;:::o;63564:192::-;63666:2;63639:15;:24;63655:7;63639:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;63722:7;63718:2;63684:46;;63693:23;63708:7;63693:14;:23::i;:::-;63684:46;;;;;;;;;;;;63564:192;;:::o;44278:123::-;44347:7;44374:19;44382:3;:10;;44374:7;:19::i;:::-;44367:26;;44278:123;;;:::o;13797:179::-;13855:7;13875:9;13891:1;13887;:5;13875:17;;13916:1;13911;:6;;13903:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;13967:1;13960:8;;;13797:179;;;;:::o;14676:220::-;14734:7;14763:1;14758;:6;14754:20;;;14773:1;14766:8;;;;14754:20;14785:9;14801:1;14797;:5;14785:17;;14830:1;14825;14821;:5;;;;;;:10;14813:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;14887:1;14880:8;;;14676:220;;;;;:::o;58538:110::-;58614:26;58624:2;58628:7;58614:26;;;;;;;;;;;;:9;:26::i;:::-;58538:110;;:::o;57840:355::-;57933:4;57958:16;57966:7;57958;:16::i;:::-;57950:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;58034:13;58050:23;58065:7;58050:14;:23::i;:::-;58034:39;;58103:5;58092:16;;:7;:16;;;:51;;;;58136:7;58112:31;;:20;58124:7;58112:11;:20::i;:::-;:31;;;58092:51;:94;;;;58147:39;58171:5;58178:7;58147:23;:39::i;:::-;58092:94;58084:103;;;57840:355;;;;:::o;60976:599::-;61101:4;61074:31;;:23;61089:7;61074:14;:23::i;:::-;:31;;;61066:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;61202:1;61188:16;;:2;:16;;;;61180:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;61258:39;61279:4;61285:2;61289:7;61258:20;:39::i;:::-;61362:29;61379:1;61383:7;61362:8;:29::i;:::-;61404:35;61431:7;61404:13;:19;61418:4;61404:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;61450:30;61472:7;61450:13;:17;61464:2;61450:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;61493:29;61510:7;61519:2;61493:12;:16;;:29;;;;;:::i;:::-;;61559:7;61555:2;61540:27;;61549:4;61540:27;;;;;;;;;;;;60976:599;;;:::o;36069:137::-;36140:7;36175:22;36179:3;:10;;36191:5;36175:3;:22::i;:::-;36167:31;;36160:38;;36069:137;;;;:::o;44740:236::-;44820:7;44829;44850:11;44863:13;44880:22;44884:3;:10;;44896:5;44880:3;:22::i;:::-;44849:53;;;;44929:3;44921:12;;44959:5;44951:14;;44913:55;;;;;;44740:236;;;;;:::o;62176:100::-;62260:8;62249;:19;;;;;;;;;;;;:::i;:::-;;62176:100;:::o;46026:213::-;46133:7;46184:44;46189:3;:10;;46209:3;46201:12;;46215;46184:4;:44::i;:::-;46176:53;;46153:78;;46026:213;;;;;:::o;35611:114::-;35671:7;35698:19;35706:3;:10;;35698:7;:19::i;:::-;35691:26;;35611:114;;;:::o;56961:272::-;57075:28;57085:4;57091:2;57095:7;57075:9;:28::i;:::-;57122:48;57145:4;57151:2;57155:7;57164:5;57122:22;:48::i;:::-;57114:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;56961:272;;;;:::o;46490:746::-;46546:13;46776:1;46767:5;:10;46763:53;;;46794:10;;;;;;;;;;;;;;;;;;;;;46763:53;46826:12;46841:5;46826:20;;46857:14;46882:78;46897:1;46889:4;:9;46882:78;;46915:8;;;;;;;46946:2;46938:10;;;;;;;;;46882:78;;;46970:19;47002:6;46992:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46970:39;;47020:13;47045:1;47036:6;:10;47020:26;;47064:5;47057:12;;47080:117;47095:1;47087:4;:9;47080:117;;47156:2;47149:4;:9;;;;;;47144:2;:14;47131:29;;47113:6;47120:7;;;;;;;47113:15;;;;;;;;;;;:47;;;;;;;;;;;47183:2;47175:10;;;;;;;;;47080:117;;;47221:6;47207:21;;;;;;46490:746;;;;:::o;14259:158::-;14317:7;14350:1;14345;:6;;14337:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;14408:1;14404;:5;14397:12;;14259:158;;;;:::o;44039:151::-;44123:4;44147:35;44157:3;:10;;44177:3;44169:12;;44147:9;:35::i;:::-;44140:42;;44039:151;;;;:::o;40857:110::-;40913:7;40940:3;:12;;:19;;;;40933:26;;40857:110;;;:::o;58875:250::-;58971:18;58977:2;58981:7;58971:5;:18::i;:::-;59008:54;59039:1;59043:2;59047:7;59056:5;59008:22;:54::i;:::-;59000:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;58875:250;;;:::o;64369:93::-;;;;:::o;35156:137::-;35226:4;35250:35;35258:3;:10;;35278:5;35270:14;;35250:7;:35::i;:::-;35243:42;;35156:137;;;;:::o;34849:131::-;34916:4;34940:32;34945:3;:10;;34965:5;34957:14;;34940:4;:32::i;:::-;34933:39;;34849:131;;;;:::o;43462:185::-;43551:4;43575:64;43580:3;:10;;43600:3;43592:12;;43630:5;43614:23;;43606:32;;43575:4;:64::i;:::-;43568:71;;43462:185;;;;;:::o;31107:204::-;31174:7;31223:5;31202:3;:11;;:18;;;;:26;31194:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31285:3;:11;;31297:5;31285:18;;;;;;;;;;;;;;;;31278:25;;31107:204;;;;:::o;41322:279::-;41389:7;41398;41448:5;41426:3;:12;;:19;;;;:27;41418:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;41505:22;41530:3;:12;;41543:5;41530:19;;;;;;;;;;;;;;;;;;41505:44;;41568:5;:10;;;41580:5;:12;;;41560:33;;;;;41322:279;;;;;:::o;42819:319::-;42913:7;42933:16;42952:3;:12;;:17;42965:3;42952:17;;;;;;;;;;;;42933:36;;43000:1;42988:8;:13;;43003:12;42980:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;43070:3;:12;;43094:1;43083:8;:12;43070:26;;;;;;;;;;;;;;;;;;:33;;;43063:40;;;42819:319;;;;;:::o;30654:109::-;30710:7;30737:3;:11;;:18;;;;30730:25;;30654:109;;;:::o;62841:604::-;62962:4;62989:15;:2;:13;;;:15::i;:::-;62984:60;;63028:4;63021:11;;;;62984:60;63054:23;63080:252;63133:45;;;63193:12;:10;:12::i;:::-;63220:4;63239:7;63261:5;63096:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63080:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;63054:278;;63343:13;63370:10;63359:32;;;;;;;;;;;;:::i;:::-;63343:48;;47990:10;63420:16;;63410:26;;;:6;:26;;;;63402:35;;;;62841:604;;;;;;;:::o;40637:125::-;40708:4;40753:1;40732:3;:12;;:17;40745:3;40732:17;;;;;;;;;;;;:22;;40725:29;;40637:125;;;;:::o;59461:404::-;59555:1;59541:16;;:2;:16;;;;59533:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;59614:16;59622:7;59614;:16::i;:::-;59613:17;59605:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;59676:45;59705:1;59709:2;59713:7;59676:20;:45::i;:::-;59734:30;59756:7;59734:13;:17;59748:2;59734:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;59777:29;59794:7;59803:2;59777:12;:16;;:29;;;;;:::i;:::-;;59849:7;59845:2;59824:33;;59841:1;59824:33;;;;;;;;;;;;59461:404;;:::o;28809:1544::-;28875:4;28993:18;29014:3;:12;;:19;29027:5;29014:19;;;;;;;;;;;;28993:40;;29064:1;29050:10;:15;29046:1300;;29412:21;29449:1;29436:10;:14;29412:38;;29465:17;29506:1;29485:3;:11;;:18;;;;:22;29465:42;;29752:17;29772:3;:11;;29784:9;29772:22;;;;;;;;;;;;;;;;29752:42;;29918:9;29889:3;:11;;29901:13;29889:26;;;;;;;;;;;;;;;:38;;;;30037:1;30021:13;:17;29995:3;:12;;:23;30008:9;29995:23;;;;;;;;;;;:43;;;;30147:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;30242:3;:12;;:19;30255:5;30242:19;;;;;;;;;;;30235:26;;;30285:4;30278:11;;;;;;;;29046:1300;30329:5;30322:12;;;28809:1544;;;;;:::o;28219:414::-;28282:4;28304:21;28314:3;28319:5;28304:9;:21::i;:::-;28299:327;;28342:3;:11;;28359:5;28342:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28525:3;:11;;:18;;;;28503:3;:12;;:19;28516:5;28503:19;;;;;;;;;;;:40;;;;28565:4;28558:11;;;;28299:327;28609:5;28602:12;;28219:414;;;;;:::o;38137:692::-;38213:4;38329:16;38348:3;:12;;:17;38361:3;38348:17;;;;;;;;;;;;38329:36;;38394:1;38382:8;:13;38378:444;;;38449:3;:12;;38467:38;;;;;;;;38484:3;38467:38;;;;38497:5;38467:38;;;38449:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38664:3;:12;;:19;;;;38644:3;:12;;:17;38657:3;38644:17;;;;;;;;;;;:39;;;;38705:4;38698:11;;;;;38378:444;38778:5;38742:3;:12;;38766:1;38755:8;:12;38742:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;38805:5;38798:12;;;38137:692;;;;;;:::o;19238:422::-;19298:4;19506:12;19617:7;19605:20;19597:28;;19651:1;19644:4;:8;19637:15;;;19238:422;;;:::o;22156:195::-;22259:12;22291:52;22313:6;22321:4;22327:1;22330:12;22291:21;:52::i;:::-;22284:59;;22156:195;;;;;:::o;30439:129::-;30512:4;30559:1;30536:3;:12;;:19;30549:5;30536:19;;;;;;;;;;;;:24;;30529:31;;30439:129;;;;:::o;23208:530::-;23335:12;23393:5;23368:21;:30;;23360:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;23460:18;23471:6;23460:10;:18::i;:::-;23452:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;23586:12;23600:23;23627:6;:11;;23647:5;23655:4;23627:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23585:75;;;;23678:52;23696:7;23705:10;23717:12;23678:17;:52::i;:::-;23671:59;;;;23208:530;;;;;;:::o;25748:742::-;25863:12;25892:7;25888:595;;;25923:10;25916:17;;;;25888:595;26057:1;26037:10;:17;:21;26033:439;;;26300:10;26294:17;26361:15;26348:10;26344:2;26340:19;26333:44;26248:148;26443:12;26436:20;;;;;;;;;;;:::i;:::-;;;;;;;;25748:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:143::-;;1077:6;1071:13;1062:22;;1093:33;1120:5;1093:33;:::i;:::-;1052:80;;;;:::o;1138:137::-;;1221:6;1208:20;1199:29;;1237:32;1263:5;1237:32;:::i;:::-;1189:86;;;;:::o;1281:141::-;;1368:6;1362:13;1353:22;;1384:32;1410:5;1384:32;:::i;:::-;1343:79;;;;:::o;1441:271::-;;1545:3;1538:4;1530:6;1526:17;1522:27;1512:2;;1563:1;1560;1553:12;1512:2;1603:6;1590:20;1628:78;1702:3;1694:6;1687:4;1679:6;1675:17;1628:78;:::i;:::-;1619:87;;1502:210;;;;;:::o;1732:273::-;;1837:3;1830:4;1822:6;1818:17;1814:27;1804:2;;1855:1;1852;1845:12;1804:2;1895:6;1882:20;1920:79;1995:3;1987:6;1980:4;1972:6;1968:17;1920:79;:::i;:::-;1911:88;;1794:211;;;;;:::o;2011:139::-;;2095:6;2082:20;2073:29;;2111:33;2138:5;2111:33;:::i;:::-;2063:87;;;;:::o;2156:262::-;;2264:2;2252:9;2243:7;2239:23;2235:32;2232:2;;;2280:1;2277;2270:12;2232:2;2323:1;2348:53;2393:7;2384:6;2373:9;2369:22;2348:53;:::i;:::-;2338:63;;2294:117;2222:196;;;;:::o;2424:407::-;;;2549:2;2537:9;2528:7;2524:23;2520:32;2517:2;;;2565:1;2562;2555:12;2517:2;2608:1;2633:53;2678:7;2669:6;2658:9;2654:22;2633:53;:::i;:::-;2623:63;;2579:117;2735:2;2761:53;2806:7;2797:6;2786:9;2782:22;2761:53;:::i;:::-;2751:63;;2706:118;2507:324;;;;;:::o;2837:552::-;;;;2979:2;2967:9;2958:7;2954:23;2950:32;2947:2;;;2995:1;2992;2985:12;2947:2;3038:1;3063:53;3108:7;3099:6;3088:9;3084:22;3063:53;:::i;:::-;3053:63;;3009:117;3165:2;3191:53;3236:7;3227:6;3216:9;3212:22;3191:53;:::i;:::-;3181:63;;3136:118;3293:2;3319:53;3364:7;3355:6;3344:9;3340:22;3319:53;:::i;:::-;3309:63;;3264:118;2937:452;;;;;:::o;3395:809::-;;;;;3563:3;3551:9;3542:7;3538:23;3534:33;3531:2;;;3580:1;3577;3570:12;3531:2;3623:1;3648:53;3693:7;3684:6;3673:9;3669:22;3648:53;:::i;:::-;3638:63;;3594:117;3750:2;3776:53;3821:7;3812:6;3801:9;3797:22;3776:53;:::i;:::-;3766:63;;3721:118;3878:2;3904:53;3949:7;3940:6;3929:9;3925:22;3904:53;:::i;:::-;3894:63;;3849:118;4034:2;4023:9;4019:18;4006:32;4065:18;4057:6;4054:30;4051:2;;;4097:1;4094;4087:12;4051:2;4125:62;4179:7;4170:6;4159:9;4155:22;4125:62;:::i;:::-;4115:72;;3977:220;3521:683;;;;;;;:::o;4210:401::-;;;4332:2;4320:9;4311:7;4307:23;4303:32;4300:2;;;4348:1;4345;4338:12;4300:2;4391:1;4416:53;4461:7;4452:6;4441:9;4437:22;4416:53;:::i;:::-;4406:63;;4362:117;4518:2;4544:50;4586:7;4577:6;4566:9;4562:22;4544:50;:::i;:::-;4534:60;;4489:115;4290:321;;;;;:::o;4617:407::-;;;4742:2;4730:9;4721:7;4717:23;4713:32;4710:2;;;4758:1;4755;4748:12;4710:2;4801:1;4826:53;4871:7;4862:6;4851:9;4847:22;4826:53;:::i;:::-;4816:63;;4772:117;4928:2;4954:53;4999:7;4990:6;4979:9;4975:22;4954:53;:::i;:::-;4944:63;;4899:118;4700:324;;;;;:::o;5030:284::-;;5149:2;5137:9;5128:7;5124:23;5120:32;5117:2;;;5165:1;5162;5155:12;5117:2;5208:1;5233:64;5289:7;5280:6;5269:9;5265:22;5233:64;:::i;:::-;5223:74;;5179:128;5107:207;;;;:::o;5320:260::-;;5427:2;5415:9;5406:7;5402:23;5398:32;5395:2;;;5443:1;5440;5433:12;5395:2;5486:1;5511:52;5555:7;5546:6;5535:9;5531:22;5511:52;:::i;:::-;5501:62;;5457:116;5385:195;;;;:::o;5586:282::-;;5704:2;5692:9;5683:7;5679:23;5675:32;5672:2;;;5720:1;5717;5710:12;5672:2;5763:1;5788:63;5843:7;5834:6;5823:9;5819:22;5788:63;:::i;:::-;5778:73;;5734:127;5662:206;;;;:::o;5874:375::-;;5992:2;5980:9;5971:7;5967:23;5963:32;5960:2;;;6008:1;6005;5998:12;5960:2;6079:1;6068:9;6064:17;6051:31;6109:18;6101:6;6098:30;6095:2;;;6141:1;6138;6131:12;6095:2;6169:63;6224:7;6215:6;6204:9;6200:22;6169:63;:::i;:::-;6159:73;;6022:220;5950:299;;;;:::o;6255:262::-;;6363:2;6351:9;6342:7;6338:23;6334:32;6331:2;;;6379:1;6376;6369:12;6331:2;6422:1;6447:53;6492:7;6483:6;6472:9;6468:22;6447:53;:::i;:::-;6437:63;;6393:117;6321:196;;;;:::o;6523:520::-;;;6658:2;6646:9;6637:7;6633:23;6629:32;6626:2;;;6674:1;6671;6664:12;6626:2;6717:1;6742:53;6787:7;6778:6;6767:9;6763:22;6742:53;:::i;:::-;6732:63;;6688:117;6872:2;6861:9;6857:18;6844:32;6903:18;6895:6;6892:30;6889:2;;;6935:1;6932;6925:12;6889:2;6963:63;7018:7;7009:6;6998:9;6994:22;6963:63;:::i;:::-;6953:73;;6815:221;6616:427;;;;;:::o;7049:196::-;;7173:66;7235:3;7227:6;7173:66;:::i;:::-;7159:80;;7149:96;;;;:::o;7251:179::-;;7341:46;7383:3;7375:6;7341:46;:::i;:::-;7419:4;7414:3;7410:14;7396:28;;7331:99;;;;:::o;7436:147::-;7531:45;7570:5;7531:45;:::i;:::-;7526:3;7519:58;7509:74;;:::o;7589:142::-;7692:32;7718:5;7692:32;:::i;:::-;7687:3;7680:45;7670:61;;:::o;7737:118::-;7824:24;7842:5;7824:24;:::i;:::-;7819:3;7812:37;7802:53;;:::o;7889:991::-;;8057:64;8115:5;8057:64;:::i;:::-;8137:96;8226:6;8221:3;8137:96;:::i;:::-;8130:103;;8259:3;8304:4;8296:6;8292:17;8287:3;8283:27;8334:66;8394:5;8334:66;:::i;:::-;8423:7;8454:1;8439:396;8464:6;8461:1;8458:13;8439:396;;;8535:9;8529:4;8525:20;8520:3;8513:33;8586:6;8580:13;8614:84;8693:4;8678:13;8614:84;:::i;:::-;8606:92;;8721:70;8784:6;8721:70;:::i;:::-;8711:80;;8820:4;8815:3;8811:14;8804:21;;8499:336;8486:1;8483;8479:9;8474:14;;8439:396;;;8443:14;8851:4;8844:11;;8871:3;8864:10;;8033:847;;;;;;;;;:::o;8916:732::-;;9064:54;9112:5;9064:54;:::i;:::-;9134:86;9213:6;9208:3;9134:86;:::i;:::-;9127:93;;9244:56;9294:5;9244:56;:::i;:::-;9323:7;9354:1;9339:284;9364:6;9361:1;9358:13;9339:284;;;9440:6;9434:13;9467:63;9526:3;9511:13;9467:63;:::i;:::-;9460:70;;9553:60;9606:6;9553:60;:::i;:::-;9543:70;;9399:224;9386:1;9383;9379:9;9374:14;;9339:284;;;9343:14;9639:3;9632:10;;9040:608;;;;;;;:::o;9654:109::-;9735:21;9750:5;9735:21;:::i;:::-;9730:3;9723:34;9713:50;;:::o;9769:360::-;;9883:38;9915:5;9883:38;:::i;:::-;9937:70;10000:6;9995:3;9937:70;:::i;:::-;9930:77;;10016:52;10061:6;10056:3;10049:4;10042:5;10038:16;10016:52;:::i;:::-;10093:29;10115:6;10093:29;:::i;:::-;10088:3;10084:39;10077:46;;9859:270;;;;;:::o;10135:373::-;;10267:38;10299:5;10267:38;:::i;:::-;10321:88;10402:6;10397:3;10321:88;:::i;:::-;10314:95;;10418:52;10463:6;10458:3;10451:4;10444:5;10440:16;10418:52;:::i;:::-;10495:6;10490:3;10486:16;10479:23;;10243:265;;;;;:::o;10536:1001::-;;10678:5;10672:12;10715:1;10704:9;10700:17;10731:1;10726:300;;;;11040:1;11035:496;;;;10693:838;;10726:300;10816:4;10812:1;10801:9;10797:17;10793:28;10841:88;10922:6;10917:3;10841:88;:::i;:::-;10834:95;;10973:4;10969:9;10958;10954:25;10949:3;10942:38;11009:6;11004:3;11000:16;10993:23;;10733:293;10726:300;;11035:496;11116:1;11105:9;11101:17;11138:88;11219:6;11214:3;11138:88;:::i;:::-;11131:95;;11254:41;11289:5;11254:41;:::i;:::-;11317:1;11331:154;11345:6;11342:1;11339:13;11331:154;;;11419:7;11413:14;11409:1;11404:3;11400:11;11393:35;11469:1;11460:7;11456:15;11445:26;;11367:4;11364:1;11360:12;11355:17;;11331:154;;;11514:6;11509:3;11505:16;11498:23;;11042:489;;;10693:838;;10645:892;;;;;:::o;11543:344::-;;11649:39;11682:5;11649:39;:::i;:::-;11704:61;11758:6;11753:3;11704:61;:::i;:::-;11697:68;;11774:52;11819:6;11814:3;11807:4;11800:5;11796:16;11774:52;:::i;:::-;11851:29;11873:6;11851:29;:::i;:::-;11846:3;11842:39;11835:46;;11625:262;;;;;:::o;11893:364::-;;12009:39;12042:5;12009:39;:::i;:::-;12064:71;12128:6;12123:3;12064:71;:::i;:::-;12057:78;;12144:52;12189:6;12184:3;12177:4;12170:5;12166:16;12144:52;:::i;:::-;12221:29;12243:6;12221:29;:::i;:::-;12216:3;12212:39;12205:46;;11985:272;;;;;:::o;12263:377::-;;12397:39;12430:5;12397:39;:::i;:::-;12452:89;12534:6;12529:3;12452:89;:::i;:::-;12445:96;;12550:52;12595:6;12590:3;12583:4;12576:5;12572:16;12550:52;:::i;:::-;12627:6;12622:3;12618:16;12611:23;;12373:267;;;;;:::o;12670:937::-;;12792:5;12786:12;12829:1;12818:9;12814:17;12845:1;12840:281;;;;13135:1;13130:471;;;;12807:794;;12840:281;12930:4;12926:1;12915:9;12911:17;12907:28;12955:71;13019:6;13014:3;12955:71;:::i;:::-;12948:78;;13070:4;13066:9;13055;13051:25;13046:3;13039:38;13106:4;13101:3;13097:14;13090:21;;12847:274;12840:281;;13130:471;13211:1;13200:9;13196:17;13233:71;13297:6;13292:3;13233:71;:::i;:::-;13226:78;;13332:38;13364:5;13332:38;:::i;:::-;13392:1;13406:154;13420:6;13417:1;13414:13;13406:154;;;13494:7;13488:14;13484:1;13479:3;13475:11;13468:35;13544:1;13535:7;13531:15;13520:26;;13442:4;13439:1;13435:12;13430:17;;13406:154;;;13589:1;13584:3;13580:11;13573:18;;13137:464;;;12807:794;;12759:848;;;;;:::o;13613:366::-;;13776:67;13840:2;13835:3;13776:67;:::i;:::-;13769:74;;13873:34;13869:1;13864:3;13860:11;13853:55;13939:4;13934:2;13929:3;13925:12;13918:26;13970:2;13965:3;13961:12;13954:19;;13759:220;;;:::o;13985:327::-;;14148:67;14212:2;14207:3;14148:67;:::i;:::-;14141:74;;14245:31;14241:1;14236:3;14232:11;14225:52;14303:2;14298:3;14294:12;14287:19;;14131:181;;;:::o;14318:382::-;;14481:67;14545:2;14540:3;14481:67;:::i;:::-;14474:74;;14578:34;14574:1;14569:3;14565:11;14558:55;14644:20;14639:2;14634:3;14630:12;14623:42;14691:2;14686:3;14682:12;14675:19;;14464:236;;;:::o;14706:370::-;;14869:67;14933:2;14928:3;14869:67;:::i;:::-;14862:74;;14966:34;14962:1;14957:3;14953:11;14946:55;15032:8;15027:2;15022:3;15018:12;15011:30;15067:2;15062:3;15058:12;15051:19;;14852:224;;;:::o;15082:326::-;;15245:67;15309:2;15304:3;15245:67;:::i;:::-;15238:74;;15342:30;15338:1;15333:3;15329:11;15322:51;15399:2;15394:3;15390:12;15383:19;;15228:180;;;:::o;15414:325::-;;15577:67;15641:2;15636:3;15577:67;:::i;:::-;15570:74;;15674:29;15670:1;15665:3;15661:11;15654:50;15730:2;15725:3;15721:12;15714:19;;15560:179;;;:::o;15745:368::-;;15908:67;15972:2;15967:3;15908:67;:::i;:::-;15901:74;;16005:34;16001:1;15996:3;15992:11;15985:55;16071:6;16066:2;16061:3;16057:12;16050:28;16104:2;16099:3;16095:12;16088:19;;15891:222;;;:::o;16119:323::-;;16282:67;16346:2;16341:3;16282:67;:::i;:::-;16275:74;;16379:27;16375:1;16370:3;16366:11;16359:48;16433:2;16428:3;16424:12;16417:19;;16265:177;;;:::o;16448:329::-;;16611:67;16675:2;16670:3;16611:67;:::i;:::-;16604:74;;16708:33;16704:1;16699:3;16695:11;16688:54;16768:2;16763:3;16759:12;16752:19;;16594:183;;;:::o;16783:328::-;;16946:67;17010:2;17005:3;16946:67;:::i;:::-;16939:74;;17043:32;17039:1;17034:3;17030:11;17023:53;17102:2;17097:3;17093:12;17086:19;;16929:182;;;:::o;17117:367::-;;17280:67;17344:2;17339:3;17280:67;:::i;:::-;17273:74;;17377:34;17373:1;17368:3;17364:11;17357:55;17443:5;17438:2;17433:3;17429:12;17422:27;17475:2;17470:3;17466:12;17459:19;;17263:221;;;:::o;17490:370::-;;17653:67;17717:2;17712:3;17653:67;:::i;:::-;17646:74;;17750:34;17746:1;17741:3;17737:11;17730:55;17816:8;17811:2;17806:3;17802:12;17795:30;17851:2;17846:3;17842:12;17835:19;;17636:224;;;:::o;17866:376::-;;18029:67;18093:2;18088:3;18029:67;:::i;:::-;18022:74;;18126:34;18122:1;18117:3;18113:11;18106:55;18192:14;18187:2;18182:3;18178:12;18171:36;18233:2;18228:3;18224:12;18217:19;;18012:230;;;:::o;18248:388::-;;18411:67;18475:2;18470:3;18411:67;:::i;:::-;18404:74;;18508:34;18504:1;18499:3;18495:11;18488:55;18574:26;18569:2;18564:3;18560:12;18553:48;18627:2;18622:3;18618:12;18611:19;;18394:242;;;:::o;18642:374::-;;18805:67;18869:2;18864:3;18805:67;:::i;:::-;18798:74;;18902:34;18898:1;18893:3;18889:11;18882:55;18968:12;18963:2;18958:3;18954:12;18947:34;19007:2;19002:3;18998:12;18991:19;;18788:228;;;:::o;19022:371::-;;19185:67;19249:2;19244:3;19185:67;:::i;:::-;19178:74;;19282:34;19278:1;19273:3;19269:11;19262:55;19348:9;19343:2;19338:3;19334:12;19327:31;19384:2;19379:3;19375:12;19368:19;;19168:225;;;:::o;19399:383::-;;19562:67;19626:2;19621:3;19562:67;:::i;:::-;19555:74;;19659:34;19655:1;19650:3;19646:11;19639:55;19725:21;19720:2;19715:3;19711:12;19704:43;19773:2;19768:3;19764:12;19757:19;;19545:237;;;:::o;19788:366::-;;19951:67;20015:2;20010:3;19951:67;:::i;:::-;19944:74;;20048:34;20044:1;20039:3;20035:11;20028:55;20114:4;20109:2;20104:3;20100:12;20093:26;20145:2;20140:3;20136:12;20129:19;;19934:220;;;:::o;20160:330::-;;20323:67;20387:2;20382:3;20323:67;:::i;:::-;20316:74;;20420:34;20416:1;20411:3;20407:11;20400:55;20481:2;20476:3;20472:12;20465:19;;20306:184;;;:::o;20496:447::-;;20659:67;20723:2;20718:3;20659:67;:::i;:::-;20652:74;;20756:34;20752:1;20747:3;20743:11;20736:55;20822:34;20817:2;20812:3;20808:12;20801:56;20888:19;20883:2;20878:3;20874:12;20867:41;20934:2;20929:3;20925:12;20918:19;;20642:301;;;:::o;20949:365::-;;21112:67;21176:2;21171:3;21112:67;:::i;:::-;21105:74;;21209:34;21205:1;21200:3;21196:11;21189:55;21275:3;21270:2;21265:3;21261:12;21254:25;21305:2;21300:3;21296:12;21289:19;;21095:219;;;:::o;21320:376::-;;21483:67;21547:2;21542:3;21483:67;:::i;:::-;21476:74;;21580:34;21576:1;21571:3;21567:11;21560:55;21646:14;21641:2;21636:3;21632:12;21625:36;21687:2;21682:3;21678:12;21671:19;;21466:230;;;:::o;21702:330::-;;21865:67;21929:2;21924:3;21865:67;:::i;:::-;21858:74;;21962:34;21958:1;21953:3;21949:11;21942:55;22023:2;22018:3;22014:12;22007:19;;21848:184;;;:::o;22038:329::-;;22201:67;22265:2;22260:3;22201:67;:::i;:::-;22194:74;;22298:33;22294:1;22289:3;22285:11;22278:54;22358:2;22353:3;22349:12;22342:19;;22184:183;;;:::o;22373:373::-;;22536:67;22600:2;22595:3;22536:67;:::i;:::-;22529:74;;22633:34;22629:1;22624:3;22620:11;22613:55;22699:11;22694:2;22689:3;22685:12;22678:33;22737:2;22732:3;22728:12;22721:19;;22519:227;;;:::o;22752:369::-;;22915:67;22979:2;22974:3;22915:67;:::i;:::-;22908:74;;23012:34;23008:1;23003:3;22999:11;22992:55;23078:7;23073:2;23068:3;23064:12;23057:29;23112:2;23107:3;23103:12;23096:19;;22898:223;;;:::o;23127:379::-;;23290:67;23354:2;23349:3;23290:67;:::i;:::-;23283:74;;23387:34;23383:1;23378:3;23374:11;23367:55;23453:17;23448:2;23443:3;23439:12;23432:39;23497:2;23492:3;23488:12;23481:19;;23273:233;;;:::o;23512:326::-;;23675:67;23739:2;23734:3;23675:67;:::i;:::-;23668:74;;23772:30;23768:1;23763:3;23759:11;23752:51;23829:2;23824:3;23820:12;23813:19;;23658:180;;;:::o;23844:365::-;;24007:67;24071:2;24066:3;24007:67;:::i;:::-;24000:74;;24104:34;24100:1;24095:3;24091:11;24084:55;24170:3;24165:2;24160:3;24156:12;24149:25;24200:2;24195:3;24191:12;24184:19;;23990:219;;;:::o;24215:320::-;;24378:67;24442:2;24437:3;24378:67;:::i;:::-;24371:74;;24475:24;24471:1;24466:3;24462:11;24455:45;24526:2;24521:3;24517:12;24510:19;;24361:174;;;:::o;24541:381::-;;24704:67;24768:2;24763:3;24704:67;:::i;:::-;24697:74;;24801:34;24797:1;24792:3;24788:11;24781:55;24867:19;24862:2;24857:3;24853:12;24846:41;24913:2;24908:3;24904:12;24897:19;;24687:235;;;:::o;24928:327::-;;25091:67;25155:2;25150:3;25091:67;:::i;:::-;25084:74;;25188:31;25184:1;25179:3;25175:11;25168:52;25246:2;25241:3;25237:12;25230:19;;25074:181;;;:::o;25261:108::-;25338:24;25356:5;25338:24;:::i;:::-;25333:3;25326:37;25316:53;;:::o;25375:118::-;25462:24;25480:5;25462:24;:::i;:::-;25457:3;25450:37;25440:53;;:::o;25499:271::-;;25651:93;25740:3;25731:6;25651:93;:::i;:::-;25644:100;;25761:3;25754:10;;25633:137;;;;:::o;25776:273::-;;25929:94;26019:3;26010:6;25929:94;:::i;:::-;25922:101;;26040:3;26033:10;;25911:138;;;;:::o;26055:435::-;;26257:95;26348:3;26339:6;26257:95;:::i;:::-;26250:102;;26369:95;26460:3;26451:6;26369:95;:::i;:::-;26362:102;;26481:3;26474:10;;26239:251;;;;;:::o;26496:222::-;;26627:2;26616:9;26612:18;26604:26;;26640:71;26708:1;26697:9;26693:17;26684:6;26640:71;:::i;:::-;26594:124;;;;:::o;26724:672::-;;26973:3;26962:9;26958:19;26950:27;;26987:87;27071:1;27060:9;27056:17;27047:6;26987:87;:::i;:::-;27084:72;27152:2;27141:9;27137:18;27128:6;27084:72;:::i;:::-;27166;27234:2;27223:9;27219:18;27210:6;27166:72;:::i;:::-;27285:9;27279:4;27275:20;27270:2;27259:9;27255:18;27248:48;27313:76;27384:4;27375:6;27313:76;:::i;:::-;27305:84;;26940:456;;;;;;;:::o;27402:549::-;;27617:2;27606:9;27602:18;27594:26;;27630:79;27706:1;27695:9;27691:17;27682:6;27630:79;:::i;:::-;27719:72;27787:2;27776:9;27772:18;27763:6;27719:72;:::i;:::-;27838:9;27832:4;27828:20;27823:2;27812:9;27808:18;27801:48;27866:78;27939:4;27930:6;27866:78;:::i;:::-;27858:86;;27584:367;;;;;;:::o;27957:413::-;;28158:2;28147:9;28143:18;28135:26;;28207:9;28201:4;28197:20;28193:1;28182:9;28178:17;28171:47;28235:128;28358:4;28349:6;28235:128;:::i;:::-;28227:136;;28125:245;;;;:::o;28376:373::-;;28557:2;28546:9;28542:18;28534:26;;28606:9;28600:4;28596:20;28592:1;28581:9;28577:17;28570:47;28634:108;28737:4;28728:6;28634:108;:::i;:::-;28626:116;;28524:225;;;;:::o;28755:210::-;;28880:2;28869:9;28865:18;28857:26;;28893:65;28955:1;28944:9;28940:17;28931:6;28893:65;:::i;:::-;28847:118;;;;:::o;28971:313::-;;29122:2;29111:9;29107:18;29099:26;;29171:9;29165:4;29161:20;29157:1;29146:9;29142:17;29135:47;29199:78;29272:4;29263:6;29199:78;:::i;:::-;29191:86;;29089:195;;;;:::o;29290:307::-;;29438:2;29427:9;29423:18;29415:26;;29487:9;29481:4;29477:20;29473:1;29462:9;29458:17;29451:47;29515:75;29585:4;29576:6;29515:75;:::i;:::-;29507:83;;29405:192;;;;:::o;29603:419::-;;29807:2;29796:9;29792:18;29784:26;;29856:9;29850:4;29846:20;29842:1;29831:9;29827:17;29820:47;29884:131;30010:4;29884:131;:::i;:::-;29876:139;;29774:248;;;:::o;30028:419::-;;30232:2;30221:9;30217:18;30209:26;;30281:9;30275:4;30271:20;30267:1;30256:9;30252:17;30245:47;30309:131;30435:4;30309:131;:::i;:::-;30301:139;;30199:248;;;:::o;30453:419::-;;30657:2;30646:9;30642:18;30634:26;;30706:9;30700:4;30696:20;30692:1;30681:9;30677:17;30670:47;30734:131;30860:4;30734:131;:::i;:::-;30726:139;;30624:248;;;:::o;30878:419::-;;31082:2;31071:9;31067:18;31059:26;;31131:9;31125:4;31121:20;31117:1;31106:9;31102:17;31095:47;31159:131;31285:4;31159:131;:::i;:::-;31151:139;;31049:248;;;:::o;31303:419::-;;31507:2;31496:9;31492:18;31484:26;;31556:9;31550:4;31546:20;31542:1;31531:9;31527:17;31520:47;31584:131;31710:4;31584:131;:::i;:::-;31576:139;;31474:248;;;:::o;31728:419::-;;31932:2;31921:9;31917:18;31909:26;;31981:9;31975:4;31971:20;31967:1;31956:9;31952:17;31945:47;32009:131;32135:4;32009:131;:::i;:::-;32001:139;;31899:248;;;:::o;32153:419::-;;32357:2;32346:9;32342:18;32334:26;;32406:9;32400:4;32396:20;32392:1;32381:9;32377:17;32370:47;32434:131;32560:4;32434:131;:::i;:::-;32426:139;;32324:248;;;:::o;32578:419::-;;32782:2;32771:9;32767:18;32759:26;;32831:9;32825:4;32821:20;32817:1;32806:9;32802:17;32795:47;32859:131;32985:4;32859:131;:::i;:::-;32851:139;;32749:248;;;:::o;33003:419::-;;33207:2;33196:9;33192:18;33184:26;;33256:9;33250:4;33246:20;33242:1;33231:9;33227:17;33220:47;33284:131;33410:4;33284:131;:::i;:::-;33276:139;;33174:248;;;:::o;33428:419::-;;33632:2;33621:9;33617:18;33609:26;;33681:9;33675:4;33671:20;33667:1;33656:9;33652:17;33645:47;33709:131;33835:4;33709:131;:::i;:::-;33701:139;;33599:248;;;:::o;33853:419::-;;34057:2;34046:9;34042:18;34034:26;;34106:9;34100:4;34096:20;34092:1;34081:9;34077:17;34070:47;34134:131;34260:4;34134:131;:::i;:::-;34126:139;;34024:248;;;:::o;34278:419::-;;34482:2;34471:9;34467:18;34459:26;;34531:9;34525:4;34521:20;34517:1;34506:9;34502:17;34495:47;34559:131;34685:4;34559:131;:::i;:::-;34551:139;;34449:248;;;:::o;34703:419::-;;34907:2;34896:9;34892:18;34884:26;;34956:9;34950:4;34946:20;34942:1;34931:9;34927:17;34920:47;34984:131;35110:4;34984:131;:::i;:::-;34976:139;;34874:248;;;:::o;35128:419::-;;35332:2;35321:9;35317:18;35309:26;;35381:9;35375:4;35371:20;35367:1;35356:9;35352:17;35345:47;35409:131;35535:4;35409:131;:::i;:::-;35401:139;;35299:248;;;:::o;35553:419::-;;35757:2;35746:9;35742:18;35734:26;;35806:9;35800:4;35796:20;35792:1;35781:9;35777:17;35770:47;35834:131;35960:4;35834:131;:::i;:::-;35826:139;;35724:248;;;:::o;35978:419::-;;36182:2;36171:9;36167:18;36159:26;;36231:9;36225:4;36221:20;36217:1;36206:9;36202:17;36195:47;36259:131;36385:4;36259:131;:::i;:::-;36251:139;;36149:248;;;:::o;36403:419::-;;36607:2;36596:9;36592:18;36584:26;;36656:9;36650:4;36646:20;36642:1;36631:9;36627:17;36620:47;36684:131;36810:4;36684:131;:::i;:::-;36676:139;;36574:248;;;:::o;36828:419::-;;37032:2;37021:9;37017:18;37009:26;;37081:9;37075:4;37071:20;37067:1;37056:9;37052:17;37045:47;37109:131;37235:4;37109:131;:::i;:::-;37101:139;;36999:248;;;:::o;37253:419::-;;37457:2;37446:9;37442:18;37434:26;;37506:9;37500:4;37496:20;37492:1;37481:9;37477:17;37470:47;37534:131;37660:4;37534:131;:::i;:::-;37526:139;;37424:248;;;:::o;37678:419::-;;37882:2;37871:9;37867:18;37859:26;;37931:9;37925:4;37921:20;37917:1;37906:9;37902:17;37895:47;37959:131;38085:4;37959:131;:::i;:::-;37951:139;;37849:248;;;:::o;38103:419::-;;38307:2;38296:9;38292:18;38284:26;;38356:9;38350:4;38346:20;38342:1;38331:9;38327:17;38320:47;38384:131;38510:4;38384:131;:::i;:::-;38376:139;;38274:248;;;:::o;38528:419::-;;38732:2;38721:9;38717:18;38709:26;;38781:9;38775:4;38771:20;38767:1;38756:9;38752:17;38745:47;38809:131;38935:4;38809:131;:::i;:::-;38801:139;;38699:248;;;:::o;38953:419::-;;39157:2;39146:9;39142:18;39134:26;;39206:9;39200:4;39196:20;39192:1;39181:9;39177:17;39170:47;39234:131;39360:4;39234:131;:::i;:::-;39226:139;;39124:248;;;:::o;39378:419::-;;39582:2;39571:9;39567:18;39559:26;;39631:9;39625:4;39621:20;39617:1;39606:9;39602:17;39595:47;39659:131;39785:4;39659:131;:::i;:::-;39651:139;;39549:248;;;:::o;39803:419::-;;40007:2;39996:9;39992:18;39984:26;;40056:9;40050:4;40046:20;40042:1;40031:9;40027:17;40020:47;40084:131;40210:4;40084:131;:::i;:::-;40076:139;;39974:248;;;:::o;40228:419::-;;40432:2;40421:9;40417:18;40409:26;;40481:9;40475:4;40471:20;40467:1;40456:9;40452:17;40445:47;40509:131;40635:4;40509:131;:::i;:::-;40501:139;;40399:248;;;:::o;40653:419::-;;40857:2;40846:9;40842:18;40834:26;;40906:9;40900:4;40896:20;40892:1;40881:9;40877:17;40870:47;40934:131;41060:4;40934:131;:::i;:::-;40926:139;;40824:248;;;:::o;41078:419::-;;41282:2;41271:9;41267:18;41259:26;;41331:9;41325:4;41321:20;41317:1;41306:9;41302:17;41295:47;41359:131;41485:4;41359:131;:::i;:::-;41351:139;;41249:248;;;:::o;41503:419::-;;41707:2;41696:9;41692:18;41684:26;;41756:9;41750:4;41746:20;41742:1;41731:9;41727:17;41720:47;41784:131;41910:4;41784:131;:::i;:::-;41776:139;;41674:248;;;:::o;41928:419::-;;42132:2;42121:9;42117:18;42109:26;;42181:9;42175:4;42171:20;42167:1;42156:9;42152:17;42145:47;42209:131;42335:4;42209:131;:::i;:::-;42201:139;;42099:248;;;:::o;42353:419::-;;42557:2;42546:9;42542:18;42534:26;;42606:9;42600:4;42596:20;42592:1;42581:9;42577:17;42570:47;42634:131;42760:4;42634:131;:::i;:::-;42626:139;;42524:248;;;:::o;42778:419::-;;42982:2;42971:9;42967:18;42959:26;;43031:9;43025:4;43021:20;43017:1;43006:9;43002:17;42995:47;43059:131;43185:4;43059:131;:::i;:::-;43051:139;;42949:248;;;:::o;43203:222::-;;43334:2;43323:9;43319:18;43311:26;;43347:71;43415:1;43404:9;43400:17;43391:6;43347:71;:::i;:::-;43301:124;;;;:::o;43431:278::-;;43497:2;43491:9;43481:19;;43539:4;43531:6;43527:17;43646:6;43634:10;43631:22;43610:18;43598:10;43595:34;43592:62;43589:2;;;43657:13;;:::i;:::-;43589:2;43692:10;43688:2;43681:22;43471:238;;;;:::o;43715:326::-;;43866:18;43858:6;43855:30;43852:2;;;43888:13;;:::i;:::-;43852:2;43968:4;43964:9;43957:4;43949:6;43945:17;43941:33;43933:41;;44029:4;44023;44019:15;44011:23;;43781:260;;;:::o;44047:327::-;;44199:18;44191:6;44188:30;44185:2;;;44221:13;;:::i;:::-;44185:2;44301:4;44297:9;44290:4;44282:6;44278:17;44274:33;44266:41;;44362:4;44356;44352:15;44344:23;;44114:260;;;:::o;44380:142::-;;44480:3;44472:11;;44510:4;44505:3;44501:14;44493:22;;44462:60;;;:::o;44528:132::-;;44618:3;44610:11;;44648:4;44643:3;44639:14;44631:22;;44600:60;;;:::o;44666:144::-;;44741:3;44733:11;;44764:3;44761:1;44754:14;44798:4;44795:1;44785:18;44777:26;;44723:87;;;:::o;44816:141::-;;44888:3;44880:11;;44911:3;44908:1;44901:14;44945:4;44942:1;44932:18;44924:26;;44870:87;;;:::o;44963:124::-;;45074:5;45068:12;45058:22;;45047:40;;;:::o;45093:114::-;;45194:5;45188:12;45178:22;;45167:40;;;:::o;45213:98::-;;45298:5;45292:12;45282:22;;45271:40;;;:::o;45317:99::-;;45403:5;45397:12;45387:22;;45376:40;;;:::o;45422:123::-;;45534:4;45529:3;45525:14;45517:22;;45507:38;;;:::o;45551:113::-;;45653:4;45648:3;45644:14;45636:22;;45626:38;;;:::o;45670:194::-;;45813:6;45808:3;45801:19;45853:4;45848:3;45844:14;45829:29;;45791:73;;;;:::o;45870:184::-;;46003:6;45998:3;45991:19;46043:4;46038:3;46034:14;46019:29;;45981:73;;;;:::o;46060:168::-;;46177:6;46172:3;46165:19;46217:4;46212:3;46208:14;46193:29;;46155:73;;;;:::o;46234:147::-;;46372:3;46357:18;;46347:34;;;;:::o;46387:159::-;;46495:6;46490:3;46483:19;46535:4;46530:3;46526:14;46511:29;;46473:73;;;;:::o;46552:169::-;;46670:6;46665:3;46658:19;46710:4;46705:3;46701:14;46686:29;;46648:73;;;;:::o;46727:148::-;;46866:3;46851:18;;46841:34;;;;:::o;46881:96::-;;46947:24;46965:5;46947:24;:::i;:::-;46936:35;;46926:51;;;:::o;46983:104::-;;47057:24;47075:5;47057:24;:::i;:::-;47046:35;;47036:51;;;:::o;47093:90::-;;47170:5;47163:13;47156:21;47145:32;;47135:48;;;:::o;47189:77::-;;47255:5;47244:16;;47234:32;;;:::o;47272:149::-;;47348:66;47341:5;47337:78;47326:89;;47316:105;;;:::o;47427:126::-;;47504:42;47497:5;47493:54;47482:65;;47472:81;;;:::o;47559:77::-;;47625:5;47614:16;;47604:32;;;:::o;47642:134::-;;47733:37;47764:5;47733:37;:::i;:::-;47720:50;;47710:66;;;:::o;47782:126::-;;47865:37;47896:5;47865:37;:::i;:::-;47852:50;;47842:66;;;:::o;47914:113::-;;47997:24;48015:5;47997:24;:::i;:::-;47984:37;;47974:53;;;:::o;48033:154::-;48117:6;48112:3;48107;48094:30;48179:1;48170:6;48165:3;48161:16;48154:27;48084:103;;;:::o;48193:307::-;48261:1;48271:113;48285:6;48282:1;48279:13;48271:113;;;48370:1;48365:3;48361:11;48355:18;48351:1;48346:3;48342:11;48335:39;48307:2;48304:1;48300:10;48295:15;;48271:113;;;48402:6;48399:1;48396:13;48393:2;;;48482:1;48473:6;48468:3;48464:16;48457:27;48393:2;48242:258;;;;:::o;48506:48::-;48539:9;48560:102;;48652:2;48648:7;48643:2;48636:5;48632:14;48628:28;48618:38;;48608:54;;;:::o;48668:122::-;48741:24;48759:5;48741:24;:::i;:::-;48734:5;48731:35;48721:2;;48780:1;48777;48770:12;48721:2;48711:79;:::o;48796:116::-;48866:21;48881:5;48866:21;:::i;:::-;48859:5;48856:32;48846:2;;48902:1;48899;48892:12;48846:2;48836:76;:::o;48918:122::-;48991:24;49009:5;48991:24;:::i;:::-;48984:5;48981:35;48971:2;;49030:1;49027;49020:12;48971:2;48961:79;:::o;49046:120::-;49118:23;49135:5;49118:23;:::i;:::-;49111:5;49108:34;49098:2;;49156:1;49153;49146:12;49098:2;49088:78;:::o;49172:122::-;49245:24;49263:5;49245:24;:::i;:::-;49238:5;49235:35;49225:2;;49284:1;49281;49274:12;49225:2;49215:79;:::o

Swarm Source

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