ETH Price: $2,348.20 (-2.88%)

Token

Swaggy Cows (SWAGGY)
 

Overview

Max Total Supply

509 SWAGGY

Holders

144

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
13 SWAGGY
0x0e26d88cd8deec6e5762cc5be6e33cb49a01932b
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
SwaggyCows

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// GO TO LINE 1904 TO SEE WHERE THE COW CONTRACT STARTS
 
// File: @openzeppelin/contracts/utils/Context.sol

pragma solidity >=0.6.0 <0.8.0;

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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



pragma solidity >=0.6.2 <0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity >=0.6.2 <0.8.0;


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

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

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

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

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



pragma solidity >=0.6.2 <0.8.0;


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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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



pragma solidity >=0.6.0 <0.8.0;


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

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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity >=0.6.2 <0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

            bytes32 lastvalue = set._values[lastIndex];

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

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

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

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

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

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

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

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

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

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

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

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


    // UintSet

    struct UintSet {
        Set _inner;
    }

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

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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

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

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

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

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

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

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

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

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

            MapEntry storage lastEntry = map._entries[lastIndex];

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

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

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

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

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

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

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

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

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

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

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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

    // Base URI
    string private _baseURI;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

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

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

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

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

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

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(tokenId);

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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


// SwaggyCows created by WoodCollector
// Art by ebbanosen

