ETH Price: $3,414.95 (-1.20%)
Gas: 9 Gwei

Token

Plodding Pirates (PPS)
 

Overview

Max Total Supply

1,883 PPS

Holders

737

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
jameyprice.eth
Balance
4 PPS
0x8DE0F06c77d9683e6cF5e46CE7E283777ad3AbD6
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Plodding Pirates is a family of TWO NFT collections. It has a 10,000-unit limited NFT collection for the discerning swashbuckler.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PloddingPirates

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

// Welcome to Booty Bay, ye scurvy sea dog!
// Plodding Pirates is a 10,000-unit limited NFT collection for the discerning swashbuckler. Ghoulish bilge rats, ghostly buccaneers and betentacled marauders await you on the seven seas. Savvy?
// Come say YarARRGH ->  https://discord.gg/arCDND7HuW

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

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

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

pragma solidity >=0.6.0 <0.8.0;

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

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

pragma solidity >=0.6.2 <0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity >=0.6.2 <0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

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

pragma solidity >=0.6.2 <0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

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

pragma solidity >=0.6.0 <0.8.0;

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

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

pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity >=0.6.2 <0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

            bytes32 lastvalue = set._values[lastIndex];

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

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

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

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

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

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

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

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

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

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

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

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

    // UintSet

    struct UintSet {
        Set _inner;
    }

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

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

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

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

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

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

pragma solidity >=0.6.0 <0.8.0;

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

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

    struct Map {
        // Storage of map keys and values
        MapEntry[] _entries;
        // Position of the entry defined by a key in the `entries` array, plus 1
        // because index 0 means a key is not in the map.
        mapping(bytes32 => uint256) _indexes;
    }

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

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

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

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

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

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

            MapEntry storage lastEntry = map._entries[lastIndex];

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

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

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

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

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

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

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

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

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

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

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

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

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

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

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

pragma solidity >=0.6.0 <0.8.0;

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

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

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

pragma solidity >=0.6.0 <0.8.0;

/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */

contract ERC721 is
    Context,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
{
    using SafeMath for uint256;
    using Address for address;
    using EnumerableSet for EnumerableSet.UintSet;
    using EnumerableMap for EnumerableMap.UintToAddressMap;
    using Strings for uint256;

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

    // Base URI
    string private _baseURI;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

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

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

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

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

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

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(tokenId);

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

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

pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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


pragma solidity ^0.7.0;
pragma abicoder v2;

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

    string public Pirate_Provenance = ""; 
    string public LICENSE_TEXT = "";
    bool licenseLocked = false;
    uint256 public PiratePrice = 25000000000000000; // 0.025 ETH
    uint256 public constant maxPiratePurchase = 30;
    uint256 public constant MAX_PIRATES = 10000;
    bool public saleIsActive = false;
    uint256 public PirateReserve = 100; // Reserve 100 Pirates for team & community (Used in giveaways, events etc...) 
    event licenseisLocked(string _licenseText);


    constructor() ERC721("Plodding Pirates", "PPS") {
 
    }
    
        
        
       function withdraw() external {
        require(
                msg.sender == 0xe1Dad4ae4BFD1d53D234303655bfc44982D46353 ||
                msg.sender == 0x672c36FA22029369490BB5e33e6d16a7E1309c1e ||
                msg.sender == 0x59cE6Be860F8E0A4d8880a0AE39Bd0bc63B82672 
        );

        uint256 bal = address(this).balance;

        uint256 FortyFive = bal.mul(45).div(100);
        payable(address(0xe1Dad4ae4BFD1d53D234303655bfc44982D46353)).call{
            value: FortyFive
        }("");

        uint256 FortyFive1 = bal.mul(45).div(100);
        payable(address(0x672c36FA22029369490BB5e33e6d16a7E1309c1e)).call{
            value: FortyFive1
        }("");

        uint256 Ten = bal.mul(10).div(100);
        payable(address(0x59cE6Be860F8E0A4d8880a0AE39Bd0bc63B82672)).call{
            value: Ten
        }("");
    }

    function emergencyWithdraw() external onlyOwner {
        require(msg.sender == 0xe1Dad4ae4BFD1d53D234303655bfc44982D46353);
        (bool success, ) = payable(0xe1Dad4ae4BFD1d53D234303655bfc44982D46353)
            .call{value: address(this).balance}("");
        require(success);
    }

    function reservePirates(address _to, uint256 _reserveAmount)
        public
        onlyOwner
    {
        uint256 supply = totalSupply();
        require(
            _reserveAmount > 0 && _reserveAmount <= PirateReserve,
            "Not enough reserve left for team"
        );
        for (uint256 i = 0; i < _reserveAmount; i++) {
            _safeMint(_to, supply + i);
        }
        PirateReserve = PirateReserve.sub(_reserveAmount);
    }

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

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

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

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


    
    // Returns the license for tokens
    function tokenLicense(uint256 _id) public view returns (string memory) {
        require(_id < totalSupply(), "CHOOSE A PIRATE 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 mintPirate(uint256 numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint a Pirate");
        require(
            numberOfTokens > 0 && numberOfTokens <= maxPiratePurchase,
            "Can only mint 30 tokens at a time"
        );
        require(
            totalSupply().add(numberOfTokens) <= MAX_PIRATES,
            "Purchase would exceed max supply of Pirates"
        );
        require(
            msg.value >= PiratePrice.mul(numberOfTokens),
            "Ether value sent is not correct"
        );

        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 mintIndex = totalSupply();
            if (totalSupply() < MAX_PIRATES) {
                _safeMint(msg.sender, mintIndex);
            }
        }
    }

    function setPiratePrice(uint256 newPrice) public onlyOwner {
        PiratePrice = newPrice;
    }
    receive() external payable {}
}

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":"LICENSE_TEXT","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PIRATES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PiratePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PirateReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Pirate_Provenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_license","type":"string"}],"name":"changeLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxPiratePurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintPirate","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":"reservePirates","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":"uint256","name":"newPrice","type":"uint256"}],"name":"setPiratePrice","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405260405180602001604052806000815250600b90805190602001906200002b9291906200033f565b5060405180602001604052806000815250600c9080519060200190620000539291906200033f565b506000600d60006101000a81548160ff0219169083151502179055506658d15e17628000600e556000600f60006101000a81548160ff0219169083151502179055506064601055348015620000a757600080fd5b506040518060400160405280601081526020017f506c6f6464696e672050697261746573000000000000000000000000000000008152506040518060400160405280600381526020017f50505300000000000000000000000000000000000000000000000000000000008152506200012c6301ffc9a760e01b6200025f60201b60201c565b8160069080519060200190620001449291906200033f565b5080600790805190602001906200015d9291906200033f565b50620001766380ac58cd60e01b6200025f60201b60201c565b6200018e635b5e139f60e01b6200025f60201b60201c565b620001a663780e9d6360e01b6200025f60201b60201c565b50506000620001ba6200033760201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200046a565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620002cb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c29062000437565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620003775760008555620003c3565b82601f106200039257805160ff1916838001178555620003c3565b82800160010185558215620003c3579182015b82811115620003c2578251825591602001919060010190620003a5565b5b509050620003d29190620003d6565b5090565b5b80821115620003f1576000816000905550600101620003d7565b5090565b600062000404601c8362000459565b91507f4552433136353a20696e76616c696420696e74657266616365206964000000006000830152602082019050919050565b600060208201905081810360008301526200045281620003f5565b9050919050565b600082825260208201905092915050565b614e31806200047a6000396000f3fe6080604052600436106102345760003560e01c806370a082311161012e578063bf4702fc116100ab578063eb8d24441161006f578063eb8d244414610832578063edca3f171461085d578063f28e2de614610888578063f2fde38b146108a4578063f6c8bd5c146108cd5761023b565b8063bf4702fc1461074d578063c87b56dd14610764578063d9b137b2146107a1578063db2e21bc146107de578063e985e9c5146107f55761023b565b80639c3e72bd116100f25780639c3e72bd1461067c578063a22cb465146106a7578063a7104510146106d0578063b09904b5146106fb578063b88d4fde146107245761023b565b806370a0823114610595578063715018a6146105d25780638462151c146105e95780638da5cb5b1461062657806395d89b41146106515761023b565b80633ccfd60b116101bc5780636352211e116101805780636352211e146104b05780636576cdc9146104ed57806365c1ef4c14610516578063688abc90146105415780636c0360eb1461056a5761023b565b80633ccfd60b146103df5780634069a6dd146103f657806342842e0e146104215780634f6ccce71461044a57806355f804b3146104875761023b565b80631096952311610203578063109695231461030e57806318160ddd1461033757806323b872dd146103625780632f745c591461038b57806334918dfd146103c85761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e55761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613903565b6108f8565b6040516102749190614702565b60405180910390f35b34801561028957600080fd5b5061029261095f565b60405161029f919061471d565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613996565b610a01565b6040516102dc9190614679565b60405180910390f35b3480156102f157600080fd5b5061030c600480360381019061030791906138c7565b610a86565b005b34801561031a57600080fd5b5061033560048036038101906103309190613955565b610b9e565b005b34801561034357600080fd5b5061034c610c34565b6040516103599190614b21565b60405180910390f35b34801561036e57600080fd5b50610389600480360381019061038491906137c1565b610c45565b005b34801561039757600080fd5b506103b260048036038101906103ad91906138c7565b610ca5565b6040516103bf9190614b21565b60405180910390f35b3480156103d457600080fd5b506103dd610d00565b005b3480156103eb57600080fd5b506103f4610da8565b005b34801561040257600080fd5b5061040b61108b565b6040516104189190614b21565b60405180910390f35b34801561042d57600080fd5b50610448600480360381019061044391906137c1565b611091565b005b34801561045657600080fd5b50610471600480360381019061046c9190613996565b6110b1565b60405161047e9190614b21565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a99190613955565b6110d4565b005b3480156104bc57600080fd5b506104d760048036038101906104d29190613996565b61115c565b6040516104e49190614679565b60405180910390f35b3480156104f957600080fd5b50610514600480360381019061050f91906138c7565b611193565b005b34801561052257600080fd5b5061052b6112b1565b604051610538919061471d565b60405180910390f35b34801561054d57600080fd5b5061056860048036038101906105639190613996565b61134f565b005b34801561057657600080fd5b5061057f6113d5565b60405161058c919061471d565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b7919061375c565b611477565b6040516105c99190614b21565b60405180910390f35b3480156105de57600080fd5b506105e7611536565b005b3480156105f557600080fd5b50610610600480360381019061060b919061375c565b611673565b60405161061d91906146e0565b60405180910390f35b34801561063257600080fd5b5061063b61176c565b6040516106489190614679565b60405180910390f35b34801561065d57600080fd5b50610666611796565b604051610673919061471d565b60405180910390f35b34801561068857600080fd5b50610691611838565b60405161069e919061471d565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c9919061388b565b6118d6565b005b3480156106dc57600080fd5b506106e5611a57565b6040516106f29190614b21565b60405180910390f35b34801561070757600080fd5b50610722600480360381019061071d9190613955565b611a5d565b005b34801561073057600080fd5b5061074b60048036038101906107469190613810565b611b49565b005b34801561075957600080fd5b50610762611bab565b005b34801561077057600080fd5b5061078b60048036038101906107869190613996565b611c7c565b604051610798919061471d565b60405180910390f35b3480156107ad57600080fd5b506107c860048036038101906107c39190613996565b611dff565b6040516107d5919061471d565b60405180910390f35b3480156107ea57600080fd5b506107f3611eec565b005b34801561080157600080fd5b5061081c60048036038101906108179190613785565b612041565b6040516108299190614702565b60405180910390f35b34801561083e57600080fd5b506108476120d5565b6040516108549190614702565b60405180910390f35b34801561086957600080fd5b506108726120e8565b60405161087f9190614b21565b60405180910390f35b6108a2600480360381019061089d9190613996565b6120ee565b005b3480156108b057600080fd5b506108cb60048036038101906108c6919061375c565b612287565b005b3480156108d957600080fd5b506108e2612433565b6040516108ef9190614b21565b60405180910390f35b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109f75780601f106109cc576101008083540402835291602001916109f7565b820191906000526020600020905b8154815290600101906020018083116109da57829003601f168201915b5050505050905090565b6000610a0c82612438565b610a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a42906149e1565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a918261115c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af990614aa1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b21612455565b73ffffffffffffffffffffffffffffffffffffffff161480610b505750610b4f81610b4a612455565b612041565b5b610b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8690614941565b60405180910390fd5b610b99838361245d565b505050565b610ba6612455565b73ffffffffffffffffffffffffffffffffffffffff16610bc461176c565b73ffffffffffffffffffffffffffffffffffffffff1614610c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1190614a21565b60405180910390fd5b80600b9080519060200190610c30929190613578565b5050565b6000610c406002612516565b905090565b610c56610c50612455565b8261252b565b610c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8c90614ae1565b60405180910390fd5b610ca0838383612609565b505050565b6000610cf882600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061282090919063ffffffff16565b905092915050565b610d08612455565b73ffffffffffffffffffffffffffffffffffffffff16610d2661176c565b73ffffffffffffffffffffffffffffffffffffffff1614610d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7390614a21565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b73e1dad4ae4bfd1d53d234303655bfc44982d4635373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610e35575073672c36fa22029369490bb5e33e6d16a7e1309c1e73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b80610e7f57507359ce6be860f8e0a4d8880a0ae39bd0bc63b8267273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610e8857600080fd5b60004790506000610eb66064610ea8602d8561283a90919063ffffffff16565b6128aa90919063ffffffff16565b905073e1dad4ae4bfd1d53d234303655bfc44982d4635373ffffffffffffffffffffffffffffffffffffffff1681604051610ef090614664565b60006040518083038185875af1925050503d8060008114610f2d576040519150601f19603f3d011682016040523d82523d6000602084013e610f32565b606091505b5050506000610f5e6064610f50602d8661283a90919063ffffffff16565b6128aa90919063ffffffff16565b905073672c36fa22029369490bb5e33e6d16a7e1309c1e73ffffffffffffffffffffffffffffffffffffffff1681604051610f9890614664565b60006040518083038185875af1925050503d8060008114610fd5576040519150601f19603f3d011682016040523d82523d6000602084013e610fda565b606091505b50505060006110066064610ff8600a8761283a90919063ffffffff16565b6128aa90919063ffffffff16565b90507359ce6be860f8e0a4d8880a0ae39bd0bc63b8267273ffffffffffffffffffffffffffffffffffffffff168160405161104090614664565b60006040518083038185875af1925050503d806000811461107d576040519150601f19603f3d011682016040523d82523d6000602084013e611082565b606091505b50505050505050565b600e5481565b6110ac83838360405180602001604052806000815250611b49565b505050565b6000806110c883600261290090919063ffffffff16565b50905080915050919050565b6110dc612455565b73ffffffffffffffffffffffffffffffffffffffff166110fa61176c565b73ffffffffffffffffffffffffffffffffffffffff1614611150576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114790614a21565b60405180910390fd5b6111598161292c565b50565b600061118c82604051806060016040528060298152602001614dd36029913960026129469092919063ffffffff16565b9050919050565b61119b612455565b73ffffffffffffffffffffffffffffffffffffffff166111b961176c565b73ffffffffffffffffffffffffffffffffffffffff161461120f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120690614a21565b60405180910390fd5b6000611219610c34565b905060008211801561122d57506010548211155b61126c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126390614821565b60405180910390fd5b60005b828110156112905761128384828401612965565b808060010191505061126f565b506112a68260105461298390919063ffffffff16565b601081905550505050565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113475780601f1061131c57610100808354040283529160200191611347565b820191906000526020600020905b81548152906001019060200180831161132a57829003601f168201915b505050505081565b611357612455565b73ffffffffffffffffffffffffffffffffffffffff1661137561176c565b73ffffffffffffffffffffffffffffffffffffffff16146113cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c290614a21565b60405180910390fd5b80600e8190555050565b606060098054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561146d5780601f106114425761010080835404028352916020019161146d565b820191906000526020600020905b81548152906001019060200180831161145057829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114df90614961565b60405180910390fd5b61152f600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206129d3565b9050919050565b61153e612455565b73ffffffffffffffffffffffffffffffffffffffff1661155c61176c565b73ffffffffffffffffffffffffffffffffffffffff16146115b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a990614a21565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6060600061168083611477565b905060008114156116db57600067ffffffffffffffff811180156116a357600080fd5b506040519080825280602002602001820160405280156116d25781602001602082028036833780820191505090505b50915050611767565b60008167ffffffffffffffff811180156116f457600080fd5b506040519080825280602002602001820160405280156117235781602001602082028036833780820191505090505b50905060005b828110156117605761173b8582610ca5565b82828151811061174757fe5b6020026020010181815250508080600101915050611729565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561182e5780601f106118035761010080835404028352916020019161182e565b820191906000526020600020905b81548152906001019060200180831161181157829003601f168201915b5050505050905090565b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118ce5780601f106118a3576101008083540402835291602001916118ce565b820191906000526020600020905b8154815290600101906020018083116118b157829003601f168201915b505050505081565b6118de612455565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561194c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194390614861565b60405180910390fd5b8060056000611959612455565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a06612455565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a4b9190614702565b60405180910390a35050565b60105481565b611a65612455565b73ffffffffffffffffffffffffffffffffffffffff16611a8361176c565b73ffffffffffffffffffffffffffffffffffffffff1614611ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad090614a21565b60405180910390fd5b60001515600d60009054906101000a900460ff16151514611b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2690614ac1565b60405180910390fd5b80600c9080519060200190611b45929190613578565b5050565b611b5a611b54612455565b8361252b565b611b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9090614ae1565b60405180910390fd5b611ba5848484846129e8565b50505050565b611bb3612455565b73ffffffffffffffffffffffffffffffffffffffff16611bd161176c565b73ffffffffffffffffffffffffffffffffffffffff1614611c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1e90614a21565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055507f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0600c604051611c72919061473f565b60405180910390a1565b6060611c8782612438565b611cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbd90614a61565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611d6f5780601f10611d4457610100808354040283529160200191611d6f565b820191906000526020600020905b815481529060010190602001808311611d5257829003601f168201915b505050505090506000611d806113d5565b9050600081511415611d96578192505050611dfa565b600082511115611dcb578082604051602001611db3929190614640565b60405160208183030381529060405292505050611dfa565b80611dd585612a44565b604051602001611de6929190614640565b604051602081830303815290604052925050505b919050565b6060611e09610c34565b8210611e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e41906147a1565b60405180910390fd5b600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611ee05780601f10611eb557610100808354040283529160200191611ee0565b820191906000526020600020905b815481529060010190602001808311611ec357829003601f168201915b50505050509050919050565b611ef4612455565b73ffffffffffffffffffffffffffffffffffffffff16611f1261176c565b73ffffffffffffffffffffffffffffffffffffffff1614611f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5f90614a21565b60405180910390fd5b73e1dad4ae4bfd1d53d234303655bfc44982d4635373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611fb457600080fd5b600073e1dad4ae4bfd1d53d234303655bfc44982d4635373ffffffffffffffffffffffffffffffffffffffff1647604051611fee90614664565b60006040518083038185875af1925050503d806000811461202b576040519150601f19603f3d011682016040523d82523d6000602084013e612030565b606091505b505090508061203e57600080fd5b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60009054906101000a900460ff1681565b61271081565b600f60009054906101000a900460ff1661213d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213490614a81565b60405180910390fd5b60008111801561214e5750601e8111155b61218d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218490614921565b60405180910390fd5b6127106121aa8261219c610c34565b612b8b90919063ffffffff16565b11156121eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e290614a01565b60405180910390fd5b61220081600e5461283a90919063ffffffff16565b341015612242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223990614881565b60405180910390fd5b60005b81811015612283576000612257610c34565b9050612710612264610c34565b1015612275576122743382612965565b5b508080600101915050612245565b5050565b61228f612455565b73ffffffffffffffffffffffffffffffffffffffff166122ad61176c565b73ffffffffffffffffffffffffffffffffffffffff1614612303576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fa90614a21565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236a906147c1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601e81565b600061244e826002612be090919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166124d08361115c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061252482600001612bfa565b9050919050565b600061253682612438565b612575576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256c906148e1565b60405180910390fd5b60006125808361115c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806125ef57508373ffffffffffffffffffffffffffffffffffffffff166125d784610a01565b73ffffffffffffffffffffffffffffffffffffffff16145b8061260057506125ff8185612041565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126298261115c565b73ffffffffffffffffffffffffffffffffffffffff161461267f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267690614a41565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e690614841565b60405180910390fd5b6126fa838383612c0b565b61270560008261245d565b61275681600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612c1090919063ffffffff16565b506127a881600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612c2a90919063ffffffff16565b506127bf81836002612c449092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061282f8360000183612c79565b60001c905092915050565b60008083141561284d57600090506128a4565b600082840290508284828161285e57fe5b041461289f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612896906149c1565b60405180910390fd5b809150505b92915050565b60008082116128ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e590614901565b60405180910390fd5b8183816128f757fe5b04905092915050565b6000806000806129138660000186612ce6565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190612942929190613578565b5050565b6000612959846000018460001b84612d69565b60001c90509392505050565b61297f828260405180602001604052806000815250612dfa565b5050565b6000828211156129c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129bf906148a1565b60405180910390fd5b818303905092915050565b60006129e182600001612e55565b9050919050565b6129f3848484612609565b6129ff84848484612e66565b612a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3590614781565b60405180910390fd5b50505050565b60606000821415612a8c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b86565b600082905060005b60008214612ab6578080600101915050600a8281612aae57fe5b049150612a94565b60008167ffffffffffffffff81118015612acf57600080fd5b506040519080825280601f01601f191660200182016040528015612b025781602001600182028036833780820191505090505b50905060006001830390508593505b60008414612b7e57600a8481612b2357fe5b0660300160f81b82828060019003935081518110612b3d57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481612b7657fe5b049350612b11565b819450505050505b919050565b600080828401905083811015612bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bcd90614801565b60405180910390fd5b8091505092915050565b6000612bf2836000018360001b612fca565b905092915050565b600081600001805490509050919050565b505050565b6000612c22836000018360001b612fed565b905092915050565b6000612c3c836000018360001b6130d5565b905092915050565b6000612c70846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b613145565b90509392505050565b600081836000018054905011612cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cbb90614761565b60405180910390fd5b826000018281548110612cd357fe5b9060005260206000200154905092915050565b60008082846000018054905011612d32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2990614981565b60405180910390fd5b6000846000018481548110612d4357fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc2919061471d565b60405180910390fd5b50846000016001820381548110612dde57fe5b9060005260206000209060020201600101549150509392505050565b612e048383613221565b612e116000848484612e66565b612e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4790614781565b60405180910390fd5b505050565b600081600001805490509050919050565b6000612e878473ffffffffffffffffffffffffffffffffffffffff166133af565b612e945760019050612fc2565b6000612f5b63150b7a0260e01b612ea9612455565b888787604051602401612ebf9493929190614694565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614da1603291398773ffffffffffffffffffffffffffffffffffffffff166133c29092919063ffffffff16565b9050600081806020019051810190612f73919061392c565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b600080836001016000848152602001908152602001600020549050600081146130c9576000600182039050600060018660000180549050039050600086600001828154811061303857fe5b906000526020600020015490508087600001848154811061305557fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061308d57fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506130cf565b60009150505b92915050565b60006130e183836133da565b61313a57826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061313f565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156131ec5784600001604051806040016040528086815260200185815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050846000018054905085600101600086815260200190815260200160002081905550600191505061321a565b828560000160018303815481106131ff57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613291576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613288906149a1565b60405180910390fd5b61329a81612438565b156132da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132d1906147e1565b60405180910390fd5b6132e660008383612c0b565b61333781600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612c2a90919063ffffffff16565b5061334e81836002612c449092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606133d184846000856133fd565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015613442576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613439906148c1565b60405180910390fd5b61344b856133af565b61348a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161348190614b01565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516134b39190614629565b60006040518083038185875af1925050503d80600081146134f0576040519150601f19603f3d011682016040523d82523d6000602084013e6134f5565b606091505b5091509150613505828286613511565b92505050949350505050565b6060831561352157829050613571565b6000835111156135345782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613568919061471d565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826135ae57600085556135f5565b82601f106135c757805160ff19168380011785556135f5565b828001600101855582156135f5579182015b828111156135f45782518255916020019190600101906135d9565b5b5090506136029190613606565b5090565b5b8082111561361f576000816000905550600101613607565b5090565b600061363661363184614b6d565b614b3c565b90508281526020810184848401111561364e57600080fd5b613659848285614cef565b509392505050565b600061367461366f84614b9d565b614b3c565b90508281526020810184848401111561368c57600080fd5b613697848285614cef565b509392505050565b6000813590506136ae81614d44565b92915050565b6000813590506136c381614d5b565b92915050565b6000813590506136d881614d72565b92915050565b6000815190506136ed81614d72565b92915050565b600082601f83011261370457600080fd5b8135613714848260208601613623565b91505092915050565b600082601f83011261372e57600080fd5b813561373e848260208601613661565b91505092915050565b60008135905061375681614d89565b92915050565b60006020828403121561376e57600080fd5b600061377c8482850161369f565b91505092915050565b6000806040838503121561379857600080fd5b60006137a68582860161369f565b92505060206137b78582860161369f565b9150509250929050565b6000806000606084860312156137d657600080fd5b60006137e48682870161369f565b93505060206137f58682870161369f565b925050604061380686828701613747565b9150509250925092565b6000806000806080858703121561382657600080fd5b60006138348782880161369f565b94505060206138458782880161369f565b935050604061385687828801613747565b925050606085013567ffffffffffffffff81111561387357600080fd5b61387f878288016136f3565b91505092959194509250565b6000806040838503121561389e57600080fd5b60006138ac8582860161369f565b92505060206138bd858286016136b4565b9150509250929050565b600080604083850312156138da57600080fd5b60006138e88582860161369f565b92505060206138f985828601613747565b9150509250929050565b60006020828403121561391557600080fd5b6000613923848285016136c9565b91505092915050565b60006020828403121561393e57600080fd5b600061394c848285016136de565b91505092915050565b60006020828403121561396757600080fd5b600082013567ffffffffffffffff81111561398157600080fd5b61398d8482850161371d565b91505092915050565b6000602082840312156139a857600080fd5b60006139b684828501613747565b91505092915050565b60006139cb838361460b565b60208301905092915050565b6139e081614c7b565b82525050565b6139ef81614c69565b82525050565b6000613a0082614bf2565b613a0a8185614c20565b9350613a1583614bcd565b8060005b83811015613a46578151613a2d88826139bf565b9750613a3883614c13565b925050600181019050613a19565b5085935050505092915050565b613a5c81614c8d565b82525050565b6000613a6d82614bfd565b613a778185614c31565b9350613a87818560208601614cfe565b613a9081614d33565b840191505092915050565b6000613aa682614bfd565b613ab08185614c42565b9350613ac0818560208601614cfe565b80840191505092915050565b6000613ad782614c08565b613ae18185614c4d565b9350613af1818560208601614cfe565b613afa81614d33565b840191505092915050565b6000613b1082614c08565b613b1a8185614c5e565b9350613b2a818560208601614cfe565b80840191505092915050565b600081546001811660008114613b535760018114613b7957613bbd565b607f6002830416613b648187614c4d565b955060ff198316865260208601935050613bbd565b60028204613b878187614c4d565b9550613b9285614bdd565b60005b82811015613bb457815481890152600182019150602081019050613b95565b80880195505050505b505092915050565b6000613bd2602283614c4d565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c38603283614c4d565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613c9e601c83614c4d565b91507f43484f4f53452041205049524154452057495448494e2052414e4745000000006000830152602082019050919050565b6000613cde602683614c4d565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d44601c83614c4d565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613d84601b83614c4d565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000613dc4602083614c4d565b91507f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d6000830152602082019050919050565b6000613e04602483614c4d565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e6a601983614c4d565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613eaa601f83614c4d565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000613eea601e83614c4d565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000613f2a602683614c4d565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f90602c83614c4d565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613ff6601a83614c4d565b91507f536166654d6174683a206469766973696f6e206279207a65726f0000000000006000830152602082019050919050565b6000614036602183614c4d565b91507f43616e206f6e6c79206d696e7420333020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061409c603883614c4d565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614102602a83614c4d565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614168602283614c4d565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006141ce602083614c4d565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061420e602183614c4d565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614274602c83614c4d565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006142da602b83614c4d565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f6620506972617465730000000000000000000000000000000000000000006020830152604082019050919050565b6000614340602083614c4d565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614380602983614c4d565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006143e6602f83614c4d565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061444c602483614c4d565b91507f53616c65206d7573742062652061637469766520746f206d696e74206120506960008301527f72617465000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006144b2602183614c4d565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614518601683614c4d565b91507f4c6963656e736520616c7265616479206c6f636b6564000000000000000000006000830152602082019050919050565b6000614558600083614c42565b9150600082019050919050565b6000614572603183614c4d565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006145d8601d83614c4d565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b61461481614ce5565b82525050565b61462381614ce5565b82525050565b60006146358284613a9b565b915081905092915050565b600061464c8285613b05565b91506146588284613b05565b91508190509392505050565b600061466f8261454b565b9150819050919050565b600060208201905061468e60008301846139e6565b92915050565b60006080820190506146a960008301876139d7565b6146b660208301866139e6565b6146c3604083018561461a565b81810360608301526146d58184613a62565b905095945050505050565b600060208201905081810360008301526146fa81846139f5565b905092915050565b60006020820190506147176000830184613a53565b92915050565b600060208201905081810360008301526147378184613acc565b905092915050565b600060208201905081810360008301526147598184613b36565b905092915050565b6000602082019050818103600083015261477a81613bc5565b9050919050565b6000602082019050818103600083015261479a81613c2b565b9050919050565b600060208201905081810360008301526147ba81613c91565b9050919050565b600060208201905081810360008301526147da81613cd1565b9050919050565b600060208201905081810360008301526147fa81613d37565b9050919050565b6000602082019050818103600083015261481a81613d77565b9050919050565b6000602082019050818103600083015261483a81613db7565b9050919050565b6000602082019050818103600083015261485a81613df7565b9050919050565b6000602082019050818103600083015261487a81613e5d565b9050919050565b6000602082019050818103600083015261489a81613e9d565b9050919050565b600060208201905081810360008301526148ba81613edd565b9050919050565b600060208201905081810360008301526148da81613f1d565b9050919050565b600060208201905081810360008301526148fa81613f83565b9050919050565b6000602082019050818103600083015261491a81613fe9565b9050919050565b6000602082019050818103600083015261493a81614029565b9050919050565b6000602082019050818103600083015261495a8161408f565b9050919050565b6000602082019050818103600083015261497a816140f5565b9050919050565b6000602082019050818103600083015261499a8161415b565b9050919050565b600060208201905081810360008301526149ba816141c1565b9050919050565b600060208201905081810360008301526149da81614201565b9050919050565b600060208201905081810360008301526149fa81614267565b9050919050565b60006020820190508181036000830152614a1a816142cd565b9050919050565b60006020820190508181036000830152614a3a81614333565b9050919050565b60006020820190508181036000830152614a5a81614373565b9050919050565b60006020820190508181036000830152614a7a816143d9565b9050919050565b60006020820190508181036000830152614a9a8161443f565b9050919050565b60006020820190508181036000830152614aba816144a5565b9050919050565b60006020820190508181036000830152614ada8161450b565b9050919050565b60006020820190508181036000830152614afa81614565565b9050919050565b60006020820190508181036000830152614b1a816145cb565b9050919050565b6000602082019050614b36600083018461461a565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614b6357614b62614d31565b5b8060405250919050565b600067ffffffffffffffff821115614b8857614b87614d31565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614bb857614bb7614d31565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614c7482614cc5565b9050919050565b6000614c8682614cc5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614d1c578082015181840152602081019050614d01565b83811115614d2b576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b614d4d81614c69565b8114614d5857600080fd5b50565b614d6481614c8d565b8114614d6f57600080fd5b50565b614d7b81614c99565b8114614d8657600080fd5b50565b614d9281614ce5565b8114614d9d57600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea26469706673582212203d46a1226a240e02017eb594f1cf209f3aad6bee7220884190bbbc1d35d5b10864736f6c63430007060033

Deployed Bytecode

0x6080604052600436106102345760003560e01c806370a082311161012e578063bf4702fc116100ab578063eb8d24441161006f578063eb8d244414610832578063edca3f171461085d578063f28e2de614610888578063f2fde38b146108a4578063f6c8bd5c146108cd5761023b565b8063bf4702fc1461074d578063c87b56dd14610764578063d9b137b2146107a1578063db2e21bc146107de578063e985e9c5146107f55761023b565b80639c3e72bd116100f25780639c3e72bd1461067c578063a22cb465146106a7578063a7104510146106d0578063b09904b5146106fb578063b88d4fde146107245761023b565b806370a0823114610595578063715018a6146105d25780638462151c146105e95780638da5cb5b1461062657806395d89b41146106515761023b565b80633ccfd60b116101bc5780636352211e116101805780636352211e146104b05780636576cdc9146104ed57806365c1ef4c14610516578063688abc90146105415780636c0360eb1461056a5761023b565b80633ccfd60b146103df5780634069a6dd146103f657806342842e0e146104215780634f6ccce71461044a57806355f804b3146104875761023b565b80631096952311610203578063109695231461030e57806318160ddd1461033757806323b872dd146103625780632f745c591461038b57806334918dfd146103c85761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e55761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613903565b6108f8565b6040516102749190614702565b60405180910390f35b34801561028957600080fd5b5061029261095f565b60405161029f919061471d565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613996565b610a01565b6040516102dc9190614679565b60405180910390f35b3480156102f157600080fd5b5061030c600480360381019061030791906138c7565b610a86565b005b34801561031a57600080fd5b5061033560048036038101906103309190613955565b610b9e565b005b34801561034357600080fd5b5061034c610c34565b6040516103599190614b21565b60405180910390f35b34801561036e57600080fd5b50610389600480360381019061038491906137c1565b610c45565b005b34801561039757600080fd5b506103b260048036038101906103ad91906138c7565b610ca5565b6040516103bf9190614b21565b60405180910390f35b3480156103d457600080fd5b506103dd610d00565b005b3480156103eb57600080fd5b506103f4610da8565b005b34801561040257600080fd5b5061040b61108b565b6040516104189190614b21565b60405180910390f35b34801561042d57600080fd5b50610448600480360381019061044391906137c1565b611091565b005b34801561045657600080fd5b50610471600480360381019061046c9190613996565b6110b1565b60405161047e9190614b21565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a99190613955565b6110d4565b005b3480156104bc57600080fd5b506104d760048036038101906104d29190613996565b61115c565b6040516104e49190614679565b60405180910390f35b3480156104f957600080fd5b50610514600480360381019061050f91906138c7565b611193565b005b34801561052257600080fd5b5061052b6112b1565b604051610538919061471d565b60405180910390f35b34801561054d57600080fd5b5061056860048036038101906105639190613996565b61134f565b005b34801561057657600080fd5b5061057f6113d5565b60405161058c919061471d565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b7919061375c565b611477565b6040516105c99190614b21565b60405180910390f35b3480156105de57600080fd5b506105e7611536565b005b3480156105f557600080fd5b50610610600480360381019061060b919061375c565b611673565b60405161061d91906146e0565b60405180910390f35b34801561063257600080fd5b5061063b61176c565b6040516106489190614679565b60405180910390f35b34801561065d57600080fd5b50610666611796565b604051610673919061471d565b60405180910390f35b34801561068857600080fd5b50610691611838565b60405161069e919061471d565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c9919061388b565b6118d6565b005b3480156106dc57600080fd5b506106e5611a57565b6040516106f29190614b21565b60405180910390f35b34801561070757600080fd5b50610722600480360381019061071d9190613955565b611a5d565b005b34801561073057600080fd5b5061074b60048036038101906107469190613810565b611b49565b005b34801561075957600080fd5b50610762611bab565b005b34801561077057600080fd5b5061078b60048036038101906107869190613996565b611c7c565b604051610798919061471d565b60405180910390f35b3480156107ad57600080fd5b506107c860048036038101906107c39190613996565b611dff565b6040516107d5919061471d565b60405180910390f35b3480156107ea57600080fd5b506107f3611eec565b005b34801561080157600080fd5b5061081c60048036038101906108179190613785565b612041565b6040516108299190614702565b60405180910390f35b34801561083e57600080fd5b506108476120d5565b6040516108549190614702565b60405180910390f35b34801561086957600080fd5b506108726120e8565b60405161087f9190614b21565b60405180910390f35b6108a2600480360381019061089d9190613996565b6120ee565b005b3480156108b057600080fd5b506108cb60048036038101906108c6919061375c565b612287565b005b3480156108d957600080fd5b506108e2612433565b6040516108ef9190614b21565b60405180910390f35b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109f75780601f106109cc576101008083540402835291602001916109f7565b820191906000526020600020905b8154815290600101906020018083116109da57829003601f168201915b5050505050905090565b6000610a0c82612438565b610a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a42906149e1565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a918261115c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af990614aa1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b21612455565b73ffffffffffffffffffffffffffffffffffffffff161480610b505750610b4f81610b4a612455565b612041565b5b610b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8690614941565b60405180910390fd5b610b99838361245d565b505050565b610ba6612455565b73ffffffffffffffffffffffffffffffffffffffff16610bc461176c565b73ffffffffffffffffffffffffffffffffffffffff1614610c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1190614a21565b60405180910390fd5b80600b9080519060200190610c30929190613578565b5050565b6000610c406002612516565b905090565b610c56610c50612455565b8261252b565b610c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8c90614ae1565b60405180910390fd5b610ca0838383612609565b505050565b6000610cf882600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061282090919063ffffffff16565b905092915050565b610d08612455565b73ffffffffffffffffffffffffffffffffffffffff16610d2661176c565b73ffffffffffffffffffffffffffffffffffffffff1614610d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7390614a21565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b73e1dad4ae4bfd1d53d234303655bfc44982d4635373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610e35575073672c36fa22029369490bb5e33e6d16a7e1309c1e73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b80610e7f57507359ce6be860f8e0a4d8880a0ae39bd0bc63b8267273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610e8857600080fd5b60004790506000610eb66064610ea8602d8561283a90919063ffffffff16565b6128aa90919063ffffffff16565b905073e1dad4ae4bfd1d53d234303655bfc44982d4635373ffffffffffffffffffffffffffffffffffffffff1681604051610ef090614664565b60006040518083038185875af1925050503d8060008114610f2d576040519150601f19603f3d011682016040523d82523d6000602084013e610f32565b606091505b5050506000610f5e6064610f50602d8661283a90919063ffffffff16565b6128aa90919063ffffffff16565b905073672c36fa22029369490bb5e33e6d16a7e1309c1e73ffffffffffffffffffffffffffffffffffffffff1681604051610f9890614664565b60006040518083038185875af1925050503d8060008114610fd5576040519150601f19603f3d011682016040523d82523d6000602084013e610fda565b606091505b50505060006110066064610ff8600a8761283a90919063ffffffff16565b6128aa90919063ffffffff16565b90507359ce6be860f8e0a4d8880a0ae39bd0bc63b8267273ffffffffffffffffffffffffffffffffffffffff168160405161104090614664565b60006040518083038185875af1925050503d806000811461107d576040519150601f19603f3d011682016040523d82523d6000602084013e611082565b606091505b50505050505050565b600e5481565b6110ac83838360405180602001604052806000815250611b49565b505050565b6000806110c883600261290090919063ffffffff16565b50905080915050919050565b6110dc612455565b73ffffffffffffffffffffffffffffffffffffffff166110fa61176c565b73ffffffffffffffffffffffffffffffffffffffff1614611150576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114790614a21565b60405180910390fd5b6111598161292c565b50565b600061118c82604051806060016040528060298152602001614dd36029913960026129469092919063ffffffff16565b9050919050565b61119b612455565b73ffffffffffffffffffffffffffffffffffffffff166111b961176c565b73ffffffffffffffffffffffffffffffffffffffff161461120f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120690614a21565b60405180910390fd5b6000611219610c34565b905060008211801561122d57506010548211155b61126c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126390614821565b60405180910390fd5b60005b828110156112905761128384828401612965565b808060010191505061126f565b506112a68260105461298390919063ffffffff16565b601081905550505050565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113475780601f1061131c57610100808354040283529160200191611347565b820191906000526020600020905b81548152906001019060200180831161132a57829003601f168201915b505050505081565b611357612455565b73ffffffffffffffffffffffffffffffffffffffff1661137561176c565b73ffffffffffffffffffffffffffffffffffffffff16146113cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c290614a21565b60405180910390fd5b80600e8190555050565b606060098054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561146d5780601f106114425761010080835404028352916020019161146d565b820191906000526020600020905b81548152906001019060200180831161145057829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114df90614961565b60405180910390fd5b61152f600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206129d3565b9050919050565b61153e612455565b73ffffffffffffffffffffffffffffffffffffffff1661155c61176c565b73ffffffffffffffffffffffffffffffffffffffff16146115b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a990614a21565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6060600061168083611477565b905060008114156116db57600067ffffffffffffffff811180156116a357600080fd5b506040519080825280602002602001820160405280156116d25781602001602082028036833780820191505090505b50915050611767565b60008167ffffffffffffffff811180156116f457600080fd5b506040519080825280602002602001820160405280156117235781602001602082028036833780820191505090505b50905060005b828110156117605761173b8582610ca5565b82828151811061174757fe5b6020026020010181815250508080600101915050611729565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561182e5780601f106118035761010080835404028352916020019161182e565b820191906000526020600020905b81548152906001019060200180831161181157829003601f168201915b5050505050905090565b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118ce5780601f106118a3576101008083540402835291602001916118ce565b820191906000526020600020905b8154815290600101906020018083116118b157829003601f168201915b505050505081565b6118de612455565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561194c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194390614861565b60405180910390fd5b8060056000611959612455565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a06612455565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a4b9190614702565b60405180910390a35050565b60105481565b611a65612455565b73ffffffffffffffffffffffffffffffffffffffff16611a8361176c565b73ffffffffffffffffffffffffffffffffffffffff1614611ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad090614a21565b60405180910390fd5b60001515600d60009054906101000a900460ff16151514611b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2690614ac1565b60405180910390fd5b80600c9080519060200190611b45929190613578565b5050565b611b5a611b54612455565b8361252b565b611b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9090614ae1565b60405180910390fd5b611ba5848484846129e8565b50505050565b611bb3612455565b73ffffffffffffffffffffffffffffffffffffffff16611bd161176c565b73ffffffffffffffffffffffffffffffffffffffff1614611c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1e90614a21565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055507f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0600c604051611c72919061473f565b60405180910390a1565b6060611c8782612438565b611cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbd90614a61565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611d6f5780601f10611d4457610100808354040283529160200191611d6f565b820191906000526020600020905b815481529060010190602001808311611d5257829003601f168201915b505050505090506000611d806113d5565b9050600081511415611d96578192505050611dfa565b600082511115611dcb578082604051602001611db3929190614640565b60405160208183030381529060405292505050611dfa565b80611dd585612a44565b604051602001611de6929190614640565b604051602081830303815290604052925050505b919050565b6060611e09610c34565b8210611e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e41906147a1565b60405180910390fd5b600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611ee05780601f10611eb557610100808354040283529160200191611ee0565b820191906000526020600020905b815481529060010190602001808311611ec357829003601f168201915b50505050509050919050565b611ef4612455565b73ffffffffffffffffffffffffffffffffffffffff16611f1261176c565b73ffffffffffffffffffffffffffffffffffffffff1614611f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5f90614a21565b60405180910390fd5b73e1dad4ae4bfd1d53d234303655bfc44982d4635373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611fb457600080fd5b600073e1dad4ae4bfd1d53d234303655bfc44982d4635373ffffffffffffffffffffffffffffffffffffffff1647604051611fee90614664565b60006040518083038185875af1925050503d806000811461202b576040519150601f19603f3d011682016040523d82523d6000602084013e612030565b606091505b505090508061203e57600080fd5b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60009054906101000a900460ff1681565b61271081565b600f60009054906101000a900460ff1661213d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213490614a81565b60405180910390fd5b60008111801561214e5750601e8111155b61218d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218490614921565b60405180910390fd5b6127106121aa8261219c610c34565b612b8b90919063ffffffff16565b11156121eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e290614a01565b60405180910390fd5b61220081600e5461283a90919063ffffffff16565b341015612242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223990614881565b60405180910390fd5b60005b81811015612283576000612257610c34565b9050612710612264610c34565b1015612275576122743382612965565b5b508080600101915050612245565b5050565b61228f612455565b73ffffffffffffffffffffffffffffffffffffffff166122ad61176c565b73ffffffffffffffffffffffffffffffffffffffff1614612303576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fa90614a21565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236a906147c1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601e81565b600061244e826002612be090919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166124d08361115c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061252482600001612bfa565b9050919050565b600061253682612438565b612575576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256c906148e1565b60405180910390fd5b60006125808361115c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806125ef57508373ffffffffffffffffffffffffffffffffffffffff166125d784610a01565b73ffffffffffffffffffffffffffffffffffffffff16145b8061260057506125ff8185612041565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126298261115c565b73ffffffffffffffffffffffffffffffffffffffff161461267f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267690614a41565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e690614841565b60405180910390fd5b6126fa838383612c0b565b61270560008261245d565b61275681600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612c1090919063ffffffff16565b506127a881600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612c2a90919063ffffffff16565b506127bf81836002612c449092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061282f8360000183612c79565b60001c905092915050565b60008083141561284d57600090506128a4565b600082840290508284828161285e57fe5b041461289f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612896906149c1565b60405180910390fd5b809150505b92915050565b60008082116128ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e590614901565b60405180910390fd5b8183816128f757fe5b04905092915050565b6000806000806129138660000186612ce6565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190612942929190613578565b5050565b6000612959846000018460001b84612d69565b60001c90509392505050565b61297f828260405180602001604052806000815250612dfa565b5050565b6000828211156129c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129bf906148a1565b60405180910390fd5b818303905092915050565b60006129e182600001612e55565b9050919050565b6129f3848484612609565b6129ff84848484612e66565b612a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3590614781565b60405180910390fd5b50505050565b60606000821415612a8c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b86565b600082905060005b60008214612ab6578080600101915050600a8281612aae57fe5b049150612a94565b60008167ffffffffffffffff81118015612acf57600080fd5b506040519080825280601f01601f191660200182016040528015612b025781602001600182028036833780820191505090505b50905060006001830390508593505b60008414612b7e57600a8481612b2357fe5b0660300160f81b82828060019003935081518110612b3d57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481612b7657fe5b049350612b11565b819450505050505b919050565b600080828401905083811015612bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bcd90614801565b60405180910390fd5b8091505092915050565b6000612bf2836000018360001b612fca565b905092915050565b600081600001805490509050919050565b505050565b6000612c22836000018360001b612fed565b905092915050565b6000612c3c836000018360001b6130d5565b905092915050565b6000612c70846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b613145565b90509392505050565b600081836000018054905011612cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cbb90614761565b60405180910390fd5b826000018281548110612cd357fe5b9060005260206000200154905092915050565b60008082846000018054905011612d32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2990614981565b60405180910390fd5b6000846000018481548110612d4357fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc2919061471d565b60405180910390fd5b50846000016001820381548110612dde57fe5b9060005260206000209060020201600101549150509392505050565b612e048383613221565b612e116000848484612e66565b612e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4790614781565b60405180910390fd5b505050565b600081600001805490509050919050565b6000612e878473ffffffffffffffffffffffffffffffffffffffff166133af565b612e945760019050612fc2565b6000612f5b63150b7a0260e01b612ea9612455565b888787604051602401612ebf9493929190614694565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614da1603291398773ffffffffffffffffffffffffffffffffffffffff166133c29092919063ffffffff16565b9050600081806020019051810190612f73919061392c565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b600080836001016000848152602001908152602001600020549050600081146130c9576000600182039050600060018660000180549050039050600086600001828154811061303857fe5b906000526020600020015490508087600001848154811061305557fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061308d57fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506130cf565b60009150505b92915050565b60006130e183836133da565b61313a57826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061313f565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156131ec5784600001604051806040016040528086815260200185815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050846000018054905085600101600086815260200190815260200160002081905550600191505061321a565b828560000160018303815481106131ff57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613291576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613288906149a1565b60405180910390fd5b61329a81612438565b156132da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132d1906147e1565b60405180910390fd5b6132e660008383612c0b565b61333781600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612c2a90919063ffffffff16565b5061334e81836002612c449092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606133d184846000856133fd565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015613442576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613439906148c1565b60405180910390fd5b61344b856133af565b61348a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161348190614b01565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516134b39190614629565b60006040518083038185875af1925050503d80600081146134f0576040519150601f19603f3d011682016040523d82523d6000602084013e6134f5565b606091505b5091509150613505828286613511565b92505050949350505050565b6060831561352157829050613571565b6000835111156135345782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613568919061471d565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826135ae57600085556135f5565b82601f106135c757805160ff19168380011785556135f5565b828001600101855582156135f5579182015b828111156135f45782518255916020019190600101906135d9565b5b5090506136029190613606565b5090565b5b8082111561361f576000816000905550600101613607565b5090565b600061363661363184614b6d565b614b3c565b90508281526020810184848401111561364e57600080fd5b613659848285614cef565b509392505050565b600061367461366f84614b9d565b614b3c565b90508281526020810184848401111561368c57600080fd5b613697848285614cef565b509392505050565b6000813590506136ae81614d44565b92915050565b6000813590506136c381614d5b565b92915050565b6000813590506136d881614d72565b92915050565b6000815190506136ed81614d72565b92915050565b600082601f83011261370457600080fd5b8135613714848260208601613623565b91505092915050565b600082601f83011261372e57600080fd5b813561373e848260208601613661565b91505092915050565b60008135905061375681614d89565b92915050565b60006020828403121561376e57600080fd5b600061377c8482850161369f565b91505092915050565b6000806040838503121561379857600080fd5b60006137a68582860161369f565b92505060206137b78582860161369f565b9150509250929050565b6000806000606084860312156137d657600080fd5b60006137e48682870161369f565b93505060206137f58682870161369f565b925050604061380686828701613747565b9150509250925092565b6000806000806080858703121561382657600080fd5b60006138348782880161369f565b94505060206138458782880161369f565b935050604061385687828801613747565b925050606085013567ffffffffffffffff81111561387357600080fd5b61387f878288016136f3565b91505092959194509250565b6000806040838503121561389e57600080fd5b60006138ac8582860161369f565b92505060206138bd858286016136b4565b9150509250929050565b600080604083850312156138da57600080fd5b60006138e88582860161369f565b92505060206138f985828601613747565b9150509250929050565b60006020828403121561391557600080fd5b6000613923848285016136c9565b91505092915050565b60006020828403121561393e57600080fd5b600061394c848285016136de565b91505092915050565b60006020828403121561396757600080fd5b600082013567ffffffffffffffff81111561398157600080fd5b61398d8482850161371d565b91505092915050565b6000602082840312156139a857600080fd5b60006139b684828501613747565b91505092915050565b60006139cb838361460b565b60208301905092915050565b6139e081614c7b565b82525050565b6139ef81614c69565b82525050565b6000613a0082614bf2565b613a0a8185614c20565b9350613a1583614bcd565b8060005b83811015613a46578151613a2d88826139bf565b9750613a3883614c13565b925050600181019050613a19565b5085935050505092915050565b613a5c81614c8d565b82525050565b6000613a6d82614bfd565b613a778185614c31565b9350613a87818560208601614cfe565b613a9081614d33565b840191505092915050565b6000613aa682614bfd565b613ab08185614c42565b9350613ac0818560208601614cfe565b80840191505092915050565b6000613ad782614c08565b613ae18185614c4d565b9350613af1818560208601614cfe565b613afa81614d33565b840191505092915050565b6000613b1082614c08565b613b1a8185614c5e565b9350613b2a818560208601614cfe565b80840191505092915050565b600081546001811660008114613b535760018114613b7957613bbd565b607f6002830416613b648187614c4d565b955060ff198316865260208601935050613bbd565b60028204613b878187614c4d565b9550613b9285614bdd565b60005b82811015613bb457815481890152600182019150602081019050613b95565b80880195505050505b505092915050565b6000613bd2602283614c4d565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c38603283614c4d565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613c9e601c83614c4d565b91507f43484f4f53452041205049524154452057495448494e2052414e4745000000006000830152602082019050919050565b6000613cde602683614c4d565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d44601c83614c4d565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613d84601b83614c4d565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000613dc4602083614c4d565b91507f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d6000830152602082019050919050565b6000613e04602483614c4d565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e6a601983614c4d565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613eaa601f83614c4d565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000613eea601e83614c4d565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000613f2a602683614c4d565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f90602c83614c4d565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613ff6601a83614c4d565b91507f536166654d6174683a206469766973696f6e206279207a65726f0000000000006000830152602082019050919050565b6000614036602183614c4d565b91507f43616e206f6e6c79206d696e7420333020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061409c603883614c4d565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614102602a83614c4d565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614168602283614c4d565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006141ce602083614c4d565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061420e602183614c4d565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614274602c83614c4d565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006142da602b83614c4d565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f6620506972617465730000000000000000000000000000000000000000006020830152604082019050919050565b6000614340602083614c4d565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614380602983614c4d565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006143e6602f83614c4d565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061444c602483614c4d565b91507f53616c65206d7573742062652061637469766520746f206d696e74206120506960008301527f72617465000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006144b2602183614c4d565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614518601683614c4d565b91507f4c6963656e736520616c7265616479206c6f636b6564000000000000000000006000830152602082019050919050565b6000614558600083614c42565b9150600082019050919050565b6000614572603183614c4d565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006145d8601d83614c4d565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b61461481614ce5565b82525050565b61462381614ce5565b82525050565b60006146358284613a9b565b915081905092915050565b600061464c8285613b05565b91506146588284613b05565b91508190509392505050565b600061466f8261454b565b9150819050919050565b600060208201905061468e60008301846139e6565b92915050565b60006080820190506146a960008301876139d7565b6146b660208301866139e6565b6146c3604083018561461a565b81810360608301526146d58184613a62565b905095945050505050565b600060208201905081810360008301526146fa81846139f5565b905092915050565b60006020820190506147176000830184613a53565b92915050565b600060208201905081810360008301526147378184613acc565b905092915050565b600060208201905081810360008301526147598184613b36565b905092915050565b6000602082019050818103600083015261477a81613bc5565b9050919050565b6000602082019050818103600083015261479a81613c2b565b9050919050565b600060208201905081810360008301526147ba81613c91565b9050919050565b600060208201905081810360008301526147da81613cd1565b9050919050565b600060208201905081810360008301526147fa81613d37565b9050919050565b6000602082019050818103600083015261481a81613d77565b9050919050565b6000602082019050818103600083015261483a81613db7565b9050919050565b6000602082019050818103600083015261485a81613df7565b9050919050565b6000602082019050818103600083015261487a81613e5d565b9050919050565b6000602082019050818103600083015261489a81613e9d565b9050919050565b600060208201905081810360008301526148ba81613edd565b9050919050565b600060208201905081810360008301526148da81613f1d565b9050919050565b600060208201905081810360008301526148fa81613f83565b9050919050565b6000602082019050818103600083015261491a81613fe9565b9050919050565b6000602082019050818103600083015261493a81614029565b9050919050565b6000602082019050818103600083015261495a8161408f565b9050919050565b6000602082019050818103600083015261497a816140f5565b9050919050565b6000602082019050818103600083015261499a8161415b565b9050919050565b600060208201905081810360008301526149ba816141c1565b9050919050565b600060208201905081810360008301526149da81614201565b9050919050565b600060208201905081810360008301526149fa81614267565b9050919050565b60006020820190508181036000830152614a1a816142cd565b9050919050565b60006020820190508181036000830152614a3a81614333565b9050919050565b60006020820190508181036000830152614a5a81614373565b9050919050565b60006020820190508181036000830152614a7a816143d9565b9050919050565b60006020820190508181036000830152614a9a8161443f565b9050919050565b60006020820190508181036000830152614aba816144a5565b9050919050565b60006020820190508181036000830152614ada8161450b565b9050919050565b60006020820190508181036000830152614afa81614565565b9050919050565b60006020820190508181036000830152614b1a816145cb565b9050919050565b6000602082019050614b36600083018461461a565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614b6357614b62614d31565b5b8060405250919050565b600067ffffffffffffffff821115614b8857614b87614d31565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614bb857614bb7614d31565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614c7482614cc5565b9050919050565b6000614c8682614cc5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614d1c578082015181840152602081019050614d01565b83811115614d2b576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b614d4d81614c69565b8114614d5857600080fd5b50565b614d6481614c8d565b8114614d6f57600080fd5b50565b614d7b81614c99565b8114614d8657600080fd5b50565b614d9281614ce5565b8114614d9d57600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea26469706673582212203d46a1226a240e02017eb594f1cf209f3aad6bee7220884190bbbc1d35d5b10864736f6c63430007060033