pragma solidity ^0.7.0;
pragma abicoder v2;

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

    string public COW_PROVENANCE = ""; // IPFS URL WILL BE ADDED WHEN COWS 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 cowPrice = 10000000000000000; // 0.01 ETH

    uint public constant maxCowPurchase = 20;

    uint256 public constant MAX_COWS = 10000;

    bool public saleIsActive = false;
    
    bool public uriIsFrozen = false;
    
    // Reserve 25 Cows for team - Giveaways/Prizes etc
    uint public cowReserve = 25;
    
    event licenseisLocked(string _licenseText);

    constructor() ERC721("Swaggy Cows", "SWAGGY") { }
    
    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        msg.sender.transfer(balance);
    }
    
    function reserveCows(address _to, uint256 _reserveAmount) public onlyOwner {        
        uint supply = totalSupply();
        require(_reserveAmount > 0 && _reserveAmount <= cowReserve, "Not enough reserve left for team");
        for (uint i = 0; i < _reserveAmount; i++) {
            _safeMint(_to, supply + i);
        }
        cowReserve = cowReserve.sub(_reserveAmount);
    }


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

    function setBaseURI(string memory baseURI) public onlyOwner {
        require(uriIsFrozen == false, "The BaseURI has been frozen and can not be changed.");
        _setBaseURI(baseURI);
    }
    
    function freezeBaseURI() public onlyOwner {
        require(uriIsFrozen == false, "The BaseURI has already been frozen.");
        uriIsFrozen = true;
    }


    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 COW 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 mintSwaggyCow(uint numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint a Swaggy Cow");
        require(numberOfTokens > 0 && numberOfTokens <= maxCowPurchase, "Can only mint 20 tokens at a time");
        require(totalSupply().add(numberOfTokens) <= MAX_COWS, "Purchase would exceed max supply of Swaggy Cows");
        require(msg.value >= cowPrice.mul(numberOfTokens), "Ether value sent is not correct");
        
        for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = totalSupply();
            if (totalSupply() < MAX_COWS) {
                _safeMint(msg.sender, mintIndex);
            }
        }

    }
     
    
    

    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_licenseText","type":"string"}],"name":"licenseisLocked","type":"event"},{"inputs":[],"name":"COW_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LICENSE_TEXT","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_COWS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_license","type":"string"}],"name":"changeLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cowPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cowReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freezeBaseURI","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":"maxCowPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintSwaggyCow","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":"reserveCows","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":[],"name":"uriIsFrozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600b90805190602001906200002b9291906200034f565b5060405180602001604052806000815250600c9080519060200190620000539291906200034f565b506000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506000600d60026101000a81548160ff0219169083151502179055506019600e55348015620000b757600080fd5b506040518060400160405280600b81526020017f53776167677920436f77730000000000000000000000000000000000000000008152506040518060400160405280600681526020017f53574147475900000000000000000000000000000000000000000000000000008152506200013c6301ffc9a760e01b6200026f60201b60201c565b8160069080519060200190620001549291906200034f565b5080600790805190602001906200016d9291906200034f565b50620001866380ac58cd60e01b6200026f60201b60201c565b6200019e635b5e139f60e01b6200026f60201b60201c565b620001b663780e9d6360e01b6200026f60201b60201c565b50506000620001ca6200034760201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200047a565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620002db576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002d29062000447565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620003875760008555620003d3565b82601f10620003a257805160ff1916838001178555620003d3565b82800160010185558215620003d3579182015b82811115620003d2578251825591602001919060010190620003b5565b5b509050620003e29190620003e6565b5090565b5b8082111562000401576000816000905550600101620003e7565b5090565b600062000414601c8362000469565b91507f4552433136353a20696e76616c696420696e74657266616365206964000000006000830152602082019050919050565b60006020820190508181036000830152620004628162000405565b9050919050565b600082825260208201905092915050565b614bbe806200048a6000396000f3fe6080604052600436106102305760003560e01c80636c0360eb1161012e578063a22cb465116100ab578063d9b137b21161006f578063d9b137b21461080a578063e7bc820814610847578063e985e9c51461085e578063eb8d24441461089b578063f2fde38b146108c657610230565b8063a22cb4651461073b578063b09904b514610764578063b88d4fde1461078d578063bf4702fc146107b6578063c87b56dd146107cd57610230565b806389c256b2116100f257806389c256b2146106645780638da5cb5b1461068f57806395d89b41146106ba578063960f00fe146106e55780639c3e72bd1461071057610230565b80636c0360eb1461057d57806370a08231146105a8578063715018a6146105e557806383a918e2146105fc5780638462151c1461062757610230565b806334918dfd116101bc57806350afc7e51161018057806350afc7e5146104a757806355f804b3146104c35780636297683c146104ec5780636352211e146105155780636ae508bf1461055257610230565b806334918dfd146103e85780633ccfd60b146103ff5780633dc464d61461041657806342842e0e146104415780634f6ccce71461046a57610230565b80631096952311610203578063109695231461030357806318160ddd1461032c57806323b872dd1461035757806324e7a877146103805780632f745c59146103ab57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613613565b6108ef565b604051610269919061446f565b60405180910390f35b34801561027e57600080fd5b50610287610956565b604051610294919061448a565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf91906136a6565b6109f8565b6040516102d191906143e6565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc91906135d7565b610a7d565b005b34801561030f57600080fd5b5061032a60048036038101906103259190613665565b610b95565b005b34801561033857600080fd5b50610341610c2b565b60405161034e91906148ae565b60405180910390f35b34801561036357600080fd5b5061037e600480360381019061037991906134d1565b610c3c565b005b34801561038c57600080fd5b50610395610c9c565b6040516103a291906148ae565b60405180910390f35b3480156103b757600080fd5b506103d260048036038101906103cd91906135d7565b610ca7565b6040516103df91906148ae565b60405180910390f35b3480156103f457600080fd5b506103fd610d02565b005b34801561040b57600080fd5b50610414610daa565b005b34801561042257600080fd5b5061042b610e75565b604051610438919061446f565b60405180910390f35b34801561044d57600080fd5b50610468600480360381019061046391906134d1565b610e88565b005b34801561047657600080fd5b50610491600480360381019061048c91906136a6565b610ea8565b60405161049e91906148ae565b60405180910390f35b6104c160048036038101906104bc91906136a6565b610ecb565b005b3480156104cf57600080fd5b506104ea60048036038101906104e59190613665565b611069565b005b3480156104f857600080fd5b50610513600480360381019061050e91906135d7565b611147565b005b34801561052157600080fd5b5061053c600480360381019061053791906136a6565b611265565b60405161054991906143e6565b60405180910390f35b34801561055e57600080fd5b5061056761129c565b604051610574919061448a565b60405180910390f35b34801561058957600080fd5b5061059261133a565b60405161059f919061448a565b60405180910390f35b3480156105b457600080fd5b506105cf60048036038101906105ca919061346c565b6113dc565b6040516105dc91906148ae565b60405180910390f35b3480156105f157600080fd5b506105fa61149b565b005b34801561060857600080fd5b506106116115d8565b60405161061e91906148ae565b60405180910390f35b34801561063357600080fd5b5061064e6004803603810190610649919061346c565b6115de565b60405161065b919061444d565b60405180910390f35b34801561067057600080fd5b506106796116d7565b60405161068691906148ae565b60405180910390f35b34801561069b57600080fd5b506106a46116dd565b6040516106b191906143e6565b60405180910390f35b3480156106c657600080fd5b506106cf611707565b6040516106dc919061448a565b60405180910390f35b3480156106f157600080fd5b506106fa6117a9565b60405161070791906148ae565b60405180910390f35b34801561071c57600080fd5b506107256117ae565b604051610732919061448a565b60405180910390f35b34801561074757600080fd5b50610762600480360381019061075d919061359b565b61184c565b005b34801561077057600080fd5b5061078b60048036038101906107869190613665565b6119cd565b005b34801561079957600080fd5b506107b460048036038101906107af9190613520565b611ab9565b005b3480156107c257600080fd5b506107cb611b1b565b005b3480156107d957600080fd5b506107f460048036038101906107ef91906136a6565b611bec565b604051610801919061448a565b60405180910390f35b34801561081657600080fd5b50610831600480360381019061082c91906136a6565b611d6f565b60405161083e919061448a565b60405180910390f35b34801561085357600080fd5b5061085c611e5c565b005b34801561086a57600080fd5b5061088560048036038101906108809190613495565b611f4b565b604051610892919061446f565b60405180910390f35b3480156108a757600080fd5b506108b0611fdf565b6040516108bd919061446f565b60405180910390f35b3480156108d257600080fd5b506108ed60048036038101906108e8919061346c565b611ff2565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109ee5780601f106109c3576101008083540402835291602001916109ee565b820191906000526020600020905b8154815290600101906020018083116109d157829003601f168201915b5050505050905090565b6000610a038261219e565b610a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a399061478e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8882611265565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af09061480e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b186121bb565b73ffffffffffffffffffffffffffffffffffffffff161480610b475750610b4681610b416121bb565b611f4b565b5b610b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d9061466e565b60405180910390fd5b610b9083836121c3565b505050565b610b9d6121bb565b73ffffffffffffffffffffffffffffffffffffffff16610bbb6116dd565b73ffffffffffffffffffffffffffffffffffffffff1614610c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c08906147ae565b60405180910390fd5b80600b9080519060200190610c27929190613288565b5050565b6000610c37600261227c565b905090565b610c4d610c476121bb565b82612291565b610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c839061484e565b60405180910390fd5b610c9783838361236f565b505050565b662386f26fc1000081565b6000610cfa82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061258690919063ffffffff16565b905092915050565b610d0a6121bb565b73ffffffffffffffffffffffffffffffffffffffff16610d286116dd565b73ffffffffffffffffffffffffffffffffffffffff1614610d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d75906147ae565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b610db26121bb565b73ffffffffffffffffffffffffffffffffffffffff16610dd06116dd565b73ffffffffffffffffffffffffffffffffffffffff1614610e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1d906147ae565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e71573d6000803e3d6000fd5b5050565b600d60029054906101000a900460ff1681565b610ea383838360405180602001604052806000815250611ab9565b505050565b600080610ebf8360026125a090919063ffffffff16565b50905080915050919050565b600d60019054906101000a900460ff16610f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f119061488e565b60405180910390fd5b600081118015610f2b575060148111155b610f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f619061464e565b60405180910390fd5b612710610f8782610f79610c2b565b6125cc90919063ffffffff16565b1115610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf9061474e565b60405180910390fd5b610fe281662386f26fc1000061262190919063ffffffff16565b341015611024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101b906145ce565b60405180910390fd5b60005b81811015611065576000611039610c2b565b9050612710611046610c2b565b1015611057576110563382612691565b5b508080600101915050611027565b5050565b6110716121bb565b73ffffffffffffffffffffffffffffffffffffffff1661108f6116dd565b73ffffffffffffffffffffffffffffffffffffffff16146110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc906147ae565b60405180910390fd5b60001515600d60029054906101000a900460ff1615151461113b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611132906146ce565b60405180910390fd5b611144816126af565b50565b61114f6121bb565b73ffffffffffffffffffffffffffffffffffffffff1661116d6116dd565b73ffffffffffffffffffffffffffffffffffffffff16146111c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ba906147ae565b60405180910390fd5b60006111cd610c2b565b90506000821180156111e15750600e548211155b611220576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112179061456e565b60405180910390fd5b60005b828110156112445761123784828401612691565b8080600101915050611223565b5061125a82600e546126c990919063ffffffff16565b600e81905550505050565b600061129582604051806060016040528060298152602001614b606029913960026127199092919063ffffffff16565b9050919050565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113325780601f1061130757610100808354040283529160200191611332565b820191906000526020600020905b81548152906001019060200180831161131557829003601f168201915b505050505081565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113d25780601f106113a7576101008083540402835291602001916113d2565b820191906000526020600020905b8154815290600101906020018083116113b557829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561144d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114449061468e565b60405180910390fd5b611494600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612738565b9050919050565b6114a36121bb565b73ffffffffffffffffffffffffffffffffffffffff166114c16116dd565b73ffffffffffffffffffffffffffffffffffffffff1614611517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150e906147ae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61271081565b606060006115eb836113dc565b9050600081141561164657600067ffffffffffffffff8111801561160e57600080fd5b5060405190808252806020026020018201604052801561163d5781602001602082028036833780820191505090505b509150506116d2565b60008167ffffffffffffffff8111801561165f57600080fd5b5060405190808252806020026020018201604052801561168e5781602001602082028036833780820191505090505b50905060005b828110156116cb576116a68582610ca7565b8282815181106116b257fe5b6020026020010181815250508080600101915050611694565b8193505050505b919050565b600e5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561179f5780601f106117745761010080835404028352916020019161179f565b820191906000526020600020905b81548152906001019060200180831161178257829003601f168201915b5050505050905090565b601481565b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118445780601f1061181957610100808354040283529160200191611844565b820191906000526020600020905b81548152906001019060200180831161182757829003601f168201915b505050505081565b6118546121bb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b9906145ae565b60405180910390fd5b80600560006118cf6121bb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661197c6121bb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119c1919061446f565b60405180910390a35050565b6119d56121bb565b73ffffffffffffffffffffffffffffffffffffffff166119f36116dd565b73ffffffffffffffffffffffffffffffffffffffff1614611a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a40906147ae565b60405180910390fd5b60001515600d60009054906101000a900460ff16151514611a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a969061482e565b60405180910390fd5b80600c9080519060200190611ab5929190613288565b5050565b611aca611ac46121bb565b83612291565b611b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b009061484e565b60405180910390fd5b611b158484848461274d565b50505050565b611b236121bb565b73ffffffffffffffffffffffffffffffffffffffff16611b416116dd565b73ffffffffffffffffffffffffffffffffffffffff1614611b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8e906147ae565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055507f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0600c604051611be291906144ac565b60405180910390a1565b6060611bf78261219e565b611c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2d906147ee565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611cdf5780601f10611cb457610100808354040283529160200191611cdf565b820191906000526020600020905b815481529060010190602001808311611cc257829003601f168201915b505050505090506000611cf061133a565b9050600081511415611d06578192505050611d6a565b600082511115611d3b578082604051602001611d239291906143c2565b60405160208183030381529060405292505050611d6a565b80611d45856127a9565b604051602001611d569291906143c2565b604051602081830303815290604052925050505b919050565b6060611d79610c2b565b8210611dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db1906146ae565b60405180910390fd5b600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611e505780601f10611e2557610100808354040283529160200191611e50565b820191906000526020600020905b815481529060010190602001808311611e3357829003601f168201915b50505050509050919050565b611e646121bb565b73ffffffffffffffffffffffffffffffffffffffff16611e826116dd565b73ffffffffffffffffffffffffffffffffffffffff1614611ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecf906147ae565b60405180910390fd5b60001515600d60029054906101000a900460ff16151514611f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f25906146ee565b60405180910390fd5b6001600d60026101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60019054906101000a900460ff1681565b611ffa6121bb565b73ffffffffffffffffffffffffffffffffffffffff166120186116dd565b73ffffffffffffffffffffffffffffffffffffffff161461206e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612065906147ae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d59061450e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006121b48260026128f090919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661223683611265565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061228a8260000161290a565b9050919050565b600061229c8261219e565b6122db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d29061462e565b60405180910390fd5b60006122e683611265565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061235557508373ffffffffffffffffffffffffffffffffffffffff1661233d846109f8565b73ffffffffffffffffffffffffffffffffffffffff16145b8061236657506123658185611f4b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661238f82611265565b73ffffffffffffffffffffffffffffffffffffffff16146123e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123dc906147ce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244c9061458e565b60405180910390fd5b61246083838361291b565b61246b6000826121c3565b6124bc81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061292090919063ffffffff16565b5061250e81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061293a90919063ffffffff16565b50612525818360026129549092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006125958360000183612989565b60001c905092915050565b6000806000806125b386600001866129f6565b915091508160001c8160001c9350935050509250929050565b600080828401905083811015612617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260e9061454e565b60405180910390fd5b8091505092915050565b600080831415612634576000905061268b565b600082840290508284828161264557fe5b0414612686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267d9061476e565b60405180910390fd5b809150505b92915050565b6126ab828260405180602001604052806000815250612a79565b5050565b80600990805190602001906126c5929190613288565b5050565b60008282111561270e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612705906145ee565b60405180910390fd5b818303905092915050565b600061272c846000018460001b84612ad4565b60001c90509392505050565b600061274682600001612b65565b9050919050565b61275884848461236f565b61276484848484612b76565b6127a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279a906144ee565b60405180910390fd5b50505050565b606060008214156127f1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128eb565b600082905060005b6000821461281b578080600101915050600a828161281357fe5b0491506127f9565b60008167ffffffffffffffff8111801561283457600080fd5b506040519080825280601f01601f1916602001820160405280156128675781602001600182028036833780820191505090505b50905060006001830390508593505b600084146128e357600a848161288857fe5b0660300160f81b828280600190039350815181106128a257fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a84816128db57fe5b049350612876565b819450505050505b919050565b6000612902836000018360001b612cda565b905092915050565b600081600001805490509050919050565b505050565b6000612932836000018360001b612cfd565b905092915050565b600061294c836000018360001b612de5565b905092915050565b6000612980846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b612e55565b90509392505050565b6000818360000180549050116129d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cb906144ce565b60405180910390fd5b8260000182815481106129e357fe5b9060005260206000200154905092915050565b60008082846000018054905011612a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a399061470e565b60405180910390fd5b6000846000018481548110612a5357fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b612a838383612f31565b612a906000848484612b76565b612acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac6906144ee565b60405180910390fd5b505050565b60008084600101600085815260200190815260200160002054905060008114158390612b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2d919061448a565b60405180910390fd5b50846000016001820381548110612b4957fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b6000612b978473ffffffffffffffffffffffffffffffffffffffff166130bf565b612ba45760019050612cd2565b6000612c6b63150b7a0260e01b612bb96121bb565b888787604051602401612bcf9493929190614401565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614b2e603291398773ffffffffffffffffffffffffffffffffffffffff166130d29092919063ffffffff16565b9050600081806020019051810190612c83919061363c565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114612dd95760006001820390506000600186600001805490500390506000866000018281548110612d4857fe5b9060005260206000200154905080876000018481548110612d6557fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612d9d57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612ddf565b60009150505b92915050565b6000612df183836130ea565b612e4a578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612e4f565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415612efc57846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050612f2a565b82856000016001830381548110612f0f57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f989061472e565b60405180910390fd5b612faa8161219e565b15612fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe19061452e565b60405180910390fd5b612ff66000838361291b565b61304781600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061293a90919063ffffffff16565b5061305e818360026129549092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606130e1848460008561310d565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015613152576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131499061460e565b60405180910390fd5b61315b856130bf565b61319a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131919061486e565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516131c391906143ab565b60006040518083038185875af1925050503d8060008114613200576040519150601f19603f3d011682016040523d82523d6000602084013e613205565b606091505b5091509150613215828286613221565b92505050949350505050565b6060831561323157829050613281565b6000835111156132445782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613278919061448a565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826132be5760008555613305565b82601f106132d757805160ff1916838001178555613305565b82800160010185558215613305579182015b828111156133045782518255916020019190600101906132e9565b5b5090506133129190613316565b5090565b5b8082111561332f576000816000905550600101613317565b5090565b6000613346613341846148fa565b6148c9565b90508281526020810184848401111561335e57600080fd5b613369848285614a7c565b509392505050565b600061338461337f8461492a565b6148c9565b90508281526020810184848401111561339c57600080fd5b6133a7848285614a7c565b509392505050565b6000813590506133be81614ad1565b92915050565b6000813590506133d381614ae8565b92915050565b6000813590506133e881614aff565b92915050565b6000815190506133fd81614aff565b92915050565b600082601f83011261341457600080fd5b8135613424848260208601613333565b91505092915050565b600082601f83011261343e57600080fd5b813561344e848260208601613371565b91505092915050565b60008135905061346681614b16565b92915050565b60006020828403121561347e57600080fd5b600061348c848285016133af565b91505092915050565b600080604083850312156134a857600080fd5b60006134b6858286016133af565b92505060206134c7858286016133af565b9150509250929050565b6000806000606084860312156134e657600080fd5b60006134f4868287016133af565b9350506020613505868287016133af565b925050604061351686828701613457565b9150509250925092565b6000806000806080858703121561353657600080fd5b6000613544878288016133af565b9450506020613555878288016133af565b935050604061356687828801613457565b925050606085013567ffffffffffffffff81111561358357600080fd5b61358f87828801613403565b91505092959194509250565b600080604083850312156135ae57600080fd5b60006135bc858286016133af565b92505060206135cd858286016133c4565b9150509250929050565b600080604083850312156135ea57600080fd5b60006135f8858286016133af565b925050602061360985828601613457565b9150509250929050565b60006020828403121561362557600080fd5b6000613633848285016133d9565b91505092915050565b60006020828403121561364e57600080fd5b600061365c848285016133ee565b91505092915050565b60006020828403121561367757600080fd5b600082013567ffffffffffffffff81111561369157600080fd5b61369d8482850161342d565b91505092915050565b6000602082840312156136b857600080fd5b60006136c684828501613457565b91505092915050565b60006136db838361438d565b60208301905092915050565b6136f081614a08565b82525050565b6136ff816149f6565b82525050565b60006137108261497f565b61371a81856149ad565b93506137258361495a565b8060005b8381101561375657815161373d88826136cf565b9750613748836149a0565b925050600181019050613729565b5085935050505092915050565b61376c81614a1a565b82525050565b600061377d8261498a565b61378781856149be565b9350613797818560208601614a8b565b6137a081614ac0565b840191505092915050565b60006137b68261498a565b6137c081856149cf565b93506137d0818560208601614a8b565b80840191505092915050565b60006137e782614995565b6137f181856149da565b9350613801818560208601614a8b565b61380a81614ac0565b840191505092915050565b600061382082614995565b61382a81856149eb565b935061383a818560208601614a8b565b80840191505092915050565b6000815460018116600081146138635760018114613889576138cd565b607f600283041661387481876149da565b955060ff1983168652602086019350506138cd565b6002820461389781876149da565b95506138a28561496a565b60005b828110156138c4578154818901526001820191506020810190506138a5565b80880195505050505b505092915050565b60006138e26022836149da565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006139486032836149da565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006139ae6026836149da565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a14601c836149da565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613a54601b836149da565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000613a946020836149da565b91507f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d6000830152602082019050919050565b6000613ad46024836149da565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b3a6019836149da565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613b7a601f836149da565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000613bba601e836149da565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000613bfa6026836149da565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c60602c836149da565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613cc66021836149da565b91507f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d2c6038836149da565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613d92602a836149da565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613df86019836149da565b91507f43484f4f5345204120434f572057495448494e2052414e4745000000000000006000830152602082019050919050565b6000613e386033836149da565b91507f546865204261736555524920686173206265656e2066726f7a656e20616e642060008301527f63616e206e6f74206265206368616e6765642e000000000000000000000000006020830152604082019050919050565b6000613e9e6024836149da565b91507f54686520426173655552492068617320616c7265616479206265656e2066726f60008301527f7a656e2e000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f046022836149da565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f6a6020836149da565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613faa602f836149da565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f662053776167677920436f777300000000000000000000000000000000006020830152604082019050919050565b60006140106021836149da565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614076602c836149da565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006140dc6020836149da565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061411c6029836149da565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614182602f836149da565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006141e86021836149da565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061424e6016836149da565b91507f4c6963656e736520616c7265616479206c6f636b6564000000000000000000006000830152602082019050919050565b600061428e6031836149da565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006142f4601d836149da565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b60006143346028836149da565b91507f53616c65206d7573742062652061637469766520746f206d696e74206120537760008301527f6167677920436f770000000000000000000000000000000000000000000000006020830152604082019050919050565b61439681614a72565b82525050565b6143a581614a72565b82525050565b60006143b782846137ab565b915081905092915050565b60006143ce8285613815565b91506143da8284613815565b91508190509392505050565b60006020820190506143fb60008301846136f6565b92915050565b600060808201905061441660008301876136e7565b61442360208301866136f6565b614430604083018561439c565b81810360608301526144428184613772565b905095945050505050565b600060208201905081810360008301526144678184613705565b905092915050565b60006020820190506144846000830184613763565b92915050565b600060208201905081810360008301526144a481846137dc565b905092915050565b600060208201905081810360008301526144c68184613846565b905092915050565b600060208201905081810360008301526144e7816138d5565b9050919050565b600060208201905081810360008301526145078161393b565b9050919050565b60006020820190508181036000830152614527816139a1565b9050919050565b6000602082019050818103600083015261454781613a07565b9050919050565b6000602082019050818103600083015261456781613a47565b9050919050565b6000602082019050818103600083015261458781613a87565b9050919050565b600060208201905081810360008301526145a781613ac7565b9050919050565b600060208201905081810360008301526145c781613b2d565b9050919050565b600060208201905081810360008301526145e781613b6d565b9050919050565b6000602082019050818103600083015261460781613bad565b9050919050565b6000602082019050818103600083015261462781613bed565b9050919050565b6000602082019050818103600083015261464781613c53565b9050919050565b6000602082019050818103600083015261466781613cb9565b9050919050565b6000602082019050818103600083015261468781613d1f565b9050919050565b600060208201905081810360008301526146a781613d85565b9050919050565b600060208201905081810360008301526146c781613deb565b9050919050565b600060208201905081810360008301526146e781613e2b565b9050919050565b6000602082019050818103600083015261470781613e91565b9050919050565b6000602082019050818103600083015261472781613ef7565b9050919050565b6000602082019050818103600083015261474781613f5d565b9050919050565b6000602082019050818103600083015261476781613f9d565b9050919050565b6000602082019050818103600083015261478781614003565b9050919050565b600060208201905081810360008301526147a781614069565b9050919050565b600060208201905081810360008301526147c7816140cf565b9050919050565b600060208201905081810360008301526147e78161410f565b9050919050565b6000602082019050818103600083015261480781614175565b9050919050565b60006020820190508181036000830152614827816141db565b9050919050565b6000602082019050818103600083015261484781614241565b9050919050565b6000602082019050818103600083015261486781614281565b9050919050565b60006020820190508181036000830152614887816142e7565b9050919050565b600060208201905081810360008301526148a781614327565b9050919050565b60006020820190506148c3600083018461439c565b92915050565b6000604051905081810181811067ffffffffffffffff821117156148f0576148ef614abe565b5b8060405250919050565b600067ffffffffffffffff82111561491557614914614abe565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561494557614944614abe565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614a0182614a52565b9050919050565b6000614a1382614a52565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614aa9578082015181840152602081019050614a8e565b83811115614ab8576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b614ada816149f6565b8114614ae557600080fd5b50565b614af181614a1a565b8114614afc57600080fd5b50565b614b0881614a26565b8114614b1357600080fd5b50565b614b1f81614a72565b8114614b2a57600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220f093812efe5e055e2c7ad2f0c08891a4f0f3eda764a47fcb98b601cfba78915a64736f6c63430007060033