Deployed Bytecode Sourcemap

70712:4826:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10768:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54255:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57263:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56762:435;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73029:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56190:211;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58322:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55902:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73271:89;;;;;;;;;;;;;:::i;:::-;;71389:859;;;;;;;;;;;;;:::i;:::-;;70913:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58769:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56478:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73164:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53899:289;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72557:464;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70798:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75400:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55721:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53529:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70071:148;;;;;;;;;;;;;:::i;:::-;;73368:572;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69420:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54424:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70842:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57643:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71121:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74395:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59025:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74236:124;;;;;;;;;;;;;:::i;:::-;;54599:879;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73995:180;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72256:293;;;;;;;;;;;;;:::i;:::-;;58041:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71082:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71032:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74583:809;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70374:281;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70979:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10768:200;10898:4;10927:20;:33;10948:11;10927:33;;;;;;;;;;;;;;;;;;;;;;;;;;;10920:40;;10768:200;;;:::o;54255:100::-;54309:13;54342:5;54335:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54255:100;:::o;57263:308::-;57384:7;57431:16;57439:7;57431;:16::i;:::-;57409:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;57539:15;:24;57555:7;57539:24;;;;;;;;;;;;;;;;;;;;;57532:31;;57263:308;;;:::o;56762:435::-;56843:13;56859:23;56874:7;56859:14;:23::i;:::-;56843:39;;56907:5;56901:11;;:2;:11;;;;56893:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;57001:5;56985:21;;:12;:10;:12::i;:::-;:21;;;:86;;;;57027:44;57051:5;57058:12;:10;:12::i;:::-;57027:23;:44::i;:::-;56985:86;56963:192;;;;;;;;;;;;:::i;:::-;;;;;;;;;57168:21;57177:2;57181:7;57168:8;:21::i;:::-;56762:435;;;:::o;73029:127::-;69651:12;:10;:12::i;:::-;69640:23;;:7;:5;:7::i;:::-;:23;;;69632:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;73134:14:::1;73114:17;:34;;;;;;;;;;;;:::i;:::-;;73029:127:::0;:::o;56190:211::-;56251:7;56372:21;:12;:19;:21::i;:::-;56365:28;;56190:211;:::o;58322:376::-;58531:41;58550:12;:10;:12::i;:::-;58564:7;58531:18;:41::i;:::-;58509:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;58662:28;58672:4;58678:2;58682:7;58662:9;:28::i;:::-;58322:376;;;:::o;55902:212::-;56044:7;56076:30;56100:5;56076:13;:20;56090:5;56076:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;56069:37;;55902:212;;;;:::o;73271:89::-;69651:12;:10;:12::i;:::-;69640:23;;:7;:5;:7::i;:::-;:23;;;69632:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;73340:12:::1;;;;;;;;;;;73339:13;73324:12;;:28;;;;;;;;;;;;;;;;;;73271:89::o:0;71389:859::-;71469:42;71455:56;;:10;:56;;;:133;;;;71546:42;71532:56;;:10;:56;;;71455:133;:210;;;;71623:42;71609:56;;:10;:56;;;71455:210;71429:248;;;;;;71690:11;71704:21;71690:35;;71738:17;71758:20;71774:3;71758:11;71766:2;71758:3;:7;;:11;;;;:::i;:::-;:15;;:20;;;;:::i;:::-;71738:40;;71805:42;71789:65;;71876:9;71789:111;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71913:18;71934:20;71950:3;71934:11;71942:2;71934:3;:7;;:11;;;;:::i;:::-;:15;;:20;;;;:::i;:::-;71913:41;;71981:42;71965:65;;72052:10;71965:112;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72090:11;72104:20;72120:3;72104:11;72112:2;72104:3;:7;;:11;;;;:::i;:::-;:15;;:20;;;;:::i;:::-;72090:34;;72151:42;72135:65;;72222:3;72135:105;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71389:859;;;;:::o;70913:46::-;;;;:::o;58769:185::-;58907:39;58924:4;58930:2;58934:7;58907:39;;;;;;;;;;;;:16;:39::i;:::-;58769:185;;;:::o;56478:222::-;56598:7;56624:15;56645:22;56661:5;56645:12;:15;;:22;;;;:::i;:::-;56623:44;;;56685:7;56678:14;;;56478:222;;;:::o;73164:99::-;69651:12;:10;:12::i;:::-;69640:23;;:7;:5;:7::i;:::-;:23;;;69632:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;73235:20:::1;73247:7;73235:11;:20::i;:::-;73164:99:::0;:::o;53899:289::-;54016:7;54061:119;54096:7;54061:119;;;;;;;;;;;;;;;;;:12;:16;;:119;;;;;:::i;:::-;54041:139;;53899:289;;;:::o;72557:464::-;69651:12;:10;:12::i;:::-;69640:23;;:7;:5;:7::i;:::-;:23;;;69632:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72669:14:::1;72686:13;:11;:13::i;:::-;72669:30;;72749:1;72732:14;:18;:53;;;;;72772:13;;72754:14;:31;;72732:53;72710:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;72861:9;72856:98;72880:14;72876:1;:18;72856:98;;;72916:26;72926:3;72940:1;72931:6;:10;72916:9;:26::i;:::-;72896:3;;;;;;;72856:98;;;;72980:33;72998:14;72980:13;;:17;;:33;;;;:::i;:::-;72964:13;:49;;;;69711:1;72557:464:::0;;:::o;70798:36::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;75400:100::-;69651:12;:10;:12::i;:::-;69640:23;;:7;:5;:7::i;:::-;:23;;;69632:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;75484:8:::1;75470:11;:22;;;;75400:100:::0;:::o;55721:97::-;55769:13;55802:8;55795:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55721:97;:::o;53529:308::-;53646:7;53710:1;53693:19;;:5;:19;;;;53671:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;53800:29;:13;:20;53814:5;53800:20;;;;;;;;;;;;;;;:27;:29::i;:::-;53793:36;;53529:308;;;:::o;70071:148::-;69651:12;:10;:12::i;:::-;69640:23;;:7;:5;:7::i;:::-;:23;;;69632:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70178:1:::1;70141:40;;70162:6;;;;;;;;;;;70141:40;;;;;;;;;;;;70209:1;70192:6;;:19;;;;;;;;;;;;;;;;;;70071:148::o:0;73368:572::-;73457:16;73491:18;73512:17;73522:6;73512:9;:17::i;:::-;73491:38;;73558:1;73544:10;:15;73540:393;;;73635:1;73621:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73614:23;;;;;73540:393;73670:23;73710:10;73696:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73670:51;;73736:13;73764:130;73788:10;73780:5;:18;73764:130;;;73844:34;73864:6;73872:5;73844:19;:34::i;:::-;73828:6;73835:5;73828:13;;;;;;;;;;;;;:50;;;;;73800:7;;;;;;;73764:130;;;73915:6;73908:13;;;;;73368:572;;;;:::o;69420:87::-;69466:7;69493:6;;;;;;;;;;;69486:13;;69420:87;:::o;54424:104::-;54480:13;54513:7;54506:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54424:104;:::o;70842:31::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57643:327::-;57790:12;:10;:12::i;:::-;57778:24;;:8;:24;;;;57770:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;57890:8;57845:18;:32;57864:12;:10;:12::i;:::-;57845:32;;;;;;;;;;;;;;;:42;57878:8;57845:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;57943:8;57914:48;;57929:12;:10;:12::i;:::-;57914:48;;;57953:8;57914:48;;;;;;:::i;:::-;;;;;;;;57643:327;;:::o;71121:34::-;;;;:::o;74395:174::-;69651:12;:10;:12::i;:::-;69640:23;;:7;:5;:7::i;:::-;:23;;;69632:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;74495:5:::1;74478:22;;:13;;;;;;;;;;;:22;;;74470:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;74553:8;74538:12;:23;;;;;;;;;;;;:::i;:::-;;74395:174:::0;:::o;59025:365::-;59214:41;59233:12;:10;:12::i;:::-;59247:7;59214:18;:41::i;:::-;59192:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;59343:39;59357:4;59363:2;59367:7;59376:5;59343:13;:39::i;:::-;59025:365;;;;:::o;74236:124::-;69651:12;:10;:12::i;:::-;69640:23;;:7;:5;:7::i;:::-;:23;;;69632:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;74303:4:::1;74287:13;;:20;;;;;;;;;;;;;;;;;;74323:29;74339:12;74323:29;;;;;;:::i;:::-;;;;;;;;74236:124::o:0;54599:879::-;54717:13;54770:16;54778:7;54770;:16::i;:::-;54748:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;54874:23;54900:10;:19;54911:7;54900:19;;;;;;;;;;;54874:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54930:18;54951:9;:7;:9::i;:::-;54930:30;;55058:1;55042:4;55036:18;:23;55032:72;;;55083:9;55076:16;;;;;;55032:72;55234:1;55214:9;55208:23;:27;55204:108;;;55283:4;55289:9;55266:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55252:48;;;;;;55204:108;55444:4;55450:18;:7;:16;:18::i;:::-;55427:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55413:57;;;;54599:879;;;;:::o;73995:180::-;74051:13;74091;:11;:13::i;:::-;74085:3;:19;74077:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;74155:12;74148:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73995:180;;;:::o;72256:293::-;69651:12;:10;:12::i;:::-;69640:23;;:7;:5;:7::i;:::-;:23;;;69632:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72337:42:::1;72323:56;;:10;:56;;;72315:65;;;::::0;::::1;;72392:12;72418:42;72410:70;;72488:21;72410:104;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72391:123;;;72533:7;72525:16;;;::::0;::::1;;69711:1;72256:293::o:0;58041:214::-;58183:4;58212:18;:25;58231:5;58212:25;;;;;;;;;;;;;;;:35;58238:8;58212:35;;;;;;;;;;;;;;;;;;;;;;;;;58205:42;;58041:214;;;;:::o;71082:32::-;;;;;;;;;;;;;:::o;71032:43::-;71070:5;71032:43;:::o;74583:809::-;74661:12;;;;;;;;;;;74653:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;74764:1;74747:14;:18;:57;;;;;71023:2;74769:14;:35;;74747:57;74725:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;71070:5;74898:33;74916:14;74898:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:48;;74876:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;75063:31;75079:14;75063:11;;:15;;:31;;;;:::i;:::-;75050:9;:44;;75028:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;75171:9;75166:219;75190:14;75186:1;:18;75166:219;;;75226:17;75246:13;:11;:13::i;:::-;75226:33;;71070:5;75278:13;:11;:13::i;:::-;:27;75274:100;;;75326:32;75336:10;75348:9;75326;:32::i;:::-;75274:100;75166:219;75206:3;;;;;;;75166:219;;;;74583:809;:::o;70374:281::-;69651:12;:10;:12::i;:::-;69640:23;;:7;:5;:7::i;:::-;:23;;;69632:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70497:1:::1;70477:22;;:8;:22;;;;70455:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;70610:8;70581:38;;70602:6;;;;;;;;;;;70581:38;;;;;;;;;;;;70639:8;70630:6;;:17;;;;;;;;;;;;;;;;;;70374:281:::0;:::o;70979:46::-;71023:2;70979:46;:::o;60937:127::-;61002:4;61026:30;61048:7;61026:12;:21;;:30;;;;:::i;:::-;61019:37;;60937:127;;;:::o;912:106::-;965:15;1000:10;993:17;;912:106;:::o;67351:192::-;67453:2;67426:15;:24;67442:7;67426:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;67509:7;67505:2;67471:46;;67480:23;67495:7;67480:14;:23::i;:::-;67471:46;;;;;;;;;;;;67351:192;;:::o;46585:155::-;46681:7;46713:19;46721:3;:10;;46713:7;:19::i;:::-;46706:26;;46585:155;;;:::o;61231:459::-;61360:4;61404:16;61412:7;61404;:16::i;:::-;61382:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;61503:13;61519:23;61534:7;61519:14;:23::i;:::-;61503:39;;61572:5;61561:16;;:7;:16;;;:64;;;;61618:7;61594:31;;:20;61606:7;61594:11;:20::i;:::-;:31;;;61561:64;:120;;;;61642:39;61666:5;61673:7;61642:23;:39::i;:::-;61561:120;61553:129;;;61231:459;;;;:::o;64542:670::-;64715:4;64688:31;;:23;64703:7;64688:14;:23::i;:::-;:31;;;64666:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;64839:1;64825:16;;:2;:16;;;;64817:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;64895:39;64916:4;64922:2;64926:7;64895:20;:39::i;:::-;64999:29;65016:1;65020:7;64999:8;:29::i;:::-;65041:35;65068:7;65041:13;:19;65055:4;65041:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;65087:30;65109:7;65087:13;:17;65101:2;65087:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;65130:29;65147:7;65156:2;65130:12;:16;;:29;;;;;:::i;:::-;;65196:7;65192:2;65177:27;;65186:4;65177:27;;;;;;;;;;;;64542:670;;;:::o;38027:169::-;38125:7;38165:22;38169:3;:10;;38181:5;38165:3;:22::i;:::-;38157:31;;38150:38;;38027:169;;;;:::o;15415:220::-;15473:7;15502:1;15497;:6;15493:20;;;15512:1;15505:8;;;;15493:20;15524:9;15540:1;15536;:5;15524:17;;15569:1;15564;15560;:5;;;;;;:10;15552:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;15626:1;15619:8;;;15415:220;;;;;:::o;16113:153::-;16171:7;16203:1;16199;:5;16191:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;16257:1;16253;:5;;;;;;16246:12;;16113:153;;;;:::o;47088:268::-;47195:7;47204;47230:11;47243:13;47260:22;47264:3;:10;;47276:5;47260:3;:22::i;:::-;47229:53;;;;47309:3;47301:12;;47339:5;47331:14;;47293:55;;;;;;47088:268;;;;;:::o;65873:100::-;65957:8;65946;:19;;;;;;;;;;;;:::i;:::-;;65873:100;:::o;48470:292::-;48611:7;48693:44;48698:3;:10;;48718:3;48710:12;;48724;48693:4;:44::i;:::-;48685:53;;48631:123;;48470:292;;;;;:::o;62033:110::-;62109:26;62119:2;62123:7;62109:26;;;;;;;;;;;;:9;:26::i;:::-;62033:110;;:::o;14998:158::-;15056:7;15089:1;15084;:6;;15076:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;15147:1;15143;:5;15136:12;;14998:158;;;;:::o;37559:114::-;37619:7;37646:19;37654:3;:10;;37646:7;:19::i;:::-;37639:26;;37559:114;;;:::o;60272:352::-;60429:28;60439:4;60445:2;60449:7;60429:9;:28::i;:::-;60490:48;60513:4;60519:2;60523:7;60532:5;60490:22;:48::i;:::-;60468:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;60272:352;;;;:::o;49009:748::-;49065:13;49295:1;49286:5;:10;49282:53;;;49313:10;;;;;;;;;;;;;;;;;;;;;49282:53;49345:12;49360:5;49345:20;;49376:14;49401:78;49416:1;49408:4;:9;49401:78;;49434:8;;;;;;;49465:2;49457:10;;;;;;;;;49401:78;;;49489:19;49521:6;49511:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49489:39;;49539:13;49564:1;49555:6;:10;49539:26;;49583:5;49576:12;;49599:119;49614:1;49606:4;:9;49599:119;;49676:2;49669:4;:9;;;;;;49663:2;:16;49650:31;;49632:6;49639:7;;;;;;;49632:15;;;;;;;;;;;:49;;;;;;;;;;;49704:2;49696:10;;;;;;;;;49599:119;;;49742:6;49728:21;;;;;;49009:748;;;;:::o;14536:179::-;14594:7;14614:9;14630:1;14626;:5;14614:17;;14655:1;14650;:6;;14642:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;14706:1;14699:8;;;14536:179;;;;:::o;46314:183::-;46425:4;46454:35;46464:3;:10;;46484:3;46476:12;;46454:9;:35::i;:::-;46447:42;;46314:183;;;;:::o;42930:110::-;42986:7;43013:3;:12;;:19;;;;43006:26;;42930:110;;;:::o;68156:126::-;;;;:::o;37049:160::-;37137:4;37166:35;37174:3;:10;;37194:5;37186:14;;37166:7;:35::i;:::-;37159:42;;37049:160;;;;:::o;36742:131::-;36809:4;36833:32;36838:3;:10;;36858:5;36850:14;;36833:4;:32::i;:::-;36826:39;;36742:131;;;;:::o;45680:219::-;45803:4;45827:64;45832:3;:10;;45852:3;45844:12;;45882:5;45866:23;;45858:32;;45827:4;:64::i;:::-;45820:71;;45680:219;;;;;:::o;32693:273::-;32787:7;32855:5;32834:3;:11;;:18;;;;:26;32812:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;32940:3;:11;;32952:5;32940:18;;;;;;;;;;;;;;;;32933:25;;32693:273;;;;:::o;43405:348::-;43499:7;43508;43577:5;43555:3;:12;;:19;;;;:27;43533:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;43657:22;43682:3;:12;;43695:5;43682:19;;;;;;;;;;;;;;;;;;43657:44;;43720:5;:10;;;43732:5;:12;;;43712:33;;;;;43405:348;;;;;:::o;45003:353::-;45131:7;45151:16;45170:3;:12;;:17;45183:3;45170:17;;;;;;;;;;;;45151:36;;45218:1;45206:8;:13;;45221:12;45198:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;45288:3;:12;;45312:1;45301:8;:12;45288:26;;;;;;;;;;;;;;;;;;:33;;;45281:40;;;45003:353;;;;;:::o;62370:321::-;62500:18;62506:2;62510:7;62500:5;:18::i;:::-;62551:54;62582:1;62586:2;62590:7;62599:5;62551:22;:54::i;:::-;62529:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;62370:321;;;:::o;32230:109::-;32286:7;32313:3;:11;;:18;;;;32306:25;;32230:109;;;:::o;66538:694::-;66693:4;66715:15;:2;:13;;;:15::i;:::-;66710:60;;66754:4;66747:11;;;;66710:60;66780:23;66806:313;66877:45;;;66941:12;:10;:12::i;:::-;66972:4;66995:7;67021:5;66836:205;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66806:313;;;;;;;;;;;;;;;;;:2;:15;;;;:313;;;;;:::i;:::-;66780:339;;67130:13;67157:10;67146:32;;;;;;;;;;;;:::i;:::-;67130:48;;50532:10;67207:16;;67197:26;;;:6;:26;;;;67189:35;;;;66538:694;;;;;;;:::o;42678:157::-;42776:4;42826:1;42805:3;:12;;:17;42818:3;42805:17;;;;;;;;;;;;:22;;42798:29;;42678:157;;;;:::o;30340:1557::-;30406:4;30524:18;30545:3;:12;;:19;30558:5;30545:19;;;;;;;;;;;;30524:40;;30595:1;30581:10;:15;30577:1313;;30956:21;30993:1;30980:10;:14;30956:38;;31009:17;31050:1;31029:3;:11;;:18;;;;:22;31009:42;;31296:17;31316:3;:11;;31328:9;31316:22;;;;;;;;;;;;;;;;31296:42;;31462:9;31433:3;:11;;31445:13;31433:26;;;;;;;;;;;;;;;:38;;;;31581:1;31565:13;:17;31539:3;:12;;:23;31552:9;31539:23;;;;;;;;;;;:43;;;;31691:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;31786:3;:12;;:19;31799:5;31786:19;;;;;;;;;;;31779:26;;;31829:4;31822:11;;;;;;;;30577:1313;31873:5;31866:12;;;30340:1557;;;;;:::o;29750:414::-;29813:4;29835:21;29845:3;29850:5;29835:9;:21::i;:::-;29830:327;;29873:3;:11;;29890:5;29873:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30056:3;:11;;:18;;;;30034:3;:12;;:19;30047:5;30034:19;;;;;;;;;;;:40;;;;30096:4;30089:11;;;;29830:327;30140:5;30133:12;;29750:414;;;;;:::o;40120:737::-;40230:4;40346:16;40365:3;:12;;:17;40378:3;40365:17;;;;;;;;;;;;40346:36;;40411:1;40399:8;:13;40395:455;;;40479:3;:12;;40497:36;;;;;;;;40513:3;40497:36;;;;40526:5;40497:36;;;40479:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40692:3;:12;;:19;;;;40672:3;:12;;:17;40685:3;40672:17;;;;;;;;;;;:39;;;;40733:4;40726:11;;;;;40395:455;40806:5;40770:3;:12;;40794:1;40783:8;:12;40770:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;40833:5;40826:12;;;40120:737;;;;;;:::o;63027:404::-;63121:1;63107:16;;:2;:16;;;;63099:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;63180:16;63188:7;63180;:16::i;:::-;63179:17;63171:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;63242:45;63271:1;63275:2;63279:7;63242:20;:45::i;:::-;63300:30;63322:7;63300:13;:17;63314:2;63300:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;63343:29;63360:7;63369:2;63343:12;:16;;:29;;;;;:::i;:::-;;63415:7;63411:2;63390:33;;63407:1;63390:33;;;;;;;;;;;;63027:404;;:::o;20075:444::-;20135:4;20343:12;20467:7;20455:20;20447:28;;20510:1;20503:4;:8;20496:15;;;20075:444;;;:::o;23112:229::-;23249:12;23281:52;23303:6;23311:4;23317:1;23320:12;23281:21;:52::i;:::-;23274:59;;23112:229;;;;;:::o;31983:161::-;32083:4;32135:1;32112:3;:12;;:19;32125:5;32112:19;;;;;;;;;;;;:24;;32105:31;;31983:161;;;;:::o;24328:632::-;24498:12;24570:5;24545:21;:30;;24523:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;24660:18;24671:6;24660:10;:18::i;:::-;24652:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;24786:12;24800:23;24827:6;:11;;24846:5;24867:4;24827:55;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24785:97;;;;24900:52;24918:7;24927:10;24939:12;24900:17;:52::i;:::-;24893:59;;;;24328:632;;;;;;:::o;27251:777::-;27401:12;27430:7;27426:595;;;27461:10;27454:17;;;;27426:595;27595:1;27575:10;:17;:21;27571:439;;;27838:10;27832:17;27899:15;27886:10;27882:2;27878:19;27871:44;27786:148;27981:12;27974:20;;;;;;;;;;;:::i;:::-;;;;;;;;27251:777;;;;;;:::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:326::-;;10812:67;10876:2;10871:3;10812:67;:::i;:::-;10805:74;;10909:30;10905:1;10900:3;10896:11;10889:51;10966:2;10961:3;10957:12;10950:19;;10795:180;;;:::o;10981:370::-;;11144:67;11208:2;11203:3;11144:67;:::i;:::-;11137:74;;11241:34;11237:1;11232:3;11228:11;11221:55;11307:8;11302:2;11297:3;11293:12;11286:30;11342:2;11337:3;11333:12;11326:19;;11127:224;;;:::o;11357:326::-;;11520:67;11584:2;11579:3;11520:67;:::i;:::-;11513:74;;11617:30;11613:1;11608:3;11604:11;11597:51;11674:2;11669:3;11665:12;11658:19;;11503:180;;;:::o;11689:325::-;;11852:67;11916:2;11911:3;11852:67;:::i;:::-;11845:74;;11949:29;11945:1;11940:3;11936:11;11929:50;12005:2;12000:3;11996:12;11989:19;;11835:179;;;:::o;12020:330::-;;12183:67;12247:2;12242:3;12183:67;:::i;:::-;12176:74;;12280:34;12276:1;12271:3;12267:11;12260:55;12341:2;12336:3;12332:12;12325:19;;12166:184;;;:::o;12356:368::-;;12519:67;12583:2;12578:3;12519:67;:::i;:::-;12512:74;;12616:34;12612:1;12607:3;12603:11;12596:55;12682:6;12677:2;12672:3;12668:12;12661:28;12715:2;12710:3;12706:12;12699:19;;12502:222;;;:::o;12730:323::-;;12893:67;12957:2;12952:3;12893:67;:::i;:::-;12886:74;;12990:27;12986:1;12981:3;12977:11;12970:48;13044:2;13039:3;13035:12;13028:19;;12876:177;;;:::o;13059:329::-;;13222:67;13286:2;13281:3;13222:67;:::i;:::-;13215:74;;13319:33;13315:1;13310:3;13306:11;13299:54;13379:2;13374:3;13370:12;13363:19;;13205:183;;;:::o;13394:328::-;;13557:67;13621:2;13616:3;13557:67;:::i;:::-;13550:74;;13654:32;13650:1;13645:3;13641:11;13634:53;13713:2;13708:3;13704:12;13697:19;;13540:182;;;:::o;13728:370::-;;13891:67;13955:2;13950:3;13891:67;:::i;:::-;13884:74;;13988:34;13984:1;13979:3;13975:11;13968:55;14054:8;14049:2;14044:3;14040:12;14033:30;14089:2;14084:3;14080:12;14073:19;;13874:224;;;:::o;14104:376::-;;14267:67;14331:2;14326:3;14267:67;:::i;:::-;14260:74;;14364:34;14360:1;14355:3;14351:11;14344:55;14430:14;14425:2;14420:3;14416:12;14409:36;14471:2;14466:3;14462:12;14455:19;;14250:230;;;:::o;14486:324::-;;14649:67;14713:2;14708:3;14649:67;:::i;:::-;14642:74;;14746:28;14742:1;14737:3;14733:11;14726:49;14801:2;14796:3;14792:12;14785:19;;14632:178;;;:::o;14816:365::-;;14979:67;15043:2;15038:3;14979:67;:::i;:::-;14972:74;;15076:34;15072:1;15067:3;15063:11;15056:55;15142:3;15137:2;15132:3;15128:12;15121:25;15172:2;15167:3;15163:12;15156:19;;14962:219;;;:::o;15187:388::-;;15350:67;15414:2;15409:3;15350:67;:::i;:::-;15343:74;;15447:34;15443:1;15438:3;15434:11;15427:55;15513:26;15508:2;15503:3;15499:12;15492:48;15566:2;15561:3;15557:12;15550:19;;15333:242;;;:::o;15581:374::-;;15744:67;15808:2;15803:3;15744:67;:::i;:::-;15737:74;;15841:34;15837:1;15832:3;15828:11;15821:55;15907:12;15902:2;15897:3;15893:12;15886:34;15946:2;15941:3;15937:12;15930:19;;15727:228;;;:::o;15961:366::-;;16124:67;16188:2;16183:3;16124:67;:::i;:::-;16117:74;;16221:34;16217:1;16212:3;16208:11;16201:55;16287:4;16282:2;16277:3;16273:12;16266:26;16318:2;16313:3;16309:12;16302:19;;16107:220;;;:::o;16333:330::-;;16496:67;16560:2;16555:3;16496:67;:::i;:::-;16489:74;;16593:34;16589:1;16584:3;16580:11;16573:55;16654:2;16649:3;16645:12;16638:19;;16479:184;;;:::o;16669:365::-;;16832:67;16896:2;16891:3;16832:67;:::i;:::-;16825:74;;16929:34;16925:1;16920:3;16916:11;16909:55;16995:3;16990:2;16985:3;16981:12;16974:25;17025:2;17020:3;17016:12;17009:19;;16815:219;;;:::o;17040:376::-;;17203:67;17267:2;17262:3;17203:67;:::i;:::-;17196:74;;17300:34;17296:1;17291:3;17287:11;17280:55;17366:14;17361:2;17356:3;17352:12;17345:36;17407:2;17402:3;17398:12;17391:19;;17186:230;;;:::o;17422:375::-;;17585:67;17649:2;17644:3;17585:67;:::i;:::-;17578:74;;17682:34;17678:1;17673:3;17669:11;17662:55;17748:13;17743:2;17738:3;17734:12;17727:35;17788:2;17783:3;17779:12;17772:19;;17568:229;;;:::o;17803:330::-;;17966:67;18030:2;18025:3;17966:67;:::i;:::-;17959:74;;18063:34;18059:1;18054:3;18050:11;18043:55;18124:2;18119:3;18115:12;18108:19;;17949:184;;;:::o;18139:373::-;;18302:67;18366:2;18361:3;18302:67;:::i;:::-;18295:74;;18399:34;18395:1;18390:3;18386:11;18379:55;18465:11;18460:2;18455:3;18451:12;18444:33;18503:2;18498:3;18494:12;18487:19;;18285:227;;;:::o;18518:379::-;;18681:67;18745:2;18740:3;18681:67;:::i;:::-;18674:74;;18778:34;18774:1;18769:3;18765:11;18758:55;18844:17;18839:2;18834:3;18830:12;18823:39;18888:2;18883:3;18879:12;18872:19;;18664:233;;;:::o;18903:368::-;;19066:67;19130:2;19125:3;19066:67;:::i;:::-;19059:74;;19163:34;19159:1;19154:3;19150:11;19143:55;19229:6;19224:2;19219:3;19215:12;19208:28;19262:2;19257:3;19253:12;19246:19;;19049:222;;;:::o;19277:365::-;;19440:67;19504:2;19499:3;19440:67;:::i;:::-;19433:74;;19537:34;19533:1;19528:3;19524:11;19517:55;19603:3;19598:2;19593:3;19589:12;19582:25;19633:2;19628:3;19624:12;19617:19;;19423:219;;;:::o;19648:320::-;;19811:67;19875:2;19870:3;19811:67;:::i;:::-;19804:74;;19908:24;19904:1;19899:3;19895:11;19888:45;19959:2;19954:3;19950:12;19943:19;;19794:174;;;:::o;19974:297::-;;20154:83;20235:1;20230:3;20154:83;:::i;:::-;20147:90;;20263:1;20258:3;20254:11;20247:18;;20137:134;;;:::o;20277:381::-;;20440:67;20504:2;20499:3;20440:67;:::i;:::-;20433:74;;20537:34;20533:1;20528:3;20524:11;20517:55;20603:19;20598:2;20593:3;20589:12;20582:41;20649:2;20644:3;20640:12;20633:19;;20423:235;;;:::o;20664:327::-;;20827:67;20891:2;20886:3;20827:67;:::i;:::-;20820:74;;20924:31;20920:1;20915:3;20911:11;20904:52;20982:2;20977:3;20973:12;20966:19;;20810:181;;;:::o;20997:108::-;21074:24;21092:5;21074:24;:::i;:::-;21069:3;21062:37;21052:53;;:::o;21111:118::-;21198:24;21216:5;21198:24;:::i;:::-;21193:3;21186:37;21176:53;;:::o;21235:271::-;;21387:93;21476:3;21467:6;21387:93;:::i;:::-;21380:100;;21497:3;21490:10;;21369:137;;;;:::o;21512:435::-;;21714:95;21805:3;21796:6;21714:95;:::i;:::-;21707:102;;21826:95;21917:3;21908:6;21826:95;:::i;:::-;21819:102;;21938:3;21931:10;;21696:251;;;;;:::o;21953:379::-;;22159:147;22302:3;22159:147;:::i;:::-;22152:154;;22323:3;22316:10;;22141:191;;;:::o;22338:222::-;;22469:2;22458:9;22454:18;22446:26;;22482:71;22550:1;22539:9;22535:17;22526:6;22482:71;:::i;:::-;22436:124;;;;:::o;22566:672::-;;22815:3;22804:9;22800:19;22792:27;;22829:87;22913:1;22902:9;22898:17;22889:6;22829:87;:::i;:::-;22926:72;22994:2;22983:9;22979:18;22970:6;22926:72;:::i;:::-;23008;23076:2;23065:9;23061:18;23052:6;23008:72;:::i;:::-;23127:9;23121:4;23117:20;23112:2;23101:9;23097:18;23090:48;23155:76;23226:4;23217:6;23155:76;:::i;:::-;23147:84;;22782:456;;;;;;;:::o;23244:373::-;;23425:2;23414:9;23410:18;23402:26;;23474:9;23468:4;23464:20;23460:1;23449:9;23445:17;23438:47;23502:108;23605:4;23596:6;23502:108;:::i;:::-;23494:116;;23392:225;;;;:::o;23623:210::-;;23748:2;23737:9;23733:18;23725:26;;23761:65;23823:1;23812:9;23808:17;23799:6;23761:65;:::i;:::-;23715:118;;;;:::o;23839:313::-;;23990:2;23979:9;23975:18;23967:26;;24039:9;24033:4;24029:20;24025:1;24014:9;24010:17;24003:47;24067:78;24140:4;24131:6;24067:78;:::i;:::-;24059:86;;23957:195;;;;:::o;24158:307::-;;24306:2;24295:9;24291:18;24283:26;;24355:9;24349:4;24345:20;24341:1;24330:9;24326:17;24319:47;24383:75;24453:4;24444:6;24383:75;:::i;:::-;24375:83;;24273:192;;;;:::o;24471:419::-;;24675:2;24664:9;24660:18;24652:26;;24724:9;24718:4;24714:20;24710:1;24699:9;24695:17;24688:47;24752:131;24878:4;24752:131;:::i;:::-;24744:139;;24642:248;;;:::o;24896:419::-;;25100:2;25089:9;25085:18;25077:26;;25149:9;25143:4;25139:20;25135:1;25124:9;25120:17;25113:47;25177:131;25303:4;25177:131;:::i;:::-;25169:139;;25067:248;;;:::o;25321:419::-;;25525:2;25514:9;25510:18;25502:26;;25574:9;25568:4;25564:20;25560:1;25549:9;25545:17;25538:47;25602:131;25728:4;25602:131;:::i;:::-;25594:139;;25492:248;;;:::o;25746:419::-;;25950:2;25939:9;25935:18;25927:26;;25999:9;25993:4;25989:20;25985:1;25974:9;25970:17;25963:47;26027:131;26153:4;26027:131;:::i;:::-;26019:139;;25917:248;;;:::o;26171:419::-;;26375:2;26364:9;26360:18;26352:26;;26424:9;26418:4;26414:20;26410:1;26399:9;26395:17;26388:47;26452:131;26578:4;26452:131;:::i;:::-;26444:139;;26342:248;;;:::o;26596:419::-;;26800:2;26789:9;26785:18;26777:26;;26849:9;26843:4;26839:20;26835:1;26824:9;26820:17;26813:47;26877:131;27003:4;26877:131;:::i;:::-;26869:139;;26767:248;;;:::o;27021:419::-;;27225:2;27214:9;27210:18;27202:26;;27274:9;27268:4;27264:20;27260:1;27249:9;27245:17;27238:47;27302:131;27428:4;27302:131;:::i;:::-;27294:139;;27192:248;;;:::o;27446:419::-;;27650:2;27639:9;27635:18;27627:26;;27699:9;27693:4;27689:20;27685:1;27674:9;27670:17;27663:47;27727:131;27853:4;27727:131;:::i;:::-;27719:139;;27617:248;;;:::o;27871:419::-;;28075:2;28064:9;28060:18;28052:26;;28124:9;28118:4;28114:20;28110:1;28099:9;28095:17;28088:47;28152:131;28278:4;28152:131;:::i;:::-;28144:139;;28042:248;;;:::o;28296:419::-;;28500:2;28489:9;28485:18;28477:26;;28549:9;28543:4;28539:20;28535:1;28524:9;28520:17;28513:47;28577:131;28703:4;28577:131;:::i;:::-;28569:139;;28467:248;;;:::o;28721:419::-;;28925:2;28914:9;28910:18;28902:26;;28974:9;28968:4;28964:20;28960:1;28949:9;28945:17;28938:47;29002:131;29128:4;29002:131;:::i;:::-;28994:139;;28892:248;;;:::o;29146:419::-;;29350:2;29339:9;29335:18;29327:26;;29399:9;29393:4;29389:20;29385:1;29374:9;29370:17;29363:47;29427:131;29553:4;29427:131;:::i;:::-;29419:139;;29317:248;;;:::o;29571:419::-;;29775:2;29764:9;29760:18;29752:26;;29824:9;29818:4;29814:20;29810:1;29799:9;29795:17;29788:47;29852:131;29978:4;29852:131;:::i;:::-;29844:139;;29742:248;;;:::o;29996:419::-;;30200:2;30189:9;30185:18;30177:26;;30249:9;30243:4;30239:20;30235:1;30224:9;30220:17;30213:47;30277:131;30403:4;30277:131;:::i;:::-;30269:139;;30167:248;;;:::o;30421:419::-;;30625:2;30614:9;30610:18;30602:26;;30674:9;30668:4;30664:20;30660:1;30649:9;30645:17;30638:47;30702:131;30828:4;30702:131;:::i;:::-;30694:139;;30592:248;;;:::o;30846:419::-;;31050:2;31039:9;31035:18;31027:26;;31099:9;31093:4;31089:20;31085:1;31074:9;31070:17;31063:47;31127:131;31253:4;31127:131;:::i;:::-;31119:139;;31017:248;;;:::o;31271:419::-;;31475:2;31464:9;31460:18;31452:26;;31524:9;31518:4;31514:20;31510:1;31499:9;31495:17;31488:47;31552:131;31678:4;31552:131;:::i;:::-;31544:139;;31442:248;;;:::o;31696:419::-;;31900:2;31889:9;31885:18;31877:26;;31949:9;31943:4;31939:20;31935:1;31924:9;31920:17;31913:47;31977:131;32103:4;31977:131;:::i;:::-;31969:139;;31867:248;;;:::o;32121:419::-;;32325:2;32314:9;32310:18;32302:26;;32374:9;32368:4;32364:20;32360:1;32349:9;32345:17;32338:47;32402:131;32528:4;32402:131;:::i;:::-;32394:139;;32292:248;;;:::o;32546:419::-;;32750:2;32739:9;32735:18;32727:26;;32799:9;32793:4;32789:20;32785:1;32774:9;32770:17;32763:47;32827:131;32953:4;32827:131;:::i;:::-;32819:139;;32717:248;;;:::o;32971:419::-;;33175:2;33164:9;33160:18;33152:26;;33224:9;33218:4;33214:20;33210:1;33199:9;33195:17;33188:47;33252:131;33378:4;33252:131;:::i;:::-;33244:139;;33142:248;;;:::o;33396:419::-;;33600:2;33589:9;33585:18;33577:26;;33649:9;33643:4;33639:20;33635:1;33624:9;33620:17;33613:47;33677:131;33803:4;33677:131;:::i;:::-;33669:139;;33567:248;;;:::o;33821:419::-;;34025:2;34014:9;34010:18;34002:26;;34074:9;34068:4;34064:20;34060:1;34049:9;34045:17;34038:47;34102:131;34228:4;34102:131;:::i;:::-;34094:139;;33992:248;;;:::o;34246:419::-;;34450:2;34439:9;34435:18;34427:26;;34499:9;34493:4;34489:20;34485:1;34474:9;34470:17;34463:47;34527:131;34653:4;34527:131;:::i;:::-;34519:139;;34417:248;;;:::o;34671:419::-;;34875:2;34864:9;34860:18;34852:26;;34924:9;34918:4;34914:20;34910:1;34899:9;34895:17;34888:47;34952:131;35078:4;34952:131;:::i;:::-;34944:139;;34842:248;;;:::o;35096:419::-;;35300:2;35289:9;35285:18;35277:26;;35349:9;35343:4;35339:20;35335:1;35324:9;35320:17;35313:47;35377:131;35503:4;35377:131;:::i;:::-;35369:139;;35267:248;;;:::o;35521:419::-;;35725:2;35714:9;35710:18;35702:26;;35774:9;35768:4;35764:20;35760:1;35749:9;35745:17;35738:47;35802:131;35928:4;35802:131;:::i;:::-;35794:139;;35692:248;;;:::o;35946:419::-;;36150:2;36139:9;36135:18;36127:26;;36199:9;36193:4;36189:20;36185:1;36174:9;36170:17;36163:47;36227:131;36353:4;36227:131;:::i;:::-;36219:139;;36117:248;;;:::o;36371:419::-;;36575:2;36564:9;36560:18;36552:26;;36624:9;36618:4;36614:20;36610:1;36599:9;36595:17;36588:47;36652:131;36778:4;36652:131;:::i;:::-;36644:139;;36542:248;;;:::o;36796:419::-;;37000:2;36989:9;36985:18;36977:26;;37049:9;37043:4;37039:20;37035:1;37024:9;37020:17;37013:47;37077:131;37203:4;37077:131;:::i;:::-;37069:139;;36967:248;;;:::o;37221:222::-;;37352:2;37341:9;37337:18;37329:26;;37365:71;37433:1;37422:9;37418:17;37409:6;37365:71;:::i;:::-;37319:124;;;;:::o;37449:278::-;;37515:2;37509:9;37499:19;;37557:4;37549:6;37545:17;37664:6;37652:10;37649:22;37628:18;37616:10;37613:34;37610:62;37607:2;;;37675:13;;:::i;:::-;37607:2;37710:10;37706:2;37699:22;37489:238;;;;:::o;37733:326::-;;37884:18;37876:6;37873:30;37870:2;;;37906:13;;:::i;:::-;37870:2;37986:4;37982:9;37975:4;37967:6;37963:17;37959:33;37951:41;;38047:4;38041;38037:15;38029:23;;37799:260;;;:::o;38065:327::-;;38217:18;38209:6;38206:30;38203:2;;;38239:13;;:::i;:::-;38203:2;38319:4;38315:9;38308:4;38300:6;38296:17;38292:33;38284:41;;38380:4;38374;38370:15;38362:23;;38132:260;;;:::o;38398:132::-;;38488:3;38480:11;;38518:4;38513:3;38509:14;38501:22;;38470:60;;;:::o;38536:141::-;;38608:3;38600:11;;38631:3;38628:1;38621:14;38665:4;38662:1;38652:18;38644:26;;38590:87;;;:::o;38683:114::-;;38784:5;38778:12;38768:22;;38757:40;;;:::o;38803:98::-;;38888:5;38882:12;38872:22;;38861:40;;;:::o;38907:99::-;;38993:5;38987:12;38977:22;;38966:40;;;:::o;39012:113::-;;39114:4;39109:3;39105:14;39097:22;;39087:38;;;:::o;39131:184::-;;39264:6;39259:3;39252:19;39304:4;39299:3;39295:14;39280:29;;39242:73;;;;:::o;39321:168::-;;39438:6;39433:3;39426:19;39478:4;39473:3;39469:14;39454:29;;39416:73;;;;:::o;39495:147::-;;39633:3;39618:18;;39608:34;;;;:::o;39648:169::-;;39766:6;39761:3;39754:19;39806:4;39801:3;39797:14;39782:29;;39744:73;;;;:::o;39823:148::-;;39962:3;39947:18;;39937:34;;;;:::o;39977:96::-;;40043:24;40061:5;40043:24;:::i;:::-;40032:35;;40022:51;;;:::o;40079:104::-;;40153:24;40171:5;40153:24;:::i;:::-;40142:35;;40132:51;;;:::o;40189:90::-;;40266:5;40259:13;40252:21;40241:32;;40231:48;;;:::o;40285:149::-;;40361:66;40354:5;40350:78;40339:89;;40329:105;;;:::o;40440:126::-;;40517:42;40510:5;40506:54;40495:65;;40485:81;;;:::o;40572:77::-;;40638:5;40627:16;;40617:32;;;:::o;40655:154::-;40739:6;40734:3;40729;40716:30;40801:1;40792:6;40787:3;40783:16;40776:27;40706:103;;;:::o;40815:307::-;40883:1;40893:113;40907:6;40904:1;40901:13;40893:113;;;40992:1;40987:3;40983:11;40977:18;40973:1;40968:3;40964:11;40957:39;40929:2;40926:1;40922:10;40917:15;;40893:113;;;41024:6;41021:1;41018:13;41015:2;;;41104:1;41095:6;41090:3;41086:16;41079:27;41015:2;40864:258;;;;:::o;41128:48::-;41161:9;41182:102;;41274:2;41270:7;41265:2;41258:5;41254:14;41250:28;41240:38;;41230:54;;;:::o;41290:122::-;41363:24;41381:5;41363:24;:::i;:::-;41356:5;41353:35;41343:2;;41402:1;41399;41392:12;41343:2;41333:79;:::o;41418:116::-;41488:21;41503:5;41488:21;:::i;:::-;41481:5;41478:32;41468:2;;41524:1;41521;41514:12;41468:2;41458:76;:::o;41540:120::-;41612:23;41629:5;41612:23;:::i;:::-;41605:5;41602:34;41592:2;;41650:1;41647;41640:12;41592:2;41582:78;:::o;41666:122::-;41739:24;41757:5;41739:24;:::i;:::-;41732:5;41729:35;41719:2;;41778:1;41775;41768:12;41719:2;41709:79;:::o

Swarm Source

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