Deployed Bytecode

0x6080604052600436106102305760003560e01c80636c0360eb1161012e578063a22cb465116100ab578063d9b137b21161006f578063d9b137b21461080a578063e7bc820814610847578063e985e9c51461085e578063eb8d24441461089b578063f2fde38b146108c657610230565b8063a22cb4651461073b578063b09904b514610764578063b88d4fde1461078d578063bf4702fc146107b6578063c87b56dd146107cd57610230565b806389c256b2116100f257806389c256b2146106645780638da5cb5b1461068f57806395d89b41146106ba578063960f00fe146106e55780639c3e72bd1461071057610230565b80636c0360eb1461057d57806370a08231146105a8578063715018a6146105e557806383a918e2146105fc5780638462151c1461062757610230565b806334918dfd116101bc57806350afc7e51161018057806350afc7e5146104a757806355f804b3146104c35780636297683c146104ec5780636352211e146105155780636ae508bf1461055257610230565b806334918dfd146103e85780633ccfd60b146103ff5780633dc464d61461041657806342842e0e146104415780634f6ccce71461046a57610230565b80631096952311610203578063109695231461030357806318160ddd1461032c57806323b872dd1461035757806324e7a877146103805780632f745c59146103ab57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613613565b6108ef565b604051610269919061446f565b60405180910390f35b34801561027e57600080fd5b50610287610956565b604051610294919061448a565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf91906136a6565b6109f8565b6040516102d191906143e6565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc91906135d7565b610a7d565b005b34801561030f57600080fd5b5061032a60048036038101906103259190613665565b610b95565b005b34801561033857600080fd5b50610341610c2b565b60405161034e91906148ae565b60405180910390f35b34801561036357600080fd5b5061037e600480360381019061037991906134d1565b610c3c565b005b34801561038c57600080fd5b50610395610c9c565b6040516103a291906148ae565b60405180910390f35b3480156103b757600080fd5b506103d260048036038101906103cd91906135d7565b610ca7565b6040516103df91906148ae565b60405180910390f35b3480156103f457600080fd5b506103fd610d02565b005b34801561040b57600080fd5b50610414610daa565b005b34801561042257600080fd5b5061042b610e75565b604051610438919061446f565b60405180910390f35b34801561044d57600080fd5b50610468600480360381019061046391906134d1565b610e88565b005b34801561047657600080fd5b50610491600480360381019061048c91906136a6565b610ea8565b60405161049e91906148ae565b60405180910390f35b6104c160048036038101906104bc91906136a6565b610ecb565b005b3480156104cf57600080fd5b506104ea60048036038101906104e59190613665565b611069565b005b3480156104f857600080fd5b50610513600480360381019061050e91906135d7565b611147565b005b34801561052157600080fd5b5061053c600480360381019061053791906136a6565b611265565b60405161054991906143e6565b60405180910390f35b34801561055e57600080fd5b5061056761129c565b604051610574919061448a565b60405180910390f35b34801561058957600080fd5b5061059261133a565b60405161059f919061448a565b60405180910390f35b3480156105b457600080fd5b506105cf60048036038101906105ca919061346c565b6113dc565b6040516105dc91906148ae565b60405180910390f35b3480156105f157600080fd5b506105fa61149b565b005b34801561060857600080fd5b506106116115d8565b60405161061e91906148ae565b60405180910390f35b34801561063357600080fd5b5061064e6004803603810190610649919061346c565b6115de565b60405161065b919061444d565b60405180910390f35b34801561067057600080fd5b506106796116d7565b60405161068691906148ae565b60405180910390f35b34801561069b57600080fd5b506106a46116dd565b6040516106b191906143e6565b60405180910390f35b3480156106c657600080fd5b506106cf611707565b6040516106dc919061448a565b60405180910390f35b3480156106f157600080fd5b506106fa6117a9565b60405161070791906148ae565b60405180910390f35b34801561071c57600080fd5b506107256117ae565b604051610732919061448a565b60405180910390f35b34801561074757600080fd5b50610762600480360381019061075d919061359b565b61184c565b005b34801561077057600080fd5b5061078b60048036038101906107869190613665565b6119cd565b005b34801561079957600080fd5b506107b460048036038101906107af9190613520565b611ab9565b005b3480156107c257600080fd5b506107cb611b1b565b005b3480156107d957600080fd5b506107f460048036038101906107ef91906136a6565b611bec565b604051610801919061448a565b60405180910390f35b34801561081657600080fd5b50610831600480360381019061082c91906136a6565b611d6f565b60405161083e919061448a565b60405180910390f35b34801561085357600080fd5b5061085c611e5c565b005b34801561086a57600080fd5b5061088560048036038101906108809190613495565b611f4b565b604051610892919061446f565b60405180910390f35b3480156108a757600080fd5b506108b0611fdf565b6040516108bd919061446f565b60405180910390f35b3480156108d257600080fd5b506108ed60048036038101906108e8919061346c565b611ff2565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109ee5780601f106109c3576101008083540402835291602001916109ee565b820191906000526020600020905b8154815290600101906020018083116109d157829003601f168201915b5050505050905090565b6000610a038261219e565b610a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a399061478e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8882611265565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af09061480e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b186121bb565b73ffffffffffffffffffffffffffffffffffffffff161480610b475750610b4681610b416121bb565b611f4b565b5b610b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d9061466e565b60405180910390fd5b610b9083836121c3565b505050565b610b9d6121bb565b73ffffffffffffffffffffffffffffffffffffffff16610bbb6116dd565b73ffffffffffffffffffffffffffffffffffffffff1614610c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c08906147ae565b60405180910390fd5b80600b9080519060200190610c27929190613288565b5050565b6000610c37600261227c565b905090565b610c4d610c476121bb565b82612291565b610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c839061484e565b60405180910390fd5b610c9783838361236f565b505050565b662386f26fc1000081565b6000610cfa82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061258690919063ffffffff16565b905092915050565b610d0a6121bb565b73ffffffffffffffffffffffffffffffffffffffff16610d286116dd565b73ffffffffffffffffffffffffffffffffffffffff1614610d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d75906147ae565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b610db26121bb565b73ffffffffffffffffffffffffffffffffffffffff16610dd06116dd565b73ffffffffffffffffffffffffffffffffffffffff1614610e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1d906147ae565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e71573d6000803e3d6000fd5b5050565b600d60029054906101000a900460ff1681565b610ea383838360405180602001604052806000815250611ab9565b505050565b600080610ebf8360026125a090919063ffffffff16565b50905080915050919050565b600d60019054906101000a900460ff16610f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f119061488e565b60405180910390fd5b600081118015610f2b575060148111155b610f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f619061464e565b60405180910390fd5b612710610f8782610f79610c2b565b6125cc90919063ffffffff16565b1115610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf9061474e565b60405180910390fd5b610fe281662386f26fc1000061262190919063ffffffff16565b341015611024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101b906145ce565b60405180910390fd5b60005b81811015611065576000611039610c2b565b9050612710611046610c2b565b1015611057576110563382612691565b5b508080600101915050611027565b5050565b6110716121bb565b73ffffffffffffffffffffffffffffffffffffffff1661108f6116dd565b73ffffffffffffffffffffffffffffffffffffffff16146110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc906147ae565b60405180910390fd5b60001515600d60029054906101000a900460ff1615151461113b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611132906146ce565b60405180910390fd5b611144816126af565b50565b61114f6121bb565b73ffffffffffffffffffffffffffffffffffffffff1661116d6116dd565b73ffffffffffffffffffffffffffffffffffffffff16146111c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ba906147ae565b60405180910390fd5b60006111cd610c2b565b90506000821180156111e15750600e548211155b611220576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112179061456e565b60405180910390fd5b60005b828110156112445761123784828401612691565b8080600101915050611223565b5061125a82600e546126c990919063ffffffff16565b600e81905550505050565b600061129582604051806060016040528060298152602001614b606029913960026127199092919063ffffffff16565b9050919050565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113325780601f1061130757610100808354040283529160200191611332565b820191906000526020600020905b81548152906001019060200180831161131557829003601f168201915b505050505081565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113d25780601f106113a7576101008083540402835291602001916113d2565b820191906000526020600020905b8154815290600101906020018083116113b557829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561144d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114449061468e565b60405180910390fd5b611494600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612738565b9050919050565b6114a36121bb565b73ffffffffffffffffffffffffffffffffffffffff166114c16116dd565b73ffffffffffffffffffffffffffffffffffffffff1614611517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150e906147ae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61271081565b606060006115eb836113dc565b9050600081141561164657600067ffffffffffffffff8111801561160e57600080fd5b5060405190808252806020026020018201604052801561163d5781602001602082028036833780820191505090505b509150506116d2565b60008167ffffffffffffffff8111801561165f57600080fd5b5060405190808252806020026020018201604052801561168e5781602001602082028036833780820191505090505b50905060005b828110156116cb576116a68582610ca7565b8282815181106116b257fe5b6020026020010181815250508080600101915050611694565b8193505050505b919050565b600e5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561179f5780601f106117745761010080835404028352916020019161179f565b820191906000526020600020905b81548152906001019060200180831161178257829003601f168201915b5050505050905090565b601481565b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118445780601f1061181957610100808354040283529160200191611844565b820191906000526020600020905b81548152906001019060200180831161182757829003601f168201915b505050505081565b6118546121bb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b9906145ae565b60405180910390fd5b80600560006118cf6121bb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661197c6121bb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119c1919061446f565b60405180910390a35050565b6119d56121bb565b73ffffffffffffffffffffffffffffffffffffffff166119f36116dd565b73ffffffffffffffffffffffffffffffffffffffff1614611a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a40906147ae565b60405180910390fd5b60001515600d60009054906101000a900460ff16151514611a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a969061482e565b60405180910390fd5b80600c9080519060200190611ab5929190613288565b5050565b611aca611ac46121bb565b83612291565b611b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b009061484e565b60405180910390fd5b611b158484848461274d565b50505050565b611b236121bb565b73ffffffffffffffffffffffffffffffffffffffff16611b416116dd565b73ffffffffffffffffffffffffffffffffffffffff1614611b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8e906147ae565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055507f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0600c604051611be291906144ac565b60405180910390a1565b6060611bf78261219e565b611c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2d906147ee565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611cdf5780601f10611cb457610100808354040283529160200191611cdf565b820191906000526020600020905b815481529060010190602001808311611cc257829003601f168201915b505050505090506000611cf061133a565b9050600081511415611d06578192505050611d6a565b600082511115611d3b578082604051602001611d239291906143c2565b60405160208183030381529060405292505050611d6a565b80611d45856127a9565b604051602001611d569291906143c2565b604051602081830303815290604052925050505b919050565b6060611d79610c2b565b8210611dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db1906146ae565b60405180910390fd5b600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611e505780601f10611e2557610100808354040283529160200191611e50565b820191906000526020600020905b815481529060010190602001808311611e3357829003601f168201915b50505050509050919050565b611e646121bb565b73ffffffffffffffffffffffffffffffffffffffff16611e826116dd565b73ffffffffffffffffffffffffffffffffffffffff1614611ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecf906147ae565b60405180910390fd5b60001515600d60029054906101000a900460ff16151514611f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f25906146ee565b60405180910390fd5b6001600d60026101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60019054906101000a900460ff1681565b611ffa6121bb565b73ffffffffffffffffffffffffffffffffffffffff166120186116dd565b73ffffffffffffffffffffffffffffffffffffffff161461206e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612065906147ae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d59061450e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006121b48260026128f090919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661223683611265565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061228a8260000161290a565b9050919050565b600061229c8261219e565b6122db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d29061462e565b60405180910390fd5b60006122e683611265565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061235557508373ffffffffffffffffffffffffffffffffffffffff1661233d846109f8565b73ffffffffffffffffffffffffffffffffffffffff16145b8061236657506123658185611f4b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661238f82611265565b73ffffffffffffffffffffffffffffffffffffffff16146123e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123dc906147ce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244c9061458e565b60405180910390fd5b61246083838361291b565b61246b6000826121c3565b6124bc81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061292090919063ffffffff16565b5061250e81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061293a90919063ffffffff16565b50612525818360026129549092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006125958360000183612989565b60001c905092915050565b6000806000806125b386600001866129f6565b915091508160001c8160001c9350935050509250929050565b600080828401905083811015612617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260e9061454e565b60405180910390fd5b8091505092915050565b600080831415612634576000905061268b565b600082840290508284828161264557fe5b0414612686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267d9061476e565b60405180910390fd5b809150505b92915050565b6126ab828260405180602001604052806000815250612a79565b5050565b80600990805190602001906126c5929190613288565b5050565b60008282111561270e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612705906145ee565b60405180910390fd5b818303905092915050565b600061272c846000018460001b84612ad4565b60001c90509392505050565b600061274682600001612b65565b9050919050565b61275884848461236f565b61276484848484612b76565b6127a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279a906144ee565b60405180910390fd5b50505050565b606060008214156127f1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128eb565b600082905060005b6000821461281b578080600101915050600a828161281357fe5b0491506127f9565b60008167ffffffffffffffff8111801561283457600080fd5b506040519080825280601f01601f1916602001820160405280156128675781602001600182028036833780820191505090505b50905060006001830390508593505b600084146128e357600a848161288857fe5b0660300160f81b828280600190039350815181106128a257fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a84816128db57fe5b049350612876565b819450505050505b919050565b6000612902836000018360001b612cda565b905092915050565b600081600001805490509050919050565b505050565b6000612932836000018360001b612cfd565b905092915050565b600061294c836000018360001b612de5565b905092915050565b6000612980846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b612e55565b90509392505050565b6000818360000180549050116129d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cb906144ce565b60405180910390fd5b8260000182815481106129e357fe5b9060005260206000200154905092915050565b60008082846000018054905011612a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a399061470e565b60405180910390fd5b6000846000018481548110612a5357fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b612a838383612f31565b612a906000848484612b76565b612acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac6906144ee565b60405180910390fd5b505050565b60008084600101600085815260200190815260200160002054905060008114158390612b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2d919061448a565b60405180910390fd5b50846000016001820381548110612b4957fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b6000612b978473ffffffffffffffffffffffffffffffffffffffff166130bf565b612ba45760019050612cd2565b6000612c6b63150b7a0260e01b612bb96121bb565b888787604051602401612bcf9493929190614401565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614b2e603291398773ffffffffffffffffffffffffffffffffffffffff166130d29092919063ffffffff16565b9050600081806020019051810190612c83919061363c565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114612dd95760006001820390506000600186600001805490500390506000866000018281548110612d4857fe5b9060005260206000200154905080876000018481548110612d6557fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612d9d57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612ddf565b60009150505b92915050565b6000612df183836130ea565b612e4a578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612e4f565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415612efc57846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050612f2a565b82856000016001830381548110612f0f57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f989061472e565b60405180910390fd5b612faa8161219e565b15612fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe19061452e565b60405180910390fd5b612ff66000838361291b565b61304781600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061293a90919063ffffffff16565b5061305e818360026129549092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606130e1848460008561310d565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015613152576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131499061460e565b60405180910390fd5b61315b856130bf565b61319a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131919061486e565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516131c391906143ab565b60006040518083038185875af1925050503d8060008114613200576040519150601f19603f3d011682016040523d82523d6000602084013e613205565b606091505b5091509150613215828286613221565b92505050949350505050565b6060831561323157829050613281565b6000835111156132445782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613278919061448a565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826132be5760008555613305565b82601f106132d757805160ff1916838001178555613305565b82800160010185558215613305579182015b828111156133045782518255916020019190600101906132e9565b5b5090506133129190613316565b5090565b5b8082111561332f576000816000905550600101613317565b5090565b6000613346613341846148fa565b6148c9565b90508281526020810184848401111561335e57600080fd5b613369848285614a7c565b509392505050565b600061338461337f8461492a565b6148c9565b90508281526020810184848401111561339c57600080fd5b6133a7848285614a7c565b509392505050565b6000813590506133be81614ad1565b92915050565b6000813590506133d381614ae8565b92915050565b6000813590506133e881614aff565b92915050565b6000815190506133fd81614aff565b92915050565b600082601f83011261341457600080fd5b8135613424848260208601613333565b91505092915050565b600082601f83011261343e57600080fd5b813561344e848260208601613371565b91505092915050565b60008135905061346681614b16565b92915050565b60006020828403121561347e57600080fd5b600061348c848285016133af565b91505092915050565b600080604083850312156134a857600080fd5b60006134b6858286016133af565b92505060206134c7858286016133af565b9150509250929050565b6000806000606084860312156134e657600080fd5b60006134f4868287016133af565b9350506020613505868287016133af565b925050604061351686828701613457565b9150509250925092565b6000806000806080858703121561353657600080fd5b6000613544878288016133af565b9450506020613555878288016133af565b935050604061356687828801613457565b925050606085013567ffffffffffffffff81111561358357600080fd5b61358f87828801613403565b91505092959194509250565b600080604083850312156135ae57600080fd5b60006135bc858286016133af565b92505060206135cd858286016133c4565b9150509250929050565b600080604083850312156135ea57600080fd5b60006135f8858286016133af565b925050602061360985828601613457565b9150509250929050565b60006020828403121561362557600080fd5b6000613633848285016133d9565b91505092915050565b60006020828403121561364e57600080fd5b600061365c848285016133ee565b91505092915050565b60006020828403121561367757600080fd5b600082013567ffffffffffffffff81111561369157600080fd5b61369d8482850161342d565b91505092915050565b6000602082840312156136b857600080fd5b60006136c684828501613457565b91505092915050565b60006136db838361438d565b60208301905092915050565b6136f081614a08565b82525050565b6136ff816149f6565b82525050565b60006137108261497f565b61371a81856149ad565b93506137258361495a565b8060005b8381101561375657815161373d88826136cf565b9750613748836149a0565b925050600181019050613729565b5085935050505092915050565b61376c81614a1a565b82525050565b600061377d8261498a565b61378781856149be565b9350613797818560208601614a8b565b6137a081614ac0565b840191505092915050565b60006137b68261498a565b6137c081856149cf565b93506137d0818560208601614a8b565b80840191505092915050565b60006137e782614995565b6137f181856149da565b9350613801818560208601614a8b565b61380a81614ac0565b840191505092915050565b600061382082614995565b61382a81856149eb565b935061383a818560208601614a8b565b80840191505092915050565b6000815460018116600081146138635760018114613889576138cd565b607f600283041661387481876149da565b955060ff1983168652602086019350506138cd565b6002820461389781876149da565b95506138a28561496a565b60005b828110156138c4578154818901526001820191506020810190506138a5565b80880195505050505b505092915050565b60006138e26022836149da565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006139486032836149da565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006139ae6026836149da565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a14601c836149da565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613a54601b836149da565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000613a946020836149da565b91507f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d6000830152602082019050919050565b6000613ad46024836149da565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b3a6019836149da565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613b7a601f836149da565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000613bba601e836149da565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000613bfa6026836149da565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c60602c836149da565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613cc66021836149da565b91507f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d2c6038836149da565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613d92602a836149da565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613df86019836149da565b91507f43484f4f5345204120434f572057495448494e2052414e4745000000000000006000830152602082019050919050565b6000613e386033836149da565b91507f546865204261736555524920686173206265656e2066726f7a656e20616e642060008301527f63616e206e6f74206265206368616e6765642e000000000000000000000000006020830152604082019050919050565b6000613e9e6024836149da565b91507f54686520426173655552492068617320616c7265616479206265656e2066726f60008301527f7a656e2e000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f046022836149da565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f6a6020836149da565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613faa602f836149da565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f662053776167677920436f777300000000000000000000000000000000006020830152604082019050919050565b60006140106021836149da565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614076602c836149da565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006140dc6020836149da565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061411c6029836149da565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614182602f836149da565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006141e86021836149da565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061424e6016836149da565b91507f4c6963656e736520616c7265616479206c6f636b6564000000000000000000006000830152602082019050919050565b600061428e6031836149da565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006142f4601d836149da565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b60006143346028836149da565b91507f53616c65206d7573742062652061637469766520746f206d696e74206120537760008301527f6167677920436f770000000000000000000000000000000000000000000000006020830152604082019050919050565b61439681614a72565b82525050565b6143a581614a72565b82525050565b60006143b782846137ab565b915081905092915050565b60006143ce8285613815565b91506143da8284613815565b91508190509392505050565b60006020820190506143fb60008301846136f6565b92915050565b600060808201905061441660008301876136e7565b61442360208301866136f6565b614430604083018561439c565b81810360608301526144428184613772565b905095945050505050565b600060208201905081810360008301526144678184613705565b905092915050565b60006020820190506144846000830184613763565b92915050565b600060208201905081810360008301526144a481846137dc565b905092915050565b600060208201905081810360008301526144c68184613846565b905092915050565b600060208201905081810360008301526144e7816138d5565b9050919050565b600060208201905081810360008301526145078161393b565b9050919050565b60006020820190508181036000830152614527816139a1565b9050919050565b6000602082019050818103600083015261454781613a07565b9050919050565b6000602082019050818103600083015261456781613a47565b9050919050565b6000602082019050818103600083015261458781613a87565b9050919050565b600060208201905081810360008301526145a781613ac7565b9050919050565b600060208201905081810360008301526145c781613b2d565b9050919050565b600060208201905081810360008301526145e781613b6d565b9050919050565b6000602082019050818103600083015261460781613bad565b9050919050565b6000602082019050818103600083015261462781613bed565b9050919050565b6000602082019050818103600083015261464781613c53565b9050919050565b6000602082019050818103600083015261466781613cb9565b9050919050565b6000602082019050818103600083015261468781613d1f565b9050919050565b600060208201905081810360008301526146a781613d85565b9050919050565b600060208201905081810360008301526146c781613deb565b9050919050565b600060208201905081810360008301526146e781613e2b565b9050919050565b6000602082019050818103600083015261470781613e91565b9050919050565b6000602082019050818103600083015261472781613ef7565b9050919050565b6000602082019050818103600083015261474781613f5d565b9050919050565b6000602082019050818103600083015261476781613f9d565b9050919050565b6000602082019050818103600083015261478781614003565b9050919050565b600060208201905081810360008301526147a781614069565b9050919050565b600060208201905081810360008301526147c7816140cf565b9050919050565b600060208201905081810360008301526147e78161410f565b9050919050565b6000602082019050818103600083015261480781614175565b9050919050565b60006020820190508181036000830152614827816141db565b9050919050565b6000602082019050818103600083015261484781614241565b9050919050565b6000602082019050818103600083015261486781614281565b9050919050565b60006020820190508181036000830152614887816142e7565b9050919050565b600060208201905081810360008301526148a781614327565b9050919050565b60006020820190506148c3600083018461439c565b92915050565b6000604051905081810181811067ffffffffffffffff821117156148f0576148ef614abe565b5b8060405250919050565b600067ffffffffffffffff82111561491557614914614abe565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561494557614944614abe565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614a0182614a52565b9050919050565b6000614a1382614a52565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614aa9578082015181840152602081019050614a8e565b83811115614ab8576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b614ada816149f6565b8114614ae557600080fd5b50565b614af181614a1a565b8114614afc57600080fd5b50565b614b0881614a26565b8114614b1357600080fd5b50565b614b1f81614a72565b8114614b2a57600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220f093812efe5e055e2c7ad2f0c08891a4f0f3eda764a47fcb98b601cfba78915a64736f6c63430007060033

Deployed Bytecode Sourcemap

66958:3881:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10295:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51580:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54366:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53896:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68312:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53374:211;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55256:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67297:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53136:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68819:89;;;;;;;;;;;;;:::i;:::-;;67765:131;;;;;;;;;;;;;:::i;:::-;;67513:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55632:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53662:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70112:697;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68444:194;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67908:394;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51336:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67045:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52955:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51053:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66291:148;;;;;;;;;;;;;:::i;:::-;;67419:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68926:540;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67613:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65640:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51749:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67370:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67144:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54659:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69920:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55854:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69756:125;;;;;;;;;;;;;:::i;:::-;;51924:792;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69517:173;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68650:159;;;;;;;;;;;;;:::i;:::-;;55025:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67468:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66594:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10295:150;10380:4;10404:20;:33;10425:11;10404:33;;;;;;;;;;;;;;;;;;;;;;;;;;;10397:40;;10295:150;;;:::o;51580:100::-;51634:13;51667:5;51660:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51580:100;:::o;54366:221::-;54442:7;54470:16;54478:7;54470;:16::i;:::-;54462:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54555:15;:24;54571:7;54555:24;;;;;;;;;;;;;;;;;;;;;54548:31;;54366:221;;;:::o;53896:404::-;53977:13;53993:23;54008:7;53993:14;:23::i;:::-;53977:39;;54041:5;54035:11;;:2;:11;;;;54027:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;54121:5;54105:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;54130:44;54154:5;54161:12;:10;:12::i;:::-;54130:23;:44::i;:::-;54105:69;54097:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;54271:21;54280:2;54284:7;54271:8;:21::i;:::-;53896:404;;;:::o;68312:124::-;65871:12;:10;:12::i;:::-;65860:23;;:7;:5;:7::i;:::-;:23;;;65852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68414:14:::1;68397;:31;;;;;;;;;;;;:::i;:::-;;68312:124:::0;:::o;53374:211::-;53435:7;53556:21;:12;:19;:21::i;:::-;53549:28;;53374:211;:::o;55256:305::-;55417:41;55436:12;:10;:12::i;:::-;55450:7;55417:18;:41::i;:::-;55409:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;55525:28;55535:4;55541:2;55545:7;55525:9;:28::i;:::-;55256:305;;;:::o;67297:52::-;67332:17;67297:52;:::o;53136:162::-;53233:7;53260:30;53284:5;53260:13;:20;53274:5;53260:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;53253:37;;53136:162;;;;:::o;68819:89::-;65871:12;:10;:12::i;:::-;65860:23;;:7;:5;:7::i;:::-;:23;;;65852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68888:12:::1;;;;;;;;;;;68887:13;68872:12;;:28;;;;;;;;;;;;;;;;;;68819:89::o:0;67765:131::-;65871:12;:10;:12::i;:::-;65860:23;;:7;:5;:7::i;:::-;:23;;;65852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67813:12:::1;67828:21;67813:36;;67860:10;:19;;:28;67880:7;67860:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;65931:1;67765:131::o:0;67513:31::-;;;;;;;;;;;;;:::o;55632:151::-;55736:39;55753:4;55759:2;55763:7;55736:39;;;;;;;;;;;;:16;:39::i;:::-;55632:151;;;:::o;53662:172::-;53737:7;53758:15;53779:22;53795:5;53779:12;:15;;:22;;;;:::i;:::-;53757:44;;;53819:7;53812:14;;;53662:172;;;:::o;70112:697::-;70190:12;;;;;;;;;;;70182:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;70283:1;70266:14;:18;:54;;;;;67408:2;70288:14;:32;;70266:54;70258:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;67454:5;70377:33;70395:14;70377:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:45;;70369:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;70506:28;70519:14;67332:17;70506:12;;:28;;;;:::i;:::-;70493:9;:41;;70485:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;70595:6;70591:209;70611:14;70607:1;:18;70591:209;;;70647:14;70664:13;:11;:13::i;:::-;70647:30;;67454:5;70696:13;:11;:13::i;:::-;:24;70692:97;;;70741:32;70751:10;70763:9;70741;:32::i;:::-;70692:97;70591:209;70627:3;;;;;;;70591:209;;;;70112:697;:::o;68444:194::-;65871:12;:10;:12::i;:::-;65860:23;;:7;:5;:7::i;:::-;:23;;;65852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68538:5:::1;68523:20;;:11;;;;;;;;;;;:20;;;68515:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;68610:20;68622:7;68610:11;:20::i;:::-;68444:194:::0;:::o;67908:394::-;65871:12;:10;:12::i;:::-;65860:23;;:7;:5;:7::i;:::-;:23;;;65852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68002:11:::1;68016:13;:11;:13::i;:::-;68002:27;;68065:1;68048:14;:18;:50;;;;;68088:10;;68070:14;:28;;68048:50;68040:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;68151:6;68146:95;68167:14;68163:1;:18;68146:95;;;68203:26;68213:3;68227:1;68218:6;:10;68203:9;:26::i;:::-;68183:3;;;;;;;68146:95;;;;68264:30;68279:14;68264:10;;:14;;:30;;;;:::i;:::-;68251:10;:43;;;;65931:1;67908:394:::0;;:::o;51336:177::-;51408:7;51435:70;51452:7;51435:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;51428:77;;51336:177;;;:::o;67045:33::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52955:97::-;53003:13;53036:8;53029:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52955:97;:::o;51053:221::-;51125:7;51170:1;51153:19;;:5;:19;;;;51145:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;51237:29;:13;:20;51251:5;51237:20;;;;;;;;;;;;;;;:27;:29::i;:::-;51230:36;;51053:221;;;:::o;66291:148::-;65871:12;:10;:12::i;:::-;65860:23;;:7;:5;:7::i;:::-;:23;;;65852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66398:1:::1;66361:40;;66382:6;;;;;;;;;;;66361:40;;;;;;;;;;;;66429:1;66412:6;;:19;;;;;;;;;;;;;;;;;;66291:148::o:0;67419:40::-;67454:5;67419:40;:::o;68926:540::-;68987:16;69017:18;69038:17;69048:6;69038:9;:17::i;:::-;69017:38;;69084:1;69070:10;:15;69066:393;;;69161:1;69147:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69140:23;;;;;69066:393;69196:23;69236:10;69222:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69196:51;;69262:13;69290:130;69314:10;69306:5;:18;69290:130;;;69370:34;69390:6;69398:5;69370:19;:34::i;:::-;69354:6;69361:5;69354:13;;;;;;;;;;;;;:50;;;;;69326:7;;;;;;;69290:130;;;69441:6;69434:13;;;;;68926:540;;;;:::o;67613:27::-;;;;:::o;65640:87::-;65686:7;65713:6;;;;;;;;;;;65706:13;;65640:87;:::o;51749:104::-;51805:13;51838:7;51831:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51749:104;:::o;67370:40::-;67408:2;67370:40;:::o;67144:31::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54659:295::-;54774:12;:10;:12::i;:::-;54762:24;;:8;:24;;;;54754:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;54874:8;54829:18;:32;54848:12;:10;:12::i;:::-;54829:32;;;;;;;;;;;;;;;:42;54862:8;54829:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;54927:8;54898:48;;54913:12;:10;:12::i;:::-;54898:48;;;54937:8;54898:48;;;;;;:::i;:::-;;;;;;;;54659:295;;:::o;69920:174::-;65871:12;:10;:12::i;:::-;65860:23;;:7;:5;:7::i;:::-;:23;;;65852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70020:5:::1;70003:22;;:13;;;;;;;;;;;:22;;;69995:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;70078:8;70063:12;:23;;;;;;;;;;;;:::i;:::-;;69920:174:::0;:::o;55854:285::-;55986:41;56005:12;:10;:12::i;:::-;56019:7;55986:18;:41::i;:::-;55978:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;56092:39;56106:4;56112:2;56116:7;56125:5;56092:13;:39::i;:::-;55854:285;;;;:::o;69756:125::-;65871:12;:10;:12::i;:::-;65860:23;;:7;:5;:7::i;:::-;:23;;;65852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69824:4:::1;69807:13;;:21;;;;;;;;;;;;;;;;;;69844:29;69860:12;69844:29;;;;;;:::i;:::-;;;;;;;;69756:125::o:0;51924:792::-;51997:13;52031:16;52039:7;52031;:16::i;:::-;52023:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;52112:23;52138:10;:19;52149:7;52138:19;;;;;;;;;;;52112:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52168:18;52189:9;:7;:9::i;:::-;52168:30;;52296:1;52280:4;52274:18;:23;52270:72;;;52321:9;52314:16;;;;;;52270:72;52472:1;52452:9;52446:23;:27;52442:108;;;52521:4;52527:9;52504:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52490:48;;;;;;52442:108;52682:4;52688:18;:7;:16;:18::i;:::-;52665:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52651:57;;;;51924:792;;;;:::o;69517:173::-;69569:13;69609;:11;:13::i;:::-;69603:3;:19;69595:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;69670:12;69663:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69517:173;;;:::o;68650:159::-;65871:12;:10;:12::i;:::-;65860:23;;:7;:5;:7::i;:::-;:23;;;65852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68726:5:::1;68711:20;;:11;;;;;;;;;;;:20;;;68703:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;68797:4;68783:11;;:18;;;;;;;;;;;;;;;;;;68650:159::o:0;55025:164::-;55122:4;55146:18;:25;55165:5;55146:25;;;;;;;;;;;;;;;:35;55172:8;55146:35;;;;;;;;;;;;;;;;;;;;;;;;;55139:42;;55025:164;;;;:::o;67468:32::-;;;;;;;;;;;;;:::o;66594:244::-;65871:12;:10;:12::i;:::-;65860:23;;:7;:5;:7::i;:::-;:23;;;65852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66703:1:::1;66683:22;;:8;:22;;;;66675:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;66793:8;66764:38;;66785:6;;;;;;;;;;;66764:38;;;;;;;;;;;;66822:8;66813:6;;:17;;;;;;;;;;;;;;;;;;66594:244:::0;:::o;57606:127::-;57671:4;57695:30;57717:7;57695:12;:21;;:30;;;;:::i;:::-;57688:37;;57606:127;;;:::o;727:106::-;780:15;815:10;808:17;;727:106;:::o;63624:192::-;63726:2;63699:15;:24;63715:7;63699:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;63782:7;63778:2;63744:46;;63753:23;63768:7;63753:14;:23::i;:::-;63744:46;;;;;;;;;;;;63624:192;;:::o;44338:123::-;44407:7;44434:19;44442:3;:10;;44434:7;:19::i;:::-;44427:26;;44338:123;;;:::o;57900:355::-;57993:4;58018:16;58026:7;58018;:16::i;:::-;58010:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;58094:13;58110:23;58125:7;58110:14;:23::i;:::-;58094:39;;58163:5;58152:16;;:7;:16;;;:51;;;;58196:7;58172:31;;:20;58184:7;58172:11;:20::i;:::-;:31;;;58152:51;:94;;;;58207:39;58231:5;58238:7;58207:23;:39::i;:::-;58152:94;58144:103;;;57900:355;;;;:::o;61036:599::-;61161:4;61134:31;;:23;61149:7;61134:14;:23::i;:::-;:31;;;61126:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;61262:1;61248:16;;:2;:16;;;;61240:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;61318:39;61339:4;61345:2;61349:7;61318:20;:39::i;:::-;61422:29;61439:1;61443:7;61422:8;:29::i;:::-;61464:35;61491:7;61464:13;:19;61478:4;61464:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;61510:30;61532:7;61510:13;:17;61524:2;61510:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;61553:29;61570:7;61579:2;61553:12;:16;;:29;;;;;:::i;:::-;;61619:7;61615:2;61600:27;;61609:4;61600:27;;;;;;;;;;;;61036:599;;;:::o;36129:137::-;36200:7;36235:22;36239:3;:10;;36251:5;36235:3;:22::i;:::-;36227:31;;36220:38;;36129:137;;;;:::o;44800:236::-;44880:7;44889;44910:11;44923:13;44940:22;44944:3;:10;;44956:5;44940:3;:22::i;:::-;44909:53;;;;44989:3;44981:12;;45019:5;45011:14;;44973:55;;;;;;44800:236;;;;;:::o;13857:179::-;13915:7;13935:9;13951:1;13947;:5;13935:17;;13976:1;13971;:6;;13963:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;14027:1;14020:8;;;13857:179;;;;:::o;14736:220::-;14794:7;14823:1;14818;:6;14814:20;;;14833:1;14826:8;;;;14814:20;14845:9;14861:1;14857;:5;14845:17;;14890:1;14885;14881;:5;;;;;;:10;14873:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;14947:1;14940:8;;;14736:220;;;;;:::o;58598:110::-;58674:26;58684:2;58688:7;58674:26;;;;;;;;;;;;:9;:26::i;:::-;58598:110;;:::o;62236:100::-;62320:8;62309;:19;;;;;;;;;;;;:::i;:::-;;62236:100;:::o;14319:158::-;14377:7;14410:1;14405;:6;;14397:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;14468:1;14464;:5;14457:12;;14319:158;;;;:::o;46086:213::-;46193:7;46244:44;46249:3;:10;;46269:3;46261:12;;46275;46244:4;:44::i;:::-;46236:53;;46213:78;;46086:213;;;;;:::o;35671:114::-;35731:7;35758:19;35766:3;:10;;35758:7;:19::i;:::-;35751:26;;35671:114;;;:::o;57021:272::-;57135:28;57145:4;57151:2;57155:7;57135:9;:28::i;:::-;57182:48;57205:4;57211:2;57215:7;57224:5;57182:22;:48::i;:::-;57174:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;57021:272;;;;:::o;46550:746::-;46606:13;46836:1;46827:5;:10;46823:53;;;46854:10;;;;;;;;;;;;;;;;;;;;;46823:53;46886:12;46901:5;46886:20;;46917:14;46942:78;46957:1;46949:4;:9;46942:78;;46975:8;;;;;;;47006:2;46998:10;;;;;;;;;46942:78;;;47030:19;47062:6;47052:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47030:39;;47080:13;47105:1;47096:6;:10;47080:26;;47124:5;47117:12;;47140:117;47155:1;47147:4;:9;47140:117;;47216:2;47209:4;:9;;;;;;47204:2;:14;47191:29;;47173:6;47180:7;;;;;;;47173:15;;;;;;;;;;;:47;;;;;;;;;;;47243:2;47235:10;;;;;;;;;47140:117;;;47281:6;47267:21;;;;;;46550:746;;;;:::o;44099:151::-;44183:4;44207:35;44217:3;:10;;44237:3;44229:12;;44207:9;:35::i;:::-;44200:42;;44099:151;;;;:::o;40917:110::-;40973:7;41000:3;:12;;:19;;;;40993:26;;40917:110;;;:::o;64429:93::-;;;;:::o;35216:137::-;35286:4;35310:35;35318:3;:10;;35338:5;35330:14;;35310:7;:35::i;:::-;35303:42;;35216:137;;;;:::o;34909:131::-;34976:4;35000:32;35005:3;:10;;35025:5;35017:14;;35000:4;:32::i;:::-;34993:39;;34909:131;;;;:::o;43522:185::-;43611:4;43635:64;43640:3;:10;;43660:3;43652:12;;43690:5;43674:23;;43666:32;;43635:4;:64::i;:::-;43628:71;;43522:185;;;;;:::o;31167:204::-;31234:7;31283:5;31262:3;:11;;:18;;;;:26;31254:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31345:3;:11;;31357:5;31345:18;;;;;;;;;;;;;;;;31338:25;;31167:204;;;;:::o;41382:279::-;41449:7;41458;41508:5;41486:3;:12;;:19;;;;:27;41478:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;41565:22;41590:3;:12;;41603:5;41590:19;;;;;;;;;;;;;;;;;;41565:44;;41628:5;:10;;;41640:5;:12;;;41620:33;;;;;41382:279;;;;;:::o;58935:250::-;59031:18;59037:2;59041:7;59031:5;:18::i;:::-;59068:54;59099:1;59103:2;59107:7;59116:5;59068:22;:54::i;:::-;59060:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;58935:250;;;:::o;42879:319::-;42973:7;42993:16;43012:3;:12;;:17;43025:3;43012:17;;;;;;;;;;;;42993:36;;43060:1;43048:8;:13;;43063:12;43040:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;43130:3;:12;;43154:1;43143:8;:12;43130:26;;;;;;;;;;;;;;;;;;:33;;;43123:40;;;42879:319;;;;;:::o;30714:109::-;30770:7;30797:3;:11;;:18;;;;30790:25;;30714:109;;;:::o;62901:604::-;63022:4;63049:15;:2;:13;;;:15::i;:::-;63044:60;;63088:4;63081:11;;;;63044:60;63114:23;63140:252;63193:45;;;63253:12;:10;:12::i;:::-;63280:4;63299:7;63321:5;63156:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63140:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;63114:278;;63403:13;63430:10;63419:32;;;;;;;;;;;;:::i;:::-;63403:48;;48050:10;63480:16;;63470:26;;;:6;:26;;;;63462:35;;;;62901:604;;;;;;;:::o;40697:125::-;40768:4;40813:1;40792:3;:12;;:17;40805:3;40792:17;;;;;;;;;;;;:22;;40785:29;;40697:125;;;;:::o;28869:1544::-;28935:4;29053:18;29074:3;:12;;:19;29087:5;29074:19;;;;;;;;;;;;29053:40;;29124:1;29110:10;:15;29106:1300;;29472:21;29509:1;29496:10;:14;29472:38;;29525:17;29566:1;29545:3;:11;;:18;;;;:22;29525:42;;29812:17;29832:3;:11;;29844:9;29832:22;;;;;;;;;;;;;;;;29812:42;;29978:9;29949:3;:11;;29961:13;29949:26;;;;;;;;;;;;;;;:38;;;;30097:1;30081:13;:17;30055:3;:12;;:23;30068:9;30055:23;;;;;;;;;;;:43;;;;30207:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;30302:3;:12;;:19;30315:5;30302:19;;;;;;;;;;;30295:26;;;30345:4;30338:11;;;;;;;;29106:1300;30389:5;30382:12;;;28869:1544;;;;;:::o;28279:414::-;28342:4;28364:21;28374:3;28379:5;28364:9;:21::i;:::-;28359:327;;28402:3;:11;;28419:5;28402:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28585:3;:11;;:18;;;;28563:3;:12;;:19;28576:5;28563:19;;;;;;;;;;;:40;;;;28625:4;28618:11;;;;28359:327;28669:5;28662:12;;28279:414;;;;;:::o;38197:692::-;38273:4;38389:16;38408:3;:12;;:17;38421:3;38408:17;;;;;;;;;;;;38389:36;;38454:1;38442:8;:13;38438:444;;;38509:3;:12;;38527:38;;;;;;;;38544:3;38527:38;;;;38557:5;38527:38;;;38509:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38724:3;:12;;:19;;;;38704:3;:12;;:17;38717:3;38704:17;;;;;;;;;;;:39;;;;38765:4;38758:11;;;;;38438:444;38838:5;38802:3;:12;;38826:1;38815:8;:12;38802:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;38865:5;38858:12;;;38197:692;;;;;;:::o;59521:404::-;59615:1;59601:16;;:2;:16;;;;59593:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;59674:16;59682:7;59674;:16::i;:::-;59673:17;59665:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;59736:45;59765:1;59769:2;59773:7;59736:20;:45::i;:::-;59794:30;59816:7;59794:13;:17;59808:2;59794:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;59837:29;59854:7;59863:2;59837:12;:16;;:29;;;;;:::i;:::-;;59909:7;59905:2;59884:33;;59901:1;59884:33;;;;;;;;;;;;59521:404;;:::o;19298:422::-;19358:4;19566:12;19677:7;19665:20;19657:28;;19711:1;19704:4;:8;19697:15;;;19298:422;;;:::o;22216:195::-;22319:12;22351:52;22373:6;22381:4;22387:1;22390:12;22351:21;:52::i;:::-;22344:59;;22216:195;;;;;:::o;30499:129::-;30572:4;30619:1;30596:3;:12;;:19;30609:5;30596:19;;;;;;;;;;;;:24;;30589:31;;30499:129;;;;:::o;23268:530::-;23395:12;23453:5;23428:21;:30;;23420:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;23520:18;23531:6;23520:10;:18::i;:::-;23512:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;23646:12;23660:23;23687:6;:11;;23707:5;23715:4;23687:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23645:75;;;;23738:52;23756:7;23765:10;23777:12;23738:17;:52::i;:::-;23731:59;;;;23268:530;;;;;;:::o;25808:742::-;25923:12;25952:7;25948:595;;;25983:10;25976:17;;;;25948:595;26117:1;26097:10;:17;:21;26093:439;;;26360:10;26354:17;26421:15;26408:10;26404:2;26400:19;26393:44;26308:148;26503:12;26496:20;;;;;;;;;;;:::i;:::-;;;;;;;;25808:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:260::-;;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:52;5116:7;5107:6;5096:9;5092:22;5072:52;:::i;:::-;5062:62;;5018:116;4946:195;;;;:::o;5147:282::-;;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5281:1;5278;5271:12;5233:2;5324:1;5349:63;5404:7;5395:6;5384:9;5380:22;5349:63;:::i;:::-;5339:73;;5295:127;5223:206;;;;:::o;5435:375::-;;5553:2;5541:9;5532:7;5528:23;5524:32;5521:2;;;5569:1;5566;5559:12;5521:2;5640:1;5629:9;5625:17;5612:31;5670:18;5662:6;5659:30;5656:2;;;5702:1;5699;5692:12;5656:2;5730:63;5785:7;5776:6;5765:9;5761:22;5730:63;:::i;:::-;5720:73;;5583:220;5511:299;;;;:::o;5816:262::-;;5924:2;5912:9;5903:7;5899:23;5895:32;5892:2;;;5940:1;5937;5930:12;5892:2;5983:1;6008:53;6053:7;6044:6;6033:9;6029:22;6008:53;:::i;:::-;5998:63;;5954:117;5882:196;;;;:::o;6084:179::-;;6174:46;6216:3;6208:6;6174:46;:::i;:::-;6252:4;6247:3;6243:14;6229:28;;6164:99;;;;:::o;6269:142::-;6372:32;6398:5;6372:32;:::i;:::-;6367:3;6360:45;6350:61;;:::o;6417:118::-;6504:24;6522:5;6504:24;:::i;:::-;6499:3;6492:37;6482:53;;:::o;6571:732::-;;6719:54;6767:5;6719:54;:::i;:::-;6789:86;6868:6;6863:3;6789:86;:::i;:::-;6782:93;;6899:56;6949:5;6899:56;:::i;:::-;6978:7;7009:1;6994:284;7019:6;7016:1;7013:13;6994:284;;;7095:6;7089:13;7122:63;7181:3;7166:13;7122:63;:::i;:::-;7115:70;;7208:60;7261:6;7208:60;:::i;:::-;7198:70;;7054:224;7041:1;7038;7034:9;7029:14;;6994:284;;;6998:14;7294:3;7287:10;;6695:608;;;;;;;:::o;7309:109::-;7390:21;7405:5;7390:21;:::i;:::-;7385:3;7378:34;7368:50;;:::o;7424:360::-;;7538:38;7570:5;7538:38;:::i;:::-;7592:70;7655:6;7650:3;7592:70;:::i;:::-;7585:77;;7671:52;7716:6;7711:3;7704:4;7697:5;7693:16;7671:52;:::i;:::-;7748:29;7770:6;7748:29;:::i;:::-;7743:3;7739:39;7732:46;;7514:270;;;;;:::o;7790:373::-;;7922:38;7954:5;7922:38;:::i;:::-;7976:88;8057:6;8052:3;7976:88;:::i;:::-;7969:95;;8073:52;8118:6;8113:3;8106:4;8099:5;8095:16;8073:52;:::i;:::-;8150:6;8145:3;8141:16;8134:23;;7898:265;;;;;:::o;8169:364::-;;8285:39;8318:5;8285:39;:::i;:::-;8340:71;8404:6;8399:3;8340:71;:::i;:::-;8333:78;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:29;8519:6;8497:29;:::i;:::-;8492:3;8488:39;8481:46;;8261:272;;;;;:::o;8539:377::-;;8673:39;8706:5;8673:39;:::i;:::-;8728:89;8810:6;8805:3;8728:89;:::i;:::-;8721:96;;8826:52;8871:6;8866:3;8859:4;8852:5;8848:16;8826:52;:::i;:::-;8903:6;8898:3;8894:16;8887:23;;8649:267;;;;;:::o;8946:937::-;;9068:5;9062:12;9105:1;9094:9;9090:17;9121:1;9116:281;;;;9411:1;9406:471;;;;9083:794;;9116:281;9206:4;9202:1;9191:9;9187:17;9183:28;9231:71;9295:6;9290:3;9231:71;:::i;:::-;9224:78;;9346:4;9342:9;9331;9327:25;9322:3;9315:38;9382:4;9377:3;9373:14;9366:21;;9123:274;9116:281;;9406:471;9487:1;9476:9;9472:17;9509:71;9573:6;9568:3;9509:71;:::i;:::-;9502:78;;9608:38;9640:5;9608:38;:::i;:::-;9668:1;9682:154;9696:6;9693:1;9690:13;9682:154;;;9770:7;9764:14;9760:1;9755:3;9751:11;9744:35;9820:1;9811:7;9807:15;9796:26;;9718:4;9715:1;9711:12;9706:17;;9682:154;;;9865:1;9860:3;9856:11;9849:18;;9413:464;;;9083:794;;9035:848;;;;;:::o;9889:366::-;;10052:67;10116:2;10111:3;10052:67;:::i;:::-;10045:74;;10149:34;10145:1;10140:3;10136:11;10129:55;10215:4;10210:2;10205:3;10201:12;10194:26;10246:2;10241:3;10237:12;10230:19;;10035:220;;;:::o;10261:382::-;;10424:67;10488:2;10483:3;10424:67;:::i;:::-;10417:74;;10521:34;10517:1;10512:3;10508:11;10501:55;10587:20;10582:2;10577:3;10573:12;10566:42;10634:2;10629:3;10625:12;10618:19;;10407:236;;;:::o;10649:370::-;;10812:67;10876:2;10871:3;10812:67;:::i;:::-;10805:74;;10909:34;10905:1;10900:3;10896:11;10889:55;10975:8;10970:2;10965:3;10961:12;10954:30;11010:2;11005:3;11001:12;10994:19;;10795:224;;;:::o;11025:326::-;;11188:67;11252:2;11247:3;11188:67;:::i;:::-;11181:74;;11285:30;11281:1;11276:3;11272:11;11265:51;11342:2;11337:3;11333:12;11326:19;;11171:180;;;:::o;11357:325::-;;11520:67;11584:2;11579:3;11520:67;:::i;:::-;11513:74;;11617:29;11613:1;11608:3;11604:11;11597:50;11673:2;11668:3;11664:12;11657:19;;11503:179;;;:::o;11688:330::-;;11851:67;11915:2;11910:3;11851:67;:::i;:::-;11844:74;;11948:34;11944:1;11939:3;11935:11;11928:55;12009:2;12004:3;12000:12;11993:19;;11834:184;;;:::o;12024:368::-;;12187:67;12251:2;12246:3;12187:67;:::i;:::-;12180:74;;12284:34;12280:1;12275:3;12271:11;12264:55;12350:6;12345:2;12340:3;12336:12;12329:28;12383:2;12378:3;12374:12;12367:19;;12170:222;;;:::o;12398:323::-;;12561:67;12625:2;12620:3;12561:67;:::i;:::-;12554:74;;12658:27;12654:1;12649:3;12645:11;12638:48;12712:2;12707:3;12703:12;12696:19;;12544:177;;;:::o;12727:329::-;;12890:67;12954:2;12949:3;12890:67;:::i;:::-;12883:74;;12987:33;12983:1;12978:3;12974:11;12967:54;13047:2;13042:3;13038:12;13031:19;;12873:183;;;:::o;13062:328::-;;13225:67;13289:2;13284:3;13225:67;:::i;:::-;13218:74;;13322:32;13318:1;13313:3;13309:11;13302:53;13381:2;13376:3;13372:12;13365:19;;13208:182;;;:::o;13396:370::-;;13559:67;13623:2;13618:3;13559:67;:::i;:::-;13552:74;;13656:34;13652:1;13647:3;13643:11;13636:55;13722:8;13717:2;13712:3;13708:12;13701:30;13757:2;13752:3;13748:12;13741:19;;13542:224;;;:::o;13772:376::-;;13935:67;13999:2;13994:3;13935:67;:::i;:::-;13928:74;;14032:34;14028:1;14023:3;14019:11;14012:55;14098:14;14093:2;14088:3;14084:12;14077:36;14139:2;14134:3;14130:12;14123:19;;13918:230;;;:::o;14154:365::-;;14317:67;14381:2;14376:3;14317:67;:::i;:::-;14310:74;;14414:34;14410:1;14405:3;14401:11;14394:55;14480:3;14475:2;14470:3;14466:12;14459:25;14510:2;14505:3;14501:12;14494:19;;14300:219;;;:::o;14525:388::-;;14688:67;14752:2;14747:3;14688:67;:::i;:::-;14681:74;;14785:34;14781:1;14776:3;14772:11;14765:55;14851:26;14846:2;14841:3;14837:12;14830:48;14904:2;14899:3;14895:12;14888:19;;14671:242;;;:::o;14919:374::-;;15082:67;15146:2;15141:3;15082:67;:::i;:::-;15075:74;;15179:34;15175:1;15170:3;15166:11;15159:55;15245:12;15240:2;15235:3;15231:12;15224:34;15284:2;15279:3;15275:12;15268:19;;15065:228;;;:::o;15299:323::-;;15462:67;15526:2;15521:3;15462:67;:::i;:::-;15455:74;;15559:27;15555:1;15550:3;15546:11;15539:48;15613:2;15608:3;15604:12;15597:19;;15445:177;;;:::o;15628:383::-;;15791:67;15855:2;15850:3;15791:67;:::i;:::-;15784:74;;15888:34;15884:1;15879:3;15875:11;15868:55;15954:21;15949:2;15944:3;15940:12;15933:43;16002:2;15997:3;15993:12;15986:19;;15774:237;;;:::o;16017:368::-;;16180:67;16244:2;16239:3;16180:67;:::i;:::-;16173:74;;16277:34;16273:1;16268:3;16264:11;16257:55;16343:6;16338:2;16333:3;16329:12;16322:28;16376:2;16371:3;16367:12;16360:19;;16163:222;;;:::o;16391:366::-;;16554:67;16618:2;16613:3;16554:67;:::i;:::-;16547:74;;16651:34;16647:1;16642:3;16638:11;16631:55;16717:4;16712:2;16707:3;16703:12;16696:26;16748:2;16743:3;16739:12;16732:19;;16537:220;;;:::o;16763:330::-;;16926:67;16990:2;16985:3;16926:67;:::i;:::-;16919:74;;17023:34;17019:1;17014:3;17010:11;17003:55;17084:2;17079:3;17075:12;17068:19;;16909:184;;;:::o;17099:379::-;;17262:67;17326:2;17321:3;17262:67;:::i;:::-;17255:74;;17359:34;17355:1;17350:3;17346:11;17339:55;17425:17;17420:2;17415:3;17411:12;17404:39;17469:2;17464:3;17460:12;17453:19;;17245:233;;;:::o;17484:365::-;;17647:67;17711:2;17706:3;17647:67;:::i;:::-;17640:74;;17744:34;17740:1;17735:3;17731:11;17724:55;17810:3;17805:2;17800:3;17796:12;17789:25;17840:2;17835:3;17831:12;17824:19;;17630:219;;;:::o;17855:376::-;;18018:67;18082:2;18077:3;18018:67;:::i;:::-;18011:74;;18115:34;18111:1;18106:3;18102:11;18095:55;18181:14;18176:2;18171:3;18167:12;18160:36;18222:2;18217:3;18213:12;18206:19;;18001:230;;;:::o;18237:330::-;;18400:67;18464:2;18459:3;18400:67;:::i;:::-;18393:74;;18497:34;18493:1;18488:3;18484:11;18477:55;18558:2;18553:3;18549:12;18542:19;;18383:184;;;:::o;18573:373::-;;18736:67;18800:2;18795:3;18736:67;:::i;:::-;18729:74;;18833:34;18829:1;18824:3;18820:11;18813:55;18899:11;18894:2;18889:3;18885:12;18878:33;18937:2;18932:3;18928:12;18921:19;;18719:227;;;:::o;18952:379::-;;19115:67;19179:2;19174:3;19115:67;:::i;:::-;19108:74;;19212:34;19208:1;19203:3;19199:11;19192:55;19278:17;19273:2;19268:3;19264:12;19257:39;19322:2;19317:3;19313:12;19306:19;;19098:233;;;:::o;19337:365::-;;19500:67;19564:2;19559:3;19500:67;:::i;:::-;19493:74;;19597:34;19593:1;19588:3;19584:11;19577:55;19663:3;19658:2;19653:3;19649:12;19642:25;19693:2;19688:3;19684:12;19677:19;;19483:219;;;:::o;19708:320::-;;19871:67;19935:2;19930:3;19871:67;:::i;:::-;19864:74;;19968:24;19964:1;19959:3;19955:11;19948:45;20019:2;20014:3;20010:12;20003:19;;19854:174;;;:::o;20034:381::-;;20197:67;20261:2;20256:3;20197:67;:::i;:::-;20190:74;;20294:34;20290:1;20285:3;20281:11;20274:55;20360:19;20355:2;20350:3;20346:12;20339:41;20406:2;20401:3;20397:12;20390:19;;20180:235;;;:::o;20421:327::-;;20584:67;20648:2;20643:3;20584:67;:::i;:::-;20577:74;;20681:31;20677:1;20672:3;20668:11;20661:52;20739:2;20734:3;20730:12;20723:19;;20567:181;;;:::o;20754:372::-;;20917:67;20981:2;20976:3;20917:67;:::i;:::-;20910:74;;21014:34;21010:1;21005:3;21001:11;20994:55;21080:10;21075:2;21070:3;21066:12;21059:32;21117:2;21112:3;21108:12;21101:19;;20900:226;;;:::o;21132:108::-;21209:24;21227:5;21209:24;:::i;:::-;21204:3;21197:37;21187:53;;:::o;21246:118::-;21333:24;21351:5;21333:24;:::i;:::-;21328:3;21321:37;21311:53;;:::o;21370:271::-;;21522:93;21611:3;21602:6;21522:93;:::i;:::-;21515:100;;21632:3;21625:10;;21504:137;;;;:::o;21647:435::-;;21849:95;21940:3;21931:6;21849:95;:::i;:::-;21842:102;;21961:95;22052:3;22043:6;21961:95;:::i;:::-;21954:102;;22073:3;22066:10;;21831:251;;;;;:::o;22088:222::-;;22219:2;22208:9;22204:18;22196:26;;22232:71;22300:1;22289:9;22285:17;22276:6;22232:71;:::i;:::-;22186:124;;;;:::o;22316:672::-;;22565:3;22554:9;22550:19;22542:27;;22579:87;22663:1;22652:9;22648:17;22639:6;22579:87;:::i;:::-;22676:72;22744:2;22733:9;22729:18;22720:6;22676:72;:::i;:::-;22758;22826:2;22815:9;22811:18;22802:6;22758:72;:::i;:::-;22877:9;22871:4;22867:20;22862:2;22851:9;22847:18;22840:48;22905:76;22976:4;22967:6;22905:76;:::i;:::-;22897:84;;22532:456;;;;;;;:::o;22994:373::-;;23175:2;23164:9;23160:18;23152:26;;23224:9;23218:4;23214:20;23210:1;23199:9;23195:17;23188:47;23252:108;23355:4;23346:6;23252:108;:::i;:::-;23244:116;;23142:225;;;;:::o;23373:210::-;;23498:2;23487:9;23483:18;23475:26;;23511:65;23573:1;23562:9;23558:17;23549:6;23511:65;:::i;:::-;23465:118;;;;:::o;23589:313::-;;23740:2;23729:9;23725:18;23717:26;;23789:9;23783:4;23779:20;23775:1;23764:9;23760:17;23753:47;23817:78;23890:4;23881:6;23817:78;:::i;:::-;23809:86;;23707:195;;;;:::o;23908:307::-;;24056:2;24045:9;24041:18;24033:26;;24105:9;24099:4;24095:20;24091:1;24080:9;24076:17;24069:47;24133:75;24203:4;24194:6;24133:75;:::i;:::-;24125:83;;24023:192;;;;:::o;24221:419::-;;24425:2;24414:9;24410:18;24402:26;;24474:9;24468:4;24464:20;24460:1;24449:9;24445:17;24438:47;24502:131;24628:4;24502:131;:::i;:::-;24494:139;;24392:248;;;:::o;24646:419::-;;24850:2;24839:9;24835:18;24827:26;;24899:9;24893:4;24889:20;24885:1;24874:9;24870:17;24863:47;24927:131;25053:4;24927:131;:::i;:::-;24919:139;;24817:248;;;:::o;25071:419::-;;25275:2;25264:9;25260:18;25252:26;;25324:9;25318:4;25314:20;25310:1;25299:9;25295:17;25288:47;25352:131;25478:4;25352:131;:::i;:::-;25344:139;;25242:248;;;:::o;25496:419::-;;25700:2;25689:9;25685:18;25677:26;;25749:9;25743:4;25739:20;25735:1;25724:9;25720:17;25713:47;25777:131;25903:4;25777:131;:::i;:::-;25769:139;;25667:248;;;:::o;25921:419::-;;26125:2;26114:9;26110:18;26102:26;;26174:9;26168:4;26164:20;26160:1;26149:9;26145:17;26138:47;26202:131;26328:4;26202:131;:::i;:::-;26194:139;;26092:248;;;:::o;26346:419::-;;26550:2;26539:9;26535:18;26527:26;;26599:9;26593:4;26589:20;26585:1;26574:9;26570:17;26563:47;26627:131;26753:4;26627:131;:::i;:::-;26619:139;;26517:248;;;:::o;26771:419::-;;26975:2;26964:9;26960:18;26952:26;;27024:9;27018:4;27014:20;27010:1;26999:9;26995:17;26988:47;27052:131;27178:4;27052:131;:::i;:::-;27044:139;;26942:248;;;:::o;27196:419::-;;27400:2;27389:9;27385:18;27377:26;;27449:9;27443:4;27439:20;27435:1;27424:9;27420:17;27413:47;27477:131;27603:4;27477:131;:::i;:::-;27469:139;;27367:248;;;:::o;27621:419::-;;27825:2;27814:9;27810:18;27802:26;;27874:9;27868:4;27864:20;27860:1;27849:9;27845:17;27838:47;27902:131;28028:4;27902:131;:::i;:::-;27894:139;;27792:248;;;:::o;28046:419::-;;28250:2;28239:9;28235:18;28227:26;;28299:9;28293:4;28289:20;28285:1;28274:9;28270:17;28263:47;28327:131;28453:4;28327:131;:::i;:::-;28319:139;;28217:248;;;:::o;28471:419::-;;28675:2;28664:9;28660:18;28652:26;;28724:9;28718:4;28714:20;28710:1;28699:9;28695:17;28688:47;28752:131;28878:4;28752:131;:::i;:::-;28744:139;;28642:248;;;:::o;28896:419::-;;29100:2;29089:9;29085:18;29077:26;;29149:9;29143:4;29139:20;29135:1;29124:9;29120:17;29113:47;29177:131;29303:4;29177:131;:::i;:::-;29169:139;;29067:248;;;:::o;29321:419::-;;29525:2;29514:9;29510:18;29502:26;;29574:9;29568:4;29564:20;29560:1;29549:9;29545:17;29538:47;29602:131;29728:4;29602:131;:::i;:::-;29594:139;;29492:248;;;:::o;29746:419::-;;29950:2;29939:9;29935:18;29927:26;;29999:9;29993:4;29989:20;29985:1;29974:9;29970:17;29963:47;30027:131;30153:4;30027:131;:::i;:::-;30019:139;;29917:248;;;:::o;30171:419::-;;30375:2;30364:9;30360:18;30352:26;;30424:9;30418:4;30414:20;30410:1;30399:9;30395:17;30388:47;30452:131;30578:4;30452:131;:::i;:::-;30444:139;;30342:248;;;:::o;30596:419::-;;30800:2;30789:9;30785:18;30777:26;;30849:9;30843:4;30839:20;30835:1;30824:9;30820:17;30813:47;30877:131;31003:4;30877:131;:::i;:::-;30869:139;;30767:248;;;:::o;31021:419::-;;31225:2;31214:9;31210:18;31202:26;;31274:9;31268:4;31264:20;31260:1;31249:9;31245:17;31238:47;31302:131;31428:4;31302:131;:::i;:::-;31294:139;;31192:248;;;:::o;31446:419::-;;31650:2;31639:9;31635:18;31627:26;;31699:9;31693:4;31689:20;31685:1;31674:9;31670:17;31663:47;31727:131;31853:4;31727:131;:::i;:::-;31719:139;;31617:248;;;:::o;31871:419::-;;32075:2;32064:9;32060:18;32052:26;;32124:9;32118:4;32114:20;32110:1;32099:9;32095:17;32088:47;32152:131;32278:4;32152:131;:::i;:::-;32144:139;;32042:248;;;:::o;32296:419::-;;32500:2;32489:9;32485:18;32477:26;;32549:9;32543:4;32539:20;32535:1;32524:9;32520:17;32513:47;32577:131;32703:4;32577:131;:::i;:::-;32569:139;;32467:248;;;:::o;32721:419::-;;32925:2;32914:9;32910:18;32902:26;;32974:9;32968:4;32964:20;32960:1;32949:9;32945:17;32938:47;33002:131;33128:4;33002:131;:::i;:::-;32994:139;;32892:248;;;:::o;33146:419::-;;33350:2;33339:9;33335:18;33327:26;;33399:9;33393:4;33389:20;33385:1;33374:9;33370:17;33363:47;33427:131;33553:4;33427:131;:::i;:::-;33419:139;;33317:248;;;:::o;33571:419::-;;33775:2;33764:9;33760:18;33752:26;;33824:9;33818:4;33814:20;33810:1;33799:9;33795:17;33788:47;33852:131;33978:4;33852:131;:::i;:::-;33844:139;;33742:248;;;:::o;33996:419::-;;34200:2;34189:9;34185:18;34177:26;;34249:9;34243:4;34239:20;34235:1;34224:9;34220:17;34213:47;34277:131;34403:4;34277:131;:::i;:::-;34269:139;;34167:248;;;:::o;34421:419::-;;34625:2;34614:9;34610:18;34602:26;;34674:9;34668:4;34664:20;34660:1;34649:9;34645:17;34638:47;34702:131;34828:4;34702:131;:::i;:::-;34694:139;;34592:248;;;:::o;34846:419::-;;35050:2;35039:9;35035:18;35027:26;;35099:9;35093:4;35089:20;35085:1;35074:9;35070:17;35063:47;35127:131;35253:4;35127:131;:::i;:::-;35119:139;;35017:248;;;:::o;35271:419::-;;35475:2;35464:9;35460:18;35452:26;;35524:9;35518:4;35514:20;35510:1;35499:9;35495:17;35488:47;35552:131;35678:4;35552:131;:::i;:::-;35544:139;;35442:248;;;:::o;35696:419::-;;35900:2;35889:9;35885:18;35877:26;;35949:9;35943:4;35939:20;35935:1;35924:9;35920:17;35913:47;35977:131;36103:4;35977:131;:::i;:::-;35969:139;;35867:248;;;:::o;36121:419::-;;36325:2;36314:9;36310:18;36302:26;;36374:9;36368:4;36364:20;36360:1;36349:9;36345:17;36338:47;36402:131;36528:4;36402:131;:::i;:::-;36394:139;;36292:248;;;:::o;36546:419::-;;36750:2;36739:9;36735:18;36727:26;;36799:9;36793:4;36789:20;36785:1;36774:9;36770:17;36763:47;36827:131;36953:4;36827:131;:::i;:::-;36819:139;;36717:248;;;:::o;36971:419::-;;37175:2;37164:9;37160:18;37152:26;;37224:9;37218:4;37214:20;37210:1;37199:9;37195:17;37188:47;37252:131;37378:4;37252:131;:::i;:::-;37244:139;;37142:248;;;:::o;37396:222::-;;37527:2;37516:9;37512:18;37504:26;;37540:71;37608:1;37597:9;37593:17;37584:6;37540:71;:::i;:::-;37494:124;;;;:::o;37624:278::-;;37690:2;37684:9;37674:19;;37732:4;37724:6;37720:17;37839:6;37827:10;37824:22;37803:18;37791:10;37788:34;37785:62;37782:2;;;37850:13;;:::i;:::-;37782:2;37885:10;37881:2;37874:22;37664:238;;;;:::o;37908:326::-;;38059:18;38051:6;38048:30;38045:2;;;38081:13;;:::i;:::-;38045:2;38161:4;38157:9;38150:4;38142:6;38138:17;38134:33;38126:41;;38222:4;38216;38212:15;38204:23;;37974:260;;;:::o;38240:327::-;;38392:18;38384:6;38381:30;38378:2;;;38414:13;;:::i;:::-;38378:2;38494:4;38490:9;38483:4;38475:6;38471:17;38467:33;38459:41;;38555:4;38549;38545:15;38537:23;;38307:260;;;:::o;38573:132::-;;38663:3;38655:11;;38693:4;38688:3;38684:14;38676:22;;38645:60;;;:::o;38711:141::-;;38783:3;38775:11;;38806:3;38803:1;38796:14;38840:4;38837:1;38827:18;38819:26;;38765:87;;;:::o;38858:114::-;;38959:5;38953:12;38943:22;;38932:40;;;:::o;38978:98::-;;39063:5;39057:12;39047:22;;39036:40;;;:::o;39082:99::-;;39168:5;39162:12;39152:22;;39141:40;;;:::o;39187:113::-;;39289:4;39284:3;39280:14;39272:22;;39262:38;;;:::o;39306:184::-;;39439:6;39434:3;39427:19;39479:4;39474:3;39470:14;39455:29;;39417:73;;;;:::o;39496:168::-;;39613:6;39608:3;39601:19;39653:4;39648:3;39644:14;39629:29;;39591:73;;;;:::o;39670:147::-;;39808:3;39793:18;;39783:34;;;;:::o;39823:169::-;;39941:6;39936:3;39929:19;39981:4;39976:3;39972:14;39957:29;;39919:73;;;;:::o;39998:148::-;;40137:3;40122:18;;40112:34;;;;:::o;40152:96::-;;40218:24;40236:5;40218:24;:::i;:::-;40207:35;;40197:51;;;:::o;40254:104::-;;40328:24;40346:5;40328:24;:::i;:::-;40317:35;;40307:51;;;:::o;40364:90::-;;40441:5;40434:13;40427:21;40416:32;;40406:48;;;:::o;40460:149::-;;40536:66;40529:5;40525:78;40514:89;;40504:105;;;:::o;40615:126::-;;40692:42;40685:5;40681:54;40670:65;;40660:81;;;:::o;40747:77::-;;40813:5;40802:16;;40792:32;;;:::o;40830:154::-;40914:6;40909:3;40904;40891:30;40976:1;40967:6;40962:3;40958:16;40951:27;40881:103;;;:::o;40990:307::-;41058:1;41068:113;41082:6;41079:1;41076:13;41068:113;;;41167:1;41162:3;41158:11;41152:18;41148:1;41143:3;41139:11;41132:39;41104:2;41101:1;41097:10;41092:15;;41068:113;;;41199:6;41196:1;41193:13;41190:2;;;41279:1;41270:6;41265:3;41261:16;41254:27;41190:2;41039:258;;;;:::o;41303:48::-;41336:9;41357:102;;41449:2;41445:7;41440:2;41433:5;41429:14;41425:28;41415:38;;41405:54;;;:::o;41465:122::-;41538:24;41556:5;41538:24;:::i;:::-;41531:5;41528:35;41518:2;;41577:1;41574;41567:12;41518:2;41508:79;:::o;41593:116::-;41663:21;41678:5;41663:21;:::i;:::-;41656:5;41653:32;41643:2;;41699:1;41696;41689:12;41643:2;41633:76;:::o;41715:120::-;41787:23;41804:5;41787:23;:::i;:::-;41780:5;41777:34;41767:2;;41825:1;41822;41815:12;41767:2;41757:78;:::o;41841:122::-;41914:24;41932:5;41914:24;:::i;:::-;41907:5;41904:35;41894:2;;41953:1;41950;41943:12;41894:2;41884:79;:::o

Swarm Source

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