ETH Price: $2,379.98 (-1.17%)

Token

Society of Lost Elves (SOLE)
 

Overview

Max Total Supply

61 SOLE

Holders

19

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SOLE
0x6318f034a969c061f3672bbb8f9a0318652a1abe
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
SocietyOfLostElves

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-19
*/

/** $SOLE Dev Notes: Copy-pasta'd from Lazy Lions Contract **/
/**
 *Submitted for verification at Etherscan.io on 2021-08-06
 */

/**
 *Ashur was here
 */

// SPDX-License-Identifier: MIT

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

pragma solidity >=0.6.0 <0.8.0;

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

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

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

pragma solidity >=0.6.0 <0.8.0;

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

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

pragma solidity >=0.6.2 <0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity >=0.6.2 <0.8.0;

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

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

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

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

pragma solidity >=0.6.2 <0.8.0;

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

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

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

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

pragma solidity >=0.6.0 <0.8.0;

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

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

pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity >=0.6.2 <0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

            bytes32 lastvalue = set._values[lastIndex];

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

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

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

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

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

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

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

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

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

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

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

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

    // UintSet

    struct UintSet {
        Set _inner;
    }

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

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

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

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

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

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

pragma solidity >=0.6.0 <0.8.0;

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

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

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

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

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

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

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

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

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

            MapEntry storage lastEntry = map._entries[lastIndex];

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

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

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

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

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

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

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

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

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

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

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

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

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

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

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

pragma solidity >=0.6.0 <0.8.0;

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

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

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

pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

    // Base URI
    string private _baseURI;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

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

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

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

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

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

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(tokenId);

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

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

pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

pragma solidity ^0.7.0;
pragma abicoder v2;

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

    string public ELF_PROVENANCE = ""; // IPFS PROVENANCE TO BE ADDED WHEN SOLD OUT

    string public LICENSE_TEXT = "";

    bool licenseLocked = false;

    uint256 public elfPrice = 50000000000000000; // 0.050 ETH

    uint256 public constant maxElfPurchase = 20;

    uint256 public constant MAX_ELVES = 10000;

    bool public saleIsActive = false;

    uint256 public elfReserve = 250;

    event licenseisLocked(string _licenseText);

    constructor() ERC721("Society of Lost Elves", "SOLE") {}

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        msg.sender.transfer(balance);
    }

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

    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        ELF_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 AN ELF 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 mintElf(uint256 numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint Elf");
        require(
            numberOfTokens > 0 && numberOfTokens <= maxElfPurchase,
            "Can only mint 20 tokens at a time"
        );
        require(
            totalSupply().add(numberOfTokens) <= MAX_ELVES,
            "Purchase would exceed max supply of Elves"
        );
        require(
            msg.value >= elfPrice.mul(numberOfTokens),
            "Ether value sent is not correct"
        );

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

    function setelfPrice(uint256 newPrice) public onlyOwner {
        elfPrice = newPrice;
    }
}

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":"ELF_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LICENSE_TEXT","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ELVES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_license","type":"string"}],"name":"changeLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"elfPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"elfReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxElfPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintElf","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":"reserveElves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setelfPrice","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"}]

608060405260405180602001604052806000815250600b90805190602001906200002b9291906200033f565b5060405180602001604052806000815250600c9080519060200190620000539291906200033f565b506000600d60006101000a81548160ff02191690831515021790555066b1a2bc2ec50000600e556000600f60006101000a81548160ff02191690831515021790555060fa601055348015620000a757600080fd5b506040518060400160405280601581526020017f536f6369657479206f66204c6f737420456c76657300000000000000000000008152506040518060400160405280600481526020017f534f4c45000000000000000000000000000000000000000000000000000000008152506200012c6301ffc9a760e01b6200025f60201b60201c565b8160069080519060200190620001449291906200033f565b5080600790805190602001906200015d9291906200033f565b50620001766380ac58cd60e01b6200025f60201b60201c565b6200018e635b5e139f60e01b6200025f60201b60201c565b620001a663780e9d6360e01b6200025f60201b60201c565b50506000620001ba6200033760201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200046a565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620002cb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c29062000437565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620003775760008555620003c3565b82601f106200039257805160ff1916838001178555620003c3565b82800160010185558215620003c3579182015b82811115620003c2578251825591602001919060010190620003a5565b5b509050620003d29190620003d6565b5090565b5b80821115620003f1576000816000905550600101620003d7565b5090565b600062000404601c8362000459565b91507f4552433136353a20696e76616c696420696e74657266616365206964000000006000830152602082019050919050565b600060208201905081810360008301526200045281620003f5565b9050919050565b600082825260208201905092915050565b61498c806200047a6000396000f3fe6080604052600436106102255760003560e01c80637e8846f111610123578063b09904b5116100ab578063d9b137b21161006f578063d9b137b2146107e1578063da1e866d1461081e578063e985e9c51461083a578063eb8d244414610877578063f2fde38b146108a257610225565b8063b09904b514610710578063b88d4fde14610739578063bf4702fc14610762578063c87b56dd14610779578063d582aff9146107b657610225565b80638936d8ac116100f25780638936d8ac1461063b5780638da5cb5b1461066657806395d89b41146106915780639c3e72bd146106bc578063a22cb465146106e757610225565b80637e8846f1146105815780637eabf132146105aa5780638139495a146105d55780638462151c146105fe57610225565b806334918dfd116101b15780636212526011610175578063621252601461049a5780636352211e146104c55780636c0360eb1461050257806370a082311461052d578063715018a61461056a57610225565b806334918dfd146103dd5780633ccfd60b146103f457806342842e0e1461040b5780634f6ccce71461043457806355f804b31461047157610225565b8063095ea7b3116101f8578063095ea7b3146102fa578063109695231461032357806318160ddd1461034c57806323b872dd146103775780632f745c59146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063081aae79146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613513565b6108cb565b60405161025e919061427d565b60405180910390f35b34801561027357600080fd5b5061027c610932565b6040516102899190614298565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906135a6565b6109d4565b6040516102c691906141f4565b60405180910390f35b3480156102db57600080fd5b506102e4610a59565b6040516102f1919061467c565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c91906134d7565b610a5f565b005b34801561032f57600080fd5b5061034a60048036038101906103459190613565565b610b77565b005b34801561035857600080fd5b50610361610c0d565b60405161036e919061467c565b60405180910390f35b34801561038357600080fd5b5061039e600480360381019061039991906133d1565b610c1e565b005b3480156103ac57600080fd5b506103c760048036038101906103c291906134d7565b610c7e565b6040516103d4919061467c565b60405180910390f35b3480156103e957600080fd5b506103f2610cd9565b005b34801561040057600080fd5b50610409610d81565b005b34801561041757600080fd5b50610432600480360381019061042d91906133d1565b610e4c565b005b34801561044057600080fd5b5061045b600480360381019061045691906135a6565b610e6c565b604051610468919061467c565b60405180910390f35b34801561047d57600080fd5b5061049860048036038101906104939190613565565b610e8f565b005b3480156104a657600080fd5b506104af610f17565b6040516104bc9190614298565b60405180910390f35b3480156104d157600080fd5b506104ec60048036038101906104e791906135a6565b610fb5565b6040516104f991906141f4565b60405180910390f35b34801561050e57600080fd5b50610517610fec565b6040516105249190614298565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f919061336c565b61108e565b604051610561919061467c565b60405180910390f35b34801561057657600080fd5b5061057f61114d565b005b34801561058d57600080fd5b506105a860048036038101906105a391906135a6565b61128a565b005b3480156105b657600080fd5b506105bf611310565b6040516105cc919061467c565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f791906134d7565b611316565b005b34801561060a57600080fd5b506106256004803603810190610620919061336c565b611434565b604051610632919061425b565b60405180910390f35b34801561064757600080fd5b5061065061152d565b60405161065d919061467c565b60405180910390f35b34801561067257600080fd5b5061067b611532565b60405161068891906141f4565b60405180910390f35b34801561069d57600080fd5b506106a661155c565b6040516106b39190614298565b60405180910390f35b3480156106c857600080fd5b506106d16115fe565b6040516106de9190614298565b60405180910390f35b3480156106f357600080fd5b5061070e6004803603810190610709919061349b565b61169c565b005b34801561071c57600080fd5b5061073760048036038101906107329190613565565b61181d565b005b34801561074557600080fd5b50610760600480360381019061075b9190613420565b611909565b005b34801561076e57600080fd5b5061077761196b565b005b34801561078557600080fd5b506107a0600480360381019061079b91906135a6565b611a3c565b6040516107ad9190614298565b60405180910390f35b3480156107c257600080fd5b506107cb611bbf565b6040516107d8919061467c565b60405180910390f35b3480156107ed57600080fd5b50610808600480360381019061080391906135a6565b611bc5565b6040516108159190614298565b60405180910390f35b610838600480360381019061083391906135a6565b611cb2565b005b34801561084657600080fd5b50610861600480360381019061085c9190613395565b611e4b565b60405161086e919061427d565b60405180910390f35b34801561088357600080fd5b5061088c611edf565b604051610899919061427d565b60405180910390f35b3480156108ae57600080fd5b506108c960048036038101906108c4919061336c565b611ef2565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109ca5780601f1061099f576101008083540402835291602001916109ca565b820191906000526020600020905b8154815290600101906020018083116109ad57829003601f168201915b5050505050905090565b60006109df8261209e565b610a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a159061453c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61271081565b6000610a6a82610fb5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad2906145dc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610afa6120bb565b73ffffffffffffffffffffffffffffffffffffffff161480610b295750610b2881610b236120bb565b611e4b565b5b610b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5f9061449c565b60405180910390fd5b610b7283836120c3565b505050565b610b7f6120bb565b73ffffffffffffffffffffffffffffffffffffffff16610b9d611532565b73ffffffffffffffffffffffffffffffffffffffff1614610bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bea9061455c565b60405180910390fd5b80600b9080519060200190610c09929190613188565b5050565b6000610c19600261217c565b905090565b610c2f610c296120bb565b82612191565b610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c659061461c565b60405180910390fd5b610c7983838361226f565b505050565b6000610cd182600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061248690919063ffffffff16565b905092915050565b610ce16120bb565b73ffffffffffffffffffffffffffffffffffffffff16610cff611532565b73ffffffffffffffffffffffffffffffffffffffff1614610d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c9061455c565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b610d896120bb565b73ffffffffffffffffffffffffffffffffffffffff16610da7611532565b73ffffffffffffffffffffffffffffffffffffffff1614610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df49061455c565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e48573d6000803e3d6000fd5b5050565b610e6783838360405180602001604052806000815250611909565b505050565b600080610e838360026124a090919063ffffffff16565b50905080915050919050565b610e976120bb565b73ffffffffffffffffffffffffffffffffffffffff16610eb5611532565b73ffffffffffffffffffffffffffffffffffffffff1614610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f029061455c565b60405180910390fd5b610f14816124cc565b50565b600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610fad5780601f10610f8257610100808354040283529160200191610fad565b820191906000526020600020905b815481529060010190602001808311610f9057829003601f168201915b505050505081565b6000610fe58260405180606001604052806029815260200161492e6029913960026124e69092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110845780601f1061105957610100808354040283529160200191611084565b820191906000526020600020905b81548152906001019060200180831161106757829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f6906144bc565b60405180910390fd5b611146600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612505565b9050919050565b6111556120bb565b73ffffffffffffffffffffffffffffffffffffffff16611173611532565b73ffffffffffffffffffffffffffffffffffffffff16146111c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c09061455c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6112926120bb565b73ffffffffffffffffffffffffffffffffffffffff166112b0611532565b73ffffffffffffffffffffffffffffffffffffffff1614611306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fd9061455c565b60405180910390fd5b80600e8190555050565b600e5481565b61131e6120bb565b73ffffffffffffffffffffffffffffffffffffffff1661133c611532565b73ffffffffffffffffffffffffffffffffffffffff1614611392576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113899061455c565b60405180910390fd5b600061139c610c0d565b90506000821180156113b057506010548211155b6113ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e69061439c565b60405180910390fd5b60005b82811015611413576114068482840161251a565b80806001019150506113f2565b506114298260105461253890919063ffffffff16565b601081905550505050565b606060006114418361108e565b9050600081141561149c57600067ffffffffffffffff8111801561146457600080fd5b506040519080825280602002602001820160405280156114935781602001602082028036833780820191505090505b50915050611528565b60008167ffffffffffffffff811180156114b557600080fd5b506040519080825280602002602001820160405280156114e45781602001602082028036833780820191505090505b50905060005b82811015611521576114fc8582610c7e565b82828151811061150857fe5b60200260200101818152505080806001019150506114ea565b8193505050505b919050565b601481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156115f45780601f106115c9576101008083540402835291602001916115f4565b820191906000526020600020905b8154815290600101906020018083116115d757829003601f168201915b5050505050905090565b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116945780601f1061166957610100808354040283529160200191611694565b820191906000526020600020905b81548152906001019060200180831161167757829003601f168201915b505050505081565b6116a46120bb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611712576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611709906143dc565b60405180910390fd5b806005600061171f6120bb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117cc6120bb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611811919061427d565b60405180910390a35050565b6118256120bb565b73ffffffffffffffffffffffffffffffffffffffff16611843611532565b73ffffffffffffffffffffffffffffffffffffffff1614611899576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118909061455c565b60405180910390fd5b60001515600d60009054906101000a900460ff161515146118ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e6906145fc565b60405180910390fd5b80600c9080519060200190611905929190613188565b5050565b61191a6119146120bb565b83612191565b611959576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119509061461c565b60405180910390fd5b61196584848484612588565b50505050565b6119736120bb565b73ffffffffffffffffffffffffffffffffffffffff16611991611532565b73ffffffffffffffffffffffffffffffffffffffff16146119e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119de9061455c565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055507f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0600c604051611a3291906142ba565b60405180910390a1565b6060611a478261209e565b611a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7d9061459c565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b2f5780601f10611b0457610100808354040283529160200191611b2f565b820191906000526020600020905b815481529060010190602001808311611b1257829003601f168201915b505050505090506000611b40610fec565b9050600081511415611b56578192505050611bba565b600082511115611b8b578082604051602001611b739291906141d0565b60405160208183030381529060405292505050611bba565b80611b95856125e4565b604051602001611ba69291906141d0565b604051602081830303815290604052925050505b919050565b60105481565b6060611bcf610c0d565b8210611c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c079061437c565b60405180910390fd5b600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611ca65780601f10611c7b57610100808354040283529160200191611ca6565b820191906000526020600020905b815481529060010190602001808311611c8957829003601f168201915b50505050509050919050565b600f60009054906101000a900460ff16611d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf89061465c565b60405180910390fd5b600081118015611d12575060148111155b611d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d489061447c565b60405180910390fd5b612710611d6e82611d60610c0d565b61272b90919063ffffffff16565b1115611daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da6906145bc565b60405180910390fd5b611dc481600e5461278090919063ffffffff16565b341015611e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfd906143fc565b60405180910390fd5b60005b81811015611e47576000611e1b610c0d565b9050612710611e28610c0d565b1015611e3957611e38338261251a565b5b508080600101915050611e09565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60009054906101000a900460ff1681565b611efa6120bb565b73ffffffffffffffffffffffffffffffffffffffff16611f18611532565b73ffffffffffffffffffffffffffffffffffffffff1614611f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f659061455c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd59061431c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006120b48260026127f090919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661213683610fb5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061218a8260000161280a565b9050919050565b600061219c8261209e565b6121db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d29061445c565b60405180910390fd5b60006121e683610fb5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061225557508373ffffffffffffffffffffffffffffffffffffffff1661223d846109d4565b73ffffffffffffffffffffffffffffffffffffffff16145b8061226657506122658185611e4b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661228f82610fb5565b73ffffffffffffffffffffffffffffffffffffffff16146122e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dc9061457c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234c906143bc565b60405180910390fd5b61236083838361281b565b61236b6000826120c3565b6123bc81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061282090919063ffffffff16565b5061240e81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061283a90919063ffffffff16565b50612425818360026128549092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006124958360000183612889565b60001c905092915050565b6000806000806124b386600001866128f6565b915091508160001c8160001c9350935050509250929050565b80600990805190602001906124e2929190613188565b5050565b60006124f9846000018460001b84612979565b60001c90509392505050565b600061251382600001612a0a565b9050919050565b612534828260405180602001604052806000815250612a1b565b5050565b60008282111561257d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125749061441c565b60405180910390fd5b818303905092915050565b61259384848461226f565b61259f84848484612a76565b6125de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d5906142fc565b60405180910390fd5b50505050565b6060600082141561262c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612726565b600082905060005b60008214612656578080600101915050600a828161264e57fe5b049150612634565b60008167ffffffffffffffff8111801561266f57600080fd5b506040519080825280601f01601f1916602001820160405280156126a25781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461271e57600a84816126c357fe5b0660300160f81b828280600190039350815181106126dd57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161271657fe5b0493506126b1565b819450505050505b919050565b600080828401905083811015612776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276d9061435c565b60405180910390fd5b8091505092915050565b60008083141561279357600090506127ea565b60008284029050828482816127a457fe5b04146127e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127dc9061451c565b60405180910390fd5b809150505b92915050565b6000612802836000018360001b612bda565b905092915050565b600081600001805490509050919050565b505050565b6000612832836000018360001b612bfd565b905092915050565b600061284c836000018360001b612ce5565b905092915050565b6000612880846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b612d55565b90509392505050565b6000818360000180549050116128d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cb906142dc565b60405180910390fd5b8260000182815481106128e357fe5b9060005260206000200154905092915050565b60008082846000018054905011612942576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612939906144dc565b60405180910390fd5b600084600001848154811061295357fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b600080846001016000858152602001908152602001600020549050600081141583906129db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d29190614298565b60405180910390fd5b508460000160018203815481106129ee57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b612a258383612e31565b612a326000848484612a76565b612a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a68906142fc565b60405180910390fd5b505050565b6000612a978473ffffffffffffffffffffffffffffffffffffffff16612fbf565b612aa45760019050612bd2565b6000612b6b63150b7a0260e01b612ab96120bb565b888787604051602401612acf949392919061420f565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040518060600160405280603281526020016148fc603291398773ffffffffffffffffffffffffffffffffffffffff16612fd29092919063ffffffff16565b9050600081806020019051810190612b83919061353c565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114612cd95760006001820390506000600186600001805490500390506000866000018281548110612c4857fe5b9060005260206000200154905080876000018481548110612c6557fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612c9d57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612cdf565b60009150505b92915050565b6000612cf18383612fea565b612d4a578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612d4f565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415612dfc57846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050612e2a565b82856000016001830381548110612e0f57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e98906144fc565b60405180910390fd5b612eaa8161209e565b15612eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee19061433c565b60405180910390fd5b612ef66000838361281b565b612f4781600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061283a90919063ffffffff16565b50612f5e818360026128549092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060612fe1848460008561300d565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015613052576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130499061443c565b60405180910390fd5b61305b85612fbf565b61309a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130919061463c565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516130c391906141b9565b60006040518083038185875af1925050503d8060008114613100576040519150601f19603f3d011682016040523d82523d6000602084013e613105565b606091505b5091509150613115828286613121565b92505050949350505050565b6060831561313157829050613181565b6000835111156131445782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131789190614298565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826131be5760008555613205565b82601f106131d757805160ff1916838001178555613205565b82800160010185558215613205579182015b828111156132045782518255916020019190600101906131e9565b5b5090506132129190613216565b5090565b5b8082111561322f576000816000905550600101613217565b5090565b6000613246613241846146c8565b614697565b90508281526020810184848401111561325e57600080fd5b61326984828561484a565b509392505050565b600061328461327f846146f8565b614697565b90508281526020810184848401111561329c57600080fd5b6132a784828561484a565b509392505050565b6000813590506132be8161489f565b92915050565b6000813590506132d3816148b6565b92915050565b6000813590506132e8816148cd565b92915050565b6000815190506132fd816148cd565b92915050565b600082601f83011261331457600080fd5b8135613324848260208601613233565b91505092915050565b600082601f83011261333e57600080fd5b813561334e848260208601613271565b91505092915050565b600081359050613366816148e4565b92915050565b60006020828403121561337e57600080fd5b600061338c848285016132af565b91505092915050565b600080604083850312156133a857600080fd5b60006133b6858286016132af565b92505060206133c7858286016132af565b9150509250929050565b6000806000606084860312156133e657600080fd5b60006133f4868287016132af565b9350506020613405868287016132af565b925050604061341686828701613357565b9150509250925092565b6000806000806080858703121561343657600080fd5b6000613444878288016132af565b9450506020613455878288016132af565b935050604061346687828801613357565b925050606085013567ffffffffffffffff81111561348357600080fd5b61348f87828801613303565b91505092959194509250565b600080604083850312156134ae57600080fd5b60006134bc858286016132af565b92505060206134cd858286016132c4565b9150509250929050565b600080604083850312156134ea57600080fd5b60006134f8858286016132af565b925050602061350985828601613357565b9150509250929050565b60006020828403121561352557600080fd5b6000613533848285016132d9565b91505092915050565b60006020828403121561354e57600080fd5b600061355c848285016132ee565b91505092915050565b60006020828403121561357757600080fd5b600082013567ffffffffffffffff81111561359157600080fd5b61359d8482850161332d565b91505092915050565b6000602082840312156135b857600080fd5b60006135c684828501613357565b91505092915050565b60006135db838361419b565b60208301905092915050565b6135f0816147d6565b82525050565b6135ff816147c4565b82525050565b60006136108261474d565b61361a818561477b565b935061362583614728565b8060005b8381101561365657815161363d88826135cf565b97506136488361476e565b925050600181019050613629565b5085935050505092915050565b61366c816147e8565b82525050565b600061367d82614758565b613687818561478c565b9350613697818560208601614859565b6136a08161488e565b840191505092915050565b60006136b682614758565b6136c0818561479d565b93506136d0818560208601614859565b80840191505092915050565b60006136e782614763565b6136f181856147a8565b9350613701818560208601614859565b61370a8161488e565b840191505092915050565b600061372082614763565b61372a81856147b9565b935061373a818560208601614859565b80840191505092915050565b6000815460018116600081146137635760018114613789576137cd565b607f600283041661377481876147a8565b955060ff1983168652602086019350506137cd565b6002820461379781876147a8565b95506137a285614738565b60005b828110156137c4578154818901526001820191506020810190506137a5565b80880195505050505b505092915050565b60006137e26022836147a8565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138486032836147a8565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006138ae6026836147a8565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613914601c836147a8565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613954601b836147a8565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000613994601a836147a8565b91507f43484f4f534520414e20454c462057495448494e2052414e47450000000000006000830152602082019050919050565b60006139d46020836147a8565b91507f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d6000830152602082019050919050565b6000613a146024836147a8565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a7a6019836147a8565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613aba601f836147a8565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000613afa601e836147a8565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000613b3a6026836147a8565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ba0602c836147a8565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613c066021836147a8565b91507f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c6c6038836147a8565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613cd2602a836147a8565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d386022836147a8565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d9e6020836147a8565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613dde6021836147a8565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e44602c836147a8565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613eaa6020836147a8565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613eea6029836147a8565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f50602f836147a8565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613fb66029836147a8565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f6620456c76657300000000000000000000000000000000000000000000006020830152604082019050919050565b600061401c6021836147a8565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140826016836147a8565b91507f4c6963656e736520616c7265616479206c6f636b6564000000000000000000006000830152602082019050919050565b60006140c26031836147a8565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614128601d836147a8565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b6000614168601f836147a8565b91507f53616c65206d7573742062652061637469766520746f206d696e7420456c66006000830152602082019050919050565b6141a481614840565b82525050565b6141b381614840565b82525050565b60006141c582846136ab565b915081905092915050565b60006141dc8285613715565b91506141e88284613715565b91508190509392505050565b600060208201905061420960008301846135f6565b92915050565b600060808201905061422460008301876135e7565b61423160208301866135f6565b61423e60408301856141aa565b81810360608301526142508184613672565b905095945050505050565b600060208201905081810360008301526142758184613605565b905092915050565b60006020820190506142926000830184613663565b92915050565b600060208201905081810360008301526142b281846136dc565b905092915050565b600060208201905081810360008301526142d48184613746565b905092915050565b600060208201905081810360008301526142f5816137d5565b9050919050565b600060208201905081810360008301526143158161383b565b9050919050565b60006020820190508181036000830152614335816138a1565b9050919050565b6000602082019050818103600083015261435581613907565b9050919050565b6000602082019050818103600083015261437581613947565b9050919050565b6000602082019050818103600083015261439581613987565b9050919050565b600060208201905081810360008301526143b5816139c7565b9050919050565b600060208201905081810360008301526143d581613a07565b9050919050565b600060208201905081810360008301526143f581613a6d565b9050919050565b6000602082019050818103600083015261441581613aad565b9050919050565b6000602082019050818103600083015261443581613aed565b9050919050565b6000602082019050818103600083015261445581613b2d565b9050919050565b6000602082019050818103600083015261447581613b93565b9050919050565b6000602082019050818103600083015261449581613bf9565b9050919050565b600060208201905081810360008301526144b581613c5f565b9050919050565b600060208201905081810360008301526144d581613cc5565b9050919050565b600060208201905081810360008301526144f581613d2b565b9050919050565b6000602082019050818103600083015261451581613d91565b9050919050565b6000602082019050818103600083015261453581613dd1565b9050919050565b6000602082019050818103600083015261455581613e37565b9050919050565b6000602082019050818103600083015261457581613e9d565b9050919050565b6000602082019050818103600083015261459581613edd565b9050919050565b600060208201905081810360008301526145b581613f43565b9050919050565b600060208201905081810360008301526145d581613fa9565b9050919050565b600060208201905081810360008301526145f58161400f565b9050919050565b6000602082019050818103600083015261461581614075565b9050919050565b60006020820190508181036000830152614635816140b5565b9050919050565b600060208201905081810360008301526146558161411b565b9050919050565b600060208201905081810360008301526146758161415b565b9050919050565b600060208201905061469160008301846141aa565b92915050565b6000604051905081810181811067ffffffffffffffff821117156146be576146bd61488c565b5b8060405250919050565b600067ffffffffffffffff8211156146e3576146e261488c565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156147135761471261488c565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006147cf82614820565b9050919050565b60006147e182614820565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561487757808201518184015260208101905061485c565b83811115614886576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b6148a8816147c4565b81146148b357600080fd5b50565b6148bf816147e8565b81146148ca57600080fd5b50565b6148d6816147f4565b81146148e157600080fd5b50565b6148ed81614840565b81146148f857600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea26469706673582212200e9253bcbbe2ab5832b55fd65b05485da48d1221c6bd06bc668a50c6b4e979ec64736f6c63430007060033

Deployed Bytecode

0x6080604052600436106102255760003560e01c80637e8846f111610123578063b09904b5116100ab578063d9b137b21161006f578063d9b137b2146107e1578063da1e866d1461081e578063e985e9c51461083a578063eb8d244414610877578063f2fde38b146108a257610225565b8063b09904b514610710578063b88d4fde14610739578063bf4702fc14610762578063c87b56dd14610779578063d582aff9146107b657610225565b80638936d8ac116100f25780638936d8ac1461063b5780638da5cb5b1461066657806395d89b41146106915780639c3e72bd146106bc578063a22cb465146106e757610225565b80637e8846f1146105815780637eabf132146105aa5780638139495a146105d55780638462151c146105fe57610225565b806334918dfd116101b15780636212526011610175578063621252601461049a5780636352211e146104c55780636c0360eb1461050257806370a082311461052d578063715018a61461056a57610225565b806334918dfd146103dd5780633ccfd60b146103f457806342842e0e1461040b5780634f6ccce71461043457806355f804b31461047157610225565b8063095ea7b3116101f8578063095ea7b3146102fa578063109695231461032357806318160ddd1461034c57806323b872dd146103775780632f745c59146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063081aae79146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613513565b6108cb565b60405161025e919061427d565b60405180910390f35b34801561027357600080fd5b5061027c610932565b6040516102899190614298565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906135a6565b6109d4565b6040516102c691906141f4565b60405180910390f35b3480156102db57600080fd5b506102e4610a59565b6040516102f1919061467c565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c91906134d7565b610a5f565b005b34801561032f57600080fd5b5061034a60048036038101906103459190613565565b610b77565b005b34801561035857600080fd5b50610361610c0d565b60405161036e919061467c565b60405180910390f35b34801561038357600080fd5b5061039e600480360381019061039991906133d1565b610c1e565b005b3480156103ac57600080fd5b506103c760048036038101906103c291906134d7565b610c7e565b6040516103d4919061467c565b60405180910390f35b3480156103e957600080fd5b506103f2610cd9565b005b34801561040057600080fd5b50610409610d81565b005b34801561041757600080fd5b50610432600480360381019061042d91906133d1565b610e4c565b005b34801561044057600080fd5b5061045b600480360381019061045691906135a6565b610e6c565b604051610468919061467c565b60405180910390f35b34801561047d57600080fd5b5061049860048036038101906104939190613565565b610e8f565b005b3480156104a657600080fd5b506104af610f17565b6040516104bc9190614298565b60405180910390f35b3480156104d157600080fd5b506104ec60048036038101906104e791906135a6565b610fb5565b6040516104f991906141f4565b60405180910390f35b34801561050e57600080fd5b50610517610fec565b6040516105249190614298565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f919061336c565b61108e565b604051610561919061467c565b60405180910390f35b34801561057657600080fd5b5061057f61114d565b005b34801561058d57600080fd5b506105a860048036038101906105a391906135a6565b61128a565b005b3480156105b657600080fd5b506105bf611310565b6040516105cc919061467c565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f791906134d7565b611316565b005b34801561060a57600080fd5b506106256004803603810190610620919061336c565b611434565b604051610632919061425b565b60405180910390f35b34801561064757600080fd5b5061065061152d565b60405161065d919061467c565b60405180910390f35b34801561067257600080fd5b5061067b611532565b60405161068891906141f4565b60405180910390f35b34801561069d57600080fd5b506106a661155c565b6040516106b39190614298565b60405180910390f35b3480156106c857600080fd5b506106d16115fe565b6040516106de9190614298565b60405180910390f35b3480156106f357600080fd5b5061070e6004803603810190610709919061349b565b61169c565b005b34801561071c57600080fd5b5061073760048036038101906107329190613565565b61181d565b005b34801561074557600080fd5b50610760600480360381019061075b9190613420565b611909565b005b34801561076e57600080fd5b5061077761196b565b005b34801561078557600080fd5b506107a0600480360381019061079b91906135a6565b611a3c565b6040516107ad9190614298565b60405180910390f35b3480156107c257600080fd5b506107cb611bbf565b6040516107d8919061467c565b60405180910390f35b3480156107ed57600080fd5b50610808600480360381019061080391906135a6565b611bc5565b6040516108159190614298565b60405180910390f35b610838600480360381019061083391906135a6565b611cb2565b005b34801561084657600080fd5b50610861600480360381019061085c9190613395565b611e4b565b60405161086e919061427d565b60405180910390f35b34801561088357600080fd5b5061088c611edf565b604051610899919061427d565b60405180910390f35b3480156108ae57600080fd5b506108c960048036038101906108c4919061336c565b611ef2565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109ca5780601f1061099f576101008083540402835291602001916109ca565b820191906000526020600020905b8154815290600101906020018083116109ad57829003601f168201915b5050505050905090565b60006109df8261209e565b610a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a159061453c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61271081565b6000610a6a82610fb5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad2906145dc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610afa6120bb565b73ffffffffffffffffffffffffffffffffffffffff161480610b295750610b2881610b236120bb565b611e4b565b5b610b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5f9061449c565b60405180910390fd5b610b7283836120c3565b505050565b610b7f6120bb565b73ffffffffffffffffffffffffffffffffffffffff16610b9d611532565b73ffffffffffffffffffffffffffffffffffffffff1614610bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bea9061455c565b60405180910390fd5b80600b9080519060200190610c09929190613188565b5050565b6000610c19600261217c565b905090565b610c2f610c296120bb565b82612191565b610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c659061461c565b60405180910390fd5b610c7983838361226f565b505050565b6000610cd182600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061248690919063ffffffff16565b905092915050565b610ce16120bb565b73ffffffffffffffffffffffffffffffffffffffff16610cff611532565b73ffffffffffffffffffffffffffffffffffffffff1614610d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c9061455c565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b610d896120bb565b73ffffffffffffffffffffffffffffffffffffffff16610da7611532565b73ffffffffffffffffffffffffffffffffffffffff1614610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df49061455c565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e48573d6000803e3d6000fd5b5050565b610e6783838360405180602001604052806000815250611909565b505050565b600080610e838360026124a090919063ffffffff16565b50905080915050919050565b610e976120bb565b73ffffffffffffffffffffffffffffffffffffffff16610eb5611532565b73ffffffffffffffffffffffffffffffffffffffff1614610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f029061455c565b60405180910390fd5b610f14816124cc565b50565b600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610fad5780601f10610f8257610100808354040283529160200191610fad565b820191906000526020600020905b815481529060010190602001808311610f9057829003601f168201915b505050505081565b6000610fe58260405180606001604052806029815260200161492e6029913960026124e69092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110845780601f1061105957610100808354040283529160200191611084565b820191906000526020600020905b81548152906001019060200180831161106757829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f6906144bc565b60405180910390fd5b611146600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612505565b9050919050565b6111556120bb565b73ffffffffffffffffffffffffffffffffffffffff16611173611532565b73ffffffffffffffffffffffffffffffffffffffff16146111c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c09061455c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6112926120bb565b73ffffffffffffffffffffffffffffffffffffffff166112b0611532565b73ffffffffffffffffffffffffffffffffffffffff1614611306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fd9061455c565b60405180910390fd5b80600e8190555050565b600e5481565b61131e6120bb565b73ffffffffffffffffffffffffffffffffffffffff1661133c611532565b73ffffffffffffffffffffffffffffffffffffffff1614611392576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113899061455c565b60405180910390fd5b600061139c610c0d565b90506000821180156113b057506010548211155b6113ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e69061439c565b60405180910390fd5b60005b82811015611413576114068482840161251a565b80806001019150506113f2565b506114298260105461253890919063ffffffff16565b601081905550505050565b606060006114418361108e565b9050600081141561149c57600067ffffffffffffffff8111801561146457600080fd5b506040519080825280602002602001820160405280156114935781602001602082028036833780820191505090505b50915050611528565b60008167ffffffffffffffff811180156114b557600080fd5b506040519080825280602002602001820160405280156114e45781602001602082028036833780820191505090505b50905060005b82811015611521576114fc8582610c7e565b82828151811061150857fe5b60200260200101818152505080806001019150506114ea565b8193505050505b919050565b601481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156115f45780601f106115c9576101008083540402835291602001916115f4565b820191906000526020600020905b8154815290600101906020018083116115d757829003601f168201915b5050505050905090565b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116945780601f1061166957610100808354040283529160200191611694565b820191906000526020600020905b81548152906001019060200180831161167757829003601f168201915b505050505081565b6116a46120bb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611712576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611709906143dc565b60405180910390fd5b806005600061171f6120bb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117cc6120bb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611811919061427d565b60405180910390a35050565b6118256120bb565b73ffffffffffffffffffffffffffffffffffffffff16611843611532565b73ffffffffffffffffffffffffffffffffffffffff1614611899576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118909061455c565b60405180910390fd5b60001515600d60009054906101000a900460ff161515146118ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e6906145fc565b60405180910390fd5b80600c9080519060200190611905929190613188565b5050565b61191a6119146120bb565b83612191565b611959576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119509061461c565b60405180910390fd5b61196584848484612588565b50505050565b6119736120bb565b73ffffffffffffffffffffffffffffffffffffffff16611991611532565b73ffffffffffffffffffffffffffffffffffffffff16146119e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119de9061455c565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055507f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0600c604051611a3291906142ba565b60405180910390a1565b6060611a478261209e565b611a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7d9061459c565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b2f5780601f10611b0457610100808354040283529160200191611b2f565b820191906000526020600020905b815481529060010190602001808311611b1257829003601f168201915b505050505090506000611b40610fec565b9050600081511415611b56578192505050611bba565b600082511115611b8b578082604051602001611b739291906141d0565b60405160208183030381529060405292505050611bba565b80611b95856125e4565b604051602001611ba69291906141d0565b604051602081830303815290604052925050505b919050565b60105481565b6060611bcf610c0d565b8210611c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c079061437c565b60405180910390fd5b600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611ca65780601f10611c7b57610100808354040283529160200191611ca6565b820191906000526020600020905b815481529060010190602001808311611c8957829003601f168201915b50505050509050919050565b600f60009054906101000a900460ff16611d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf89061465c565b60405180910390fd5b600081118015611d12575060148111155b611d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d489061447c565b60405180910390fd5b612710611d6e82611d60610c0d565b61272b90919063ffffffff16565b1115611daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da6906145bc565b60405180910390fd5b611dc481600e5461278090919063ffffffff16565b341015611e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfd906143fc565b60405180910390fd5b60005b81811015611e47576000611e1b610c0d565b9050612710611e28610c0d565b1015611e3957611e38338261251a565b5b508080600101915050611e09565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60009054906101000a900460ff1681565b611efa6120bb565b73ffffffffffffffffffffffffffffffffffffffff16611f18611532565b73ffffffffffffffffffffffffffffffffffffffff1614611f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f659061455c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd59061431c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006120b48260026127f090919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661213683610fb5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061218a8260000161280a565b9050919050565b600061219c8261209e565b6121db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d29061445c565b60405180910390fd5b60006121e683610fb5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061225557508373ffffffffffffffffffffffffffffffffffffffff1661223d846109d4565b73ffffffffffffffffffffffffffffffffffffffff16145b8061226657506122658185611e4b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661228f82610fb5565b73ffffffffffffffffffffffffffffffffffffffff16146122e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dc9061457c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234c906143bc565b60405180910390fd5b61236083838361281b565b61236b6000826120c3565b6123bc81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061282090919063ffffffff16565b5061240e81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061283a90919063ffffffff16565b50612425818360026128549092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006124958360000183612889565b60001c905092915050565b6000806000806124b386600001866128f6565b915091508160001c8160001c9350935050509250929050565b80600990805190602001906124e2929190613188565b5050565b60006124f9846000018460001b84612979565b60001c90509392505050565b600061251382600001612a0a565b9050919050565b612534828260405180602001604052806000815250612a1b565b5050565b60008282111561257d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125749061441c565b60405180910390fd5b818303905092915050565b61259384848461226f565b61259f84848484612a76565b6125de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d5906142fc565b60405180910390fd5b50505050565b6060600082141561262c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612726565b600082905060005b60008214612656578080600101915050600a828161264e57fe5b049150612634565b60008167ffffffffffffffff8111801561266f57600080fd5b506040519080825280601f01601f1916602001820160405280156126a25781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461271e57600a84816126c357fe5b0660300160f81b828280600190039350815181106126dd57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161271657fe5b0493506126b1565b819450505050505b919050565b600080828401905083811015612776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276d9061435c565b60405180910390fd5b8091505092915050565b60008083141561279357600090506127ea565b60008284029050828482816127a457fe5b04146127e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127dc9061451c565b60405180910390fd5b809150505b92915050565b6000612802836000018360001b612bda565b905092915050565b600081600001805490509050919050565b505050565b6000612832836000018360001b612bfd565b905092915050565b600061284c836000018360001b612ce5565b905092915050565b6000612880846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b612d55565b90509392505050565b6000818360000180549050116128d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cb906142dc565b60405180910390fd5b8260000182815481106128e357fe5b9060005260206000200154905092915050565b60008082846000018054905011612942576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612939906144dc565b60405180910390fd5b600084600001848154811061295357fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b600080846001016000858152602001908152602001600020549050600081141583906129db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d29190614298565b60405180910390fd5b508460000160018203815481106129ee57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b612a258383612e31565b612a326000848484612a76565b612a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a68906142fc565b60405180910390fd5b505050565b6000612a978473ffffffffffffffffffffffffffffffffffffffff16612fbf565b612aa45760019050612bd2565b6000612b6b63150b7a0260e01b612ab96120bb565b888787604051602401612acf949392919061420f565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040518060600160405280603281526020016148fc603291398773ffffffffffffffffffffffffffffffffffffffff16612fd29092919063ffffffff16565b9050600081806020019051810190612b83919061353c565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114612cd95760006001820390506000600186600001805490500390506000866000018281548110612c4857fe5b9060005260206000200154905080876000018481548110612c6557fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612c9d57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612cdf565b60009150505b92915050565b6000612cf18383612fea565b612d4a578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612d4f565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415612dfc57846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050612e2a565b82856000016001830381548110612e0f57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e98906144fc565b60405180910390fd5b612eaa8161209e565b15612eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee19061433c565b60405180910390fd5b612ef66000838361281b565b612f4781600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061283a90919063ffffffff16565b50612f5e818360026128549092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060612fe1848460008561300d565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015613052576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130499061443c565b60405180910390fd5b61305b85612fbf565b61309a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130919061463c565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516130c391906141b9565b60006040518083038185875af1925050503d8060008114613100576040519150601f19603f3d011682016040523d82523d6000602084013e613105565b606091505b5091509150613115828286613121565b92505050949350505050565b6060831561313157829050613181565b6000835111156131445782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131789190614298565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826131be5760008555613205565b82601f106131d757805160ff1916838001178555613205565b82800160010185558215613205579182015b828111156132045782518255916020019190600101906131e9565b5b5090506132129190613216565b5090565b5b8082111561322f576000816000905550600101613217565b5090565b6000613246613241846146c8565b614697565b90508281526020810184848401111561325e57600080fd5b61326984828561484a565b509392505050565b600061328461327f846146f8565b614697565b90508281526020810184848401111561329c57600080fd5b6132a784828561484a565b509392505050565b6000813590506132be8161489f565b92915050565b6000813590506132d3816148b6565b92915050565b6000813590506132e8816148cd565b92915050565b6000815190506132fd816148cd565b92915050565b600082601f83011261331457600080fd5b8135613324848260208601613233565b91505092915050565b600082601f83011261333e57600080fd5b813561334e848260208601613271565b91505092915050565b600081359050613366816148e4565b92915050565b60006020828403121561337e57600080fd5b600061338c848285016132af565b91505092915050565b600080604083850312156133a857600080fd5b60006133b6858286016132af565b92505060206133c7858286016132af565b9150509250929050565b6000806000606084860312156133e657600080fd5b60006133f4868287016132af565b9350506020613405868287016132af565b925050604061341686828701613357565b9150509250925092565b6000806000806080858703121561343657600080fd5b6000613444878288016132af565b9450506020613455878288016132af565b935050604061346687828801613357565b925050606085013567ffffffffffffffff81111561348357600080fd5b61348f87828801613303565b91505092959194509250565b600080604083850312156134ae57600080fd5b60006134bc858286016132af565b92505060206134cd858286016132c4565b9150509250929050565b600080604083850312156134ea57600080fd5b60006134f8858286016132af565b925050602061350985828601613357565b9150509250929050565b60006020828403121561352557600080fd5b6000613533848285016132d9565b91505092915050565b60006020828403121561354e57600080fd5b600061355c848285016132ee565b91505092915050565b60006020828403121561357757600080fd5b600082013567ffffffffffffffff81111561359157600080fd5b61359d8482850161332d565b91505092915050565b6000602082840312156135b857600080fd5b60006135c684828501613357565b91505092915050565b60006135db838361419b565b60208301905092915050565b6135f0816147d6565b82525050565b6135ff816147c4565b82525050565b60006136108261474d565b61361a818561477b565b935061362583614728565b8060005b8381101561365657815161363d88826135cf565b97506136488361476e565b925050600181019050613629565b5085935050505092915050565b61366c816147e8565b82525050565b600061367d82614758565b613687818561478c565b9350613697818560208601614859565b6136a08161488e565b840191505092915050565b60006136b682614758565b6136c0818561479d565b93506136d0818560208601614859565b80840191505092915050565b60006136e782614763565b6136f181856147a8565b9350613701818560208601614859565b61370a8161488e565b840191505092915050565b600061372082614763565b61372a81856147b9565b935061373a818560208601614859565b80840191505092915050565b6000815460018116600081146137635760018114613789576137cd565b607f600283041661377481876147a8565b955060ff1983168652602086019350506137cd565b6002820461379781876147a8565b95506137a285614738565b60005b828110156137c4578154818901526001820191506020810190506137a5565b80880195505050505b505092915050565b60006137e26022836147a8565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138486032836147a8565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006138ae6026836147a8565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613914601c836147a8565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613954601b836147a8565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000613994601a836147a8565b91507f43484f4f534520414e20454c462057495448494e2052414e47450000000000006000830152602082019050919050565b60006139d46020836147a8565b91507f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d6000830152602082019050919050565b6000613a146024836147a8565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a7a6019836147a8565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613aba601f836147a8565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000613afa601e836147a8565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000613b3a6026836147a8565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ba0602c836147a8565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613c066021836147a8565b91507f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c6c6038836147a8565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613cd2602a836147a8565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d386022836147a8565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d9e6020836147a8565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613dde6021836147a8565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e44602c836147a8565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613eaa6020836147a8565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613eea6029836147a8565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f50602f836147a8565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613fb66029836147a8565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f6620456c76657300000000000000000000000000000000000000000000006020830152604082019050919050565b600061401c6021836147a8565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140826016836147a8565b91507f4c6963656e736520616c7265616479206c6f636b6564000000000000000000006000830152602082019050919050565b60006140c26031836147a8565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614128601d836147a8565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b6000614168601f836147a8565b91507f53616c65206d7573742062652061637469766520746f206d696e7420456c66006000830152602082019050919050565b6141a481614840565b82525050565b6141b381614840565b82525050565b60006141c582846136ab565b915081905092915050565b60006141dc8285613715565b91506141e88284613715565b91508190509392505050565b600060208201905061420960008301846135f6565b92915050565b600060808201905061422460008301876135e7565b61423160208301866135f6565b61423e60408301856141aa565b81810360608301526142508184613672565b905095945050505050565b600060208201905081810360008301526142758184613605565b905092915050565b60006020820190506142926000830184613663565b92915050565b600060208201905081810360008301526142b281846136dc565b905092915050565b600060208201905081810360008301526142d48184613746565b905092915050565b600060208201905081810360008301526142f5816137d5565b9050919050565b600060208201905081810360008301526143158161383b565b9050919050565b60006020820190508181036000830152614335816138a1565b9050919050565b6000602082019050818103600083015261435581613907565b9050919050565b6000602082019050818103600083015261437581613947565b9050919050565b6000602082019050818103600083015261439581613987565b9050919050565b600060208201905081810360008301526143b5816139c7565b9050919050565b600060208201905081810360008301526143d581613a07565b9050919050565b600060208201905081810360008301526143f581613a6d565b9050919050565b6000602082019050818103600083015261441581613aad565b9050919050565b6000602082019050818103600083015261443581613aed565b9050919050565b6000602082019050818103600083015261445581613b2d565b9050919050565b6000602082019050818103600083015261447581613b93565b9050919050565b6000602082019050818103600083015261449581613bf9565b9050919050565b600060208201905081810360008301526144b581613c5f565b9050919050565b600060208201905081810360008301526144d581613cc5565b9050919050565b600060208201905081810360008301526144f581613d2b565b9050919050565b6000602082019050818103600083015261451581613d91565b9050919050565b6000602082019050818103600083015261453581613dd1565b9050919050565b6000602082019050818103600083015261455581613e37565b9050919050565b6000602082019050818103600083015261457581613e9d565b9050919050565b6000602082019050818103600083015261459581613edd565b9050919050565b600060208201905081810360008301526145b581613f43565b9050919050565b600060208201905081810360008301526145d581613fa9565b9050919050565b600060208201905081810360008301526145f58161400f565b9050919050565b6000602082019050818103600083015261461581614075565b9050919050565b60006020820190508181036000830152614635816140b5565b9050919050565b600060208201905081810360008301526146558161411b565b9050919050565b600060208201905081810360008301526146758161415b565b9050919050565b600060208201905061469160008301846141aa565b92915050565b6000604051905081810181811067ffffffffffffffff821117156146be576146bd61488c565b5b8060405250919050565b600067ffffffffffffffff8211156146e3576146e261488c565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156147135761471261488c565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006147cf82614820565b9050919050565b60006147e182614820565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561487757808201518184015260208101905061485c565b83811115614886576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b6148a8816147c4565b81146148b357600080fd5b50565b6148bf816147e8565b81146148ca57600080fd5b50565b6148d6816147f4565b81146148e157600080fd5b50565b6148ed81614840565b81146148f857600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea26469706673582212200e9253bcbbe2ab5832b55fd65b05485da48d1221c6bd06bc668a50c6b4e979ec64736f6c63430007060033

Deployed Bytecode Sourcemap

70631:3646:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10689:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54176:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57184:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70999:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56683:435;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71848:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56111:211;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58243:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55823:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72087:89;;;;;;;;;;;;;:::i;:::-;;71245:134;;;;;;;;;;;;;:::i;:::-;;58690:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56399:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71980:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70720:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53820:289;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55642:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53450:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69992:148;;;;;;;;;;;;;:::i;:::-;;74180:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70882:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71387:453;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72184:572;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70947:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69341:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54345:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70807:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57564:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73201:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58946:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73042:124;;;;;;;;;;;;;:::i;:::-;;54520:879;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71090:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72803:178;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73383:789;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57962:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71049:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70295:281;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10689:200;10819:4;10848:20;:33;10869:11;10848:33;;;;;;;;;;;;;;;;;;;;;;;;;;;10841:40;;10689:200;;;:::o;54176:100::-;54230:13;54263:5;54256:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54176:100;:::o;57184:308::-;57305:7;57352:16;57360:7;57352;:16::i;:::-;57330:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;57460:15;:24;57476:7;57460:24;;;;;;;;;;;;;;;;;;;;;57453:31;;57184:308;;;:::o;70999:41::-;71035:5;70999:41;:::o;56683:435::-;56764:13;56780:23;56795:7;56780:14;:23::i;:::-;56764:39;;56828:5;56822:11;;:2;:11;;;;56814:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;56922:5;56906:21;;:12;:10;:12::i;:::-;:21;;;:86;;;;56948:44;56972:5;56979:12;:10;:12::i;:::-;56948:23;:44::i;:::-;56906:86;56884:192;;;;;;;;;;;;:::i;:::-;;;;;;;;;57089:21;57098:2;57102:7;57089:8;:21::i;:::-;56683:435;;;:::o;71848:124::-;69572:12;:10;:12::i;:::-;69561:23;;:7;:5;:7::i;:::-;:23;;;69553:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71950:14:::1;71933;:31;;;;;;;;;;;;:::i;:::-;;71848:124:::0;:::o;56111:211::-;56172:7;56293:21;:12;:19;:21::i;:::-;56286:28;;56111:211;:::o;58243:376::-;58452:41;58471:12;:10;:12::i;:::-;58485:7;58452:18;:41::i;:::-;58430:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;58583:28;58593:4;58599:2;58603:7;58583:9;:28::i;:::-;58243:376;;;:::o;55823:212::-;55965:7;55997:30;56021:5;55997:13;:20;56011:5;55997:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;55990:37;;55823:212;;;;:::o;72087:89::-;69572:12;:10;:12::i;:::-;69561:23;;:7;:5;:7::i;:::-;:23;;;69553:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72156:12:::1;;;;;;;;;;;72155:13;72140:12;;:28;;;;;;;;;;;;;;;;;;72087:89::o:0;71245:134::-;69572:12;:10;:12::i;:::-;69561:23;;:7;:5;:7::i;:::-;:23;;;69553:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71293:15:::1;71311:21;71293:39;;71343:10;:19;;:28;71363:7;71343:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;69632:1;71245:134::o:0;58690:185::-;58828:39;58845:4;58851:2;58855:7;58828:39;;;;;;;;;;;;:16;:39::i;:::-;58690:185;;;:::o;56399:222::-;56519:7;56545:15;56566:22;56582:5;56566:12;:15;;:22;;;;:::i;:::-;56544:44;;;56606:7;56599:14;;;56399:222;;;:::o;71980:99::-;69572:12;:10;:12::i;:::-;69561:23;;:7;:5;:7::i;:::-;:23;;;69553:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72051:20:::1;72063:7;72051:11;:20::i;:::-;71980:99:::0;:::o;70720:33::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53820:289::-;53937:7;53982:119;54017:7;53982:119;;;;;;;;;;;;;;;;;:12;:16;;:119;;;;;:::i;:::-;53962:139;;53820:289;;;:::o;55642:97::-;55690:13;55723:8;55716:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55642:97;:::o;53450:308::-;53567:7;53631:1;53614:19;;:5;:19;;;;53592:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;53721:29;:13;:20;53735:5;53721:20;;;;;;;;;;;;;;;:27;:29::i;:::-;53714:36;;53450:308;;;:::o;69992:148::-;69572:12;:10;:12::i;:::-;69561:23;;:7;:5;:7::i;:::-;:23;;;69553:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70099:1:::1;70062:40;;70083:6;;;;;;;;;;;70062:40;;;;;;;;;;;;70130:1;70113:6;;:19;;;;;;;;;;;;;;;;;;69992:148::o:0;74180:94::-;69572:12;:10;:12::i;:::-;69561:23;;:7;:5;:7::i;:::-;:23;;;69553:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;74258:8:::1;74247;:19;;;;74180:94:::0;:::o;70882:43::-;;;;:::o;71387:453::-;69572:12;:10;:12::i;:::-;69561:23;;:7;:5;:7::i;:::-;:23;;;69553:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71497:14:::1;71514:13;:11;:13::i;:::-;71497:30;;71577:1;71560:14;:18;:50;;;;;71600:10;;71582:14;:28;;71560:50;71538:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;71686:9;71681:98;71705:14;71701:1;:18;71681:98;;;71741:26;71751:3;71765:1;71756:6;:10;71741:9;:26::i;:::-;71721:3;;;;;;;71681:98;;;;71802:30;71817:14;71802:10;;:14;;:30;;;;:::i;:::-;71789:10;:43;;;;69632:1;71387:453:::0;;:::o;72184:572::-;72273:16;72307:18;72328:17;72338:6;72328:9;:17::i;:::-;72307:38;;72374:1;72360:10;:15;72356:393;;;72451:1;72437:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72430:23;;;;;72356:393;72486:23;72526:10;72512:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72486:51;;72552:13;72580:130;72604:10;72596:5;:18;72580:130;;;72660:34;72680:6;72688:5;72660:19;:34::i;:::-;72644:6;72651:5;72644:13;;;;;;;;;;;;;:50;;;;;72616:7;;;;;;;72580:130;;;72731:6;72724:13;;;;;72184:572;;;;:::o;70947:43::-;70988:2;70947:43;:::o;69341:87::-;69387:7;69414:6;;;;;;;;;;;69407:13;;69341:87;:::o;54345:104::-;54401:13;54434:7;54427:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54345:104;:::o;70807:31::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57564:327::-;57711:12;:10;:12::i;:::-;57699:24;;:8;:24;;;;57691:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;57811:8;57766:18;:32;57785:12;:10;:12::i;:::-;57766:32;;;;;;;;;;;;;;;:42;57799:8;57766:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;57864:8;57835:48;;57850:12;:10;:12::i;:::-;57835:48;;;57874:8;57835:48;;;;;;:::i;:::-;;;;;;;;57564:327;;:::o;73201:174::-;69572:12;:10;:12::i;:::-;69561:23;;:7;:5;:7::i;:::-;:23;;;69553:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;73301:5:::1;73284:22;;:13;;;;;;;;;;;:22;;;73276:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;73359:8;73344:12;:23;;;;;;;;;;;;:::i;:::-;;73201:174:::0;:::o;58946:365::-;59135:41;59154:12;:10;:12::i;:::-;59168:7;59135:18;:41::i;:::-;59113:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;59264:39;59278:4;59284:2;59288:7;59297:5;59264:13;:39::i;:::-;58946:365;;;;:::o;73042:124::-;69572:12;:10;:12::i;:::-;69561:23;;:7;:5;:7::i;:::-;:23;;;69553:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;73109:4:::1;73093:13;;:20;;;;;;;;;;;;;;;;;;73129:29;73145:12;73129:29;;;;;;:::i;:::-;;;;;;;;73042:124::o:0;54520:879::-;54638:13;54691:16;54699:7;54691;:16::i;:::-;54669:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;54795:23;54821:10;:19;54832:7;54821:19;;;;;;;;;;;54795:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54851:18;54872:9;:7;:9::i;:::-;54851:30;;54979:1;54963:4;54957:18;:23;54953:72;;;55004:9;54997:16;;;;;;54953:72;55155:1;55135:9;55129:23;:27;55125:108;;;55204:4;55210:9;55187:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55173:48;;;;;;55125:108;55365:4;55371:18;:7;:16;:18::i;:::-;55348:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55334:57;;;;54520:879;;;;:::o;71090:31::-;;;;:::o;72803:178::-;72859:13;72899;:11;:13::i;:::-;72893:3;:19;72885:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;72961:12;72954:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72803:178;;;:::o;73383:789::-;73458:12;;;;;;;;;;;73450:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;73556:1;73539:14;:18;:54;;;;;70988:2;73561:14;:32;;73539:54;73517:137;;;;;;;;;;;;:::i;:::-;;;;;;;;;71035:5;73687:33;73705:14;73687:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:46;;73665:137;;;;;;;;;;;;:::i;:::-;;;;;;;;;73848:28;73861:14;73848:8;;:12;;:28;;;;:::i;:::-;73835:9;:41;;73813:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;73953:9;73948:217;73972:14;73968:1;:18;73948:217;;;74008:17;74028:13;:11;:13::i;:::-;74008:33;;71035:5;74060:13;:11;:13::i;:::-;:25;74056:98;;;74106:32;74116:10;74128:9;74106;:32::i;:::-;74056:98;73948:217;73988:3;;;;;;;73948:217;;;;73383:789;:::o;57962:214::-;58104:4;58133:18;:25;58152:5;58133:25;;;;;;;;;;;;;;;:35;58159:8;58133:35;;;;;;;;;;;;;;;;;;;;;;;;;58126:42;;57962:214;;;;:::o;71049:32::-;;;;;;;;;;;;;:::o;70295:281::-;69572:12;:10;:12::i;:::-;69561:23;;:7;:5;:7::i;:::-;:23;;;69553:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70418:1:::1;70398:22;;:8;:22;;;;70376:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;70531:8;70502:38;;70523:6;;;;;;;;;;;70502:38;;;;;;;;;;;;70560:8;70551:6;;:17;;;;;;;;;;;;;;;;;;70295:281:::0;:::o;60858:127::-;60923:4;60947:30;60969:7;60947:12;:21;;:30;;;;:::i;:::-;60940:37;;60858:127;;;:::o;833:106::-;886:15;921:10;914:17;;833:106;:::o;67272:192::-;67374:2;67347:15;:24;67363:7;67347:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;67430:7;67426:2;67392:46;;67401:23;67416:7;67401:14;:23::i;:::-;67392:46;;;;;;;;;;;;67272:192;;:::o;46506:155::-;46602:7;46634:19;46642:3;:10;;46634:7;:19::i;:::-;46627:26;;46506:155;;;:::o;61152:459::-;61281:4;61325:16;61333:7;61325;:16::i;:::-;61303:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;61424:13;61440:23;61455:7;61440:14;:23::i;:::-;61424:39;;61493:5;61482:16;;:7;:16;;;:64;;;;61539:7;61515:31;;:20;61527:7;61515:11;:20::i;:::-;:31;;;61482:64;:120;;;;61563:39;61587:5;61594:7;61563:23;:39::i;:::-;61482:120;61474:129;;;61152:459;;;;:::o;64463:670::-;64636:4;64609:31;;:23;64624:7;64609:14;:23::i;:::-;:31;;;64587:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;64760:1;64746:16;;:2;:16;;;;64738:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;64816:39;64837:4;64843:2;64847:7;64816:20;:39::i;:::-;64920:29;64937:1;64941:7;64920:8;:29::i;:::-;64962:35;64989:7;64962:13;:19;64976:4;64962:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;65008:30;65030:7;65008:13;:17;65022:2;65008:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;65051:29;65068:7;65077:2;65051:12;:16;;:29;;;;;:::i;:::-;;65117:7;65113:2;65098:27;;65107:4;65098:27;;;;;;;;;;;;64463:670;;;:::o;37948:169::-;38046:7;38086:22;38090:3;:10;;38102:5;38086:3;:22::i;:::-;38078:31;;38071:38;;37948:169;;;;:::o;47009:268::-;47116:7;47125;47151:11;47164:13;47181:22;47185:3;:10;;47197:5;47181:3;:22::i;:::-;47150:53;;;;47230:3;47222:12;;47260:5;47252:14;;47214:55;;;;;;47009:268;;;;;:::o;65794:100::-;65878:8;65867;:19;;;;;;;;;;;;:::i;:::-;;65794:100;:::o;48391:292::-;48532:7;48614:44;48619:3;:10;;48639:3;48631:12;;48645;48614:4;:44::i;:::-;48606:53;;48552:123;;48391:292;;;;;:::o;37480:114::-;37540:7;37567:19;37575:3;:10;;37567:7;:19::i;:::-;37560:26;;37480:114;;;:::o;61954:110::-;62030:26;62040:2;62044:7;62030:26;;;;;;;;;;;;:9;:26::i;:::-;61954:110;;:::o;14919:158::-;14977:7;15010:1;15005;:6;;14997:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;15068:1;15064;:5;15057:12;;14919:158;;;;:::o;60193:352::-;60350:28;60360:4;60366:2;60370:7;60350:9;:28::i;:::-;60411:48;60434:4;60440:2;60444:7;60453:5;60411:22;:48::i;:::-;60389:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;60193:352;;;;:::o;48930:748::-;48986:13;49216:1;49207:5;:10;49203:53;;;49234:10;;;;;;;;;;;;;;;;;;;;;49203:53;49266:12;49281:5;49266:20;;49297:14;49322:78;49337:1;49329:4;:9;49322:78;;49355:8;;;;;;;49386:2;49378:10;;;;;;;;;49322:78;;;49410:19;49442:6;49432:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49410:39;;49460:13;49485:1;49476:6;:10;49460:26;;49504:5;49497:12;;49520:119;49535:1;49527:4;:9;49520:119;;49597:2;49590:4;:9;;;;;;49584:2;:16;49571:31;;49553:6;49560:7;;;;;;;49553:15;;;;;;;;;;;:49;;;;;;;;;;;49625:2;49617:10;;;;;;;;;49520:119;;;49663:6;49649:21;;;;;;48930:748;;;;:::o;14457:179::-;14515:7;14535:9;14551:1;14547;:5;14535:17;;14576:1;14571;:6;;14563:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;14627:1;14620:8;;;14457:179;;;;:::o;15336:220::-;15394:7;15423:1;15418;:6;15414:20;;;15433:1;15426:8;;;;15414:20;15445:9;15461:1;15457;:5;15445:17;;15490:1;15485;15481;:5;;;;;;:10;15473:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;15547:1;15540:8;;;15336:220;;;;;:::o;46235:183::-;46346:4;46375:35;46385:3;:10;;46405:3;46397:12;;46375:9;:35::i;:::-;46368:42;;46235:183;;;;:::o;42851:110::-;42907:7;42934:3;:12;;:19;;;;42927:26;;42851:110;;;:::o;68077:126::-;;;;:::o;36970:160::-;37058:4;37087:35;37095:3;:10;;37115:5;37107:14;;37087:7;:35::i;:::-;37080:42;;36970:160;;;;:::o;36663:131::-;36730:4;36754:32;36759:3;:10;;36779:5;36771:14;;36754:4;:32::i;:::-;36747:39;;36663:131;;;;:::o;45601:219::-;45724:4;45748:64;45753:3;:10;;45773:3;45765:12;;45803:5;45787:23;;45779:32;;45748:4;:64::i;:::-;45741:71;;45601:219;;;;;:::o;32614:273::-;32708:7;32776:5;32755:3;:11;;:18;;;;:26;32733:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;32861:3;:11;;32873:5;32861:18;;;;;;;;;;;;;;;;32854:25;;32614:273;;;;:::o;43326:348::-;43420:7;43429;43498:5;43476:3;:12;;:19;;;;:27;43454:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;43578:22;43603:3;:12;;43616:5;43603:19;;;;;;;;;;;;;;;;;;43578:44;;43641:5;:10;;;43653:5;:12;;;43633:33;;;;;43326:348;;;;;:::o;44924:353::-;45052:7;45072:16;45091:3;:12;;:17;45104:3;45091:17;;;;;;;;;;;;45072:36;;45139:1;45127:8;:13;;45142:12;45119:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;45209:3;:12;;45233:1;45222:8;:12;45209:26;;;;;;;;;;;;;;;;;;:33;;;45202:40;;;44924:353;;;;;:::o;32151:109::-;32207:7;32234:3;:11;;:18;;;;32227:25;;32151:109;;;:::o;62291:321::-;62421:18;62427:2;62431:7;62421:5;:18::i;:::-;62472:54;62503:1;62507:2;62511:7;62520:5;62472:22;:54::i;:::-;62450:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;62291:321;;;:::o;66459:694::-;66614:4;66636:15;:2;:13;;;:15::i;:::-;66631:60;;66675:4;66668:11;;;;66631:60;66701:23;66727:313;66798:45;;;66862:12;:10;:12::i;:::-;66893:4;66916:7;66942:5;66757:205;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66727:313;;;;;;;;;;;;;;;;;:2;:15;;;;:313;;;;;:::i;:::-;66701:339;;67051:13;67078:10;67067:32;;;;;;;;;;;;:::i;:::-;67051:48;;50453:10;67128:16;;67118:26;;;:6;:26;;;;67110:35;;;;66459:694;;;;;;;:::o;42599:157::-;42697:4;42747:1;42726:3;:12;;:17;42739:3;42726:17;;;;;;;;;;;;:22;;42719:29;;42599:157;;;;:::o;30261:1557::-;30327:4;30445:18;30466:3;:12;;:19;30479:5;30466:19;;;;;;;;;;;;30445:40;;30516:1;30502:10;:15;30498:1313;;30877:21;30914:1;30901:10;:14;30877:38;;30930:17;30971:1;30950:3;:11;;:18;;;;:22;30930:42;;31217:17;31237:3;:11;;31249:9;31237:22;;;;;;;;;;;;;;;;31217:42;;31383:9;31354:3;:11;;31366:13;31354:26;;;;;;;;;;;;;;;:38;;;;31502:1;31486:13;:17;31460:3;:12;;:23;31473:9;31460:23;;;;;;;;;;;:43;;;;31612:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;31707:3;:12;;:19;31720:5;31707:19;;;;;;;;;;;31700:26;;;31750:4;31743:11;;;;;;;;30498:1313;31794:5;31787:12;;;30261:1557;;;;;:::o;29671:414::-;29734:4;29756:21;29766:3;29771:5;29756:9;:21::i;:::-;29751:327;;29794:3;:11;;29811:5;29794:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29977:3;:11;;:18;;;;29955:3;:12;;:19;29968:5;29955:19;;;;;;;;;;;:40;;;;30017:4;30010:11;;;;29751:327;30061:5;30054:12;;29671:414;;;;;:::o;40041:737::-;40151:4;40267:16;40286:3;:12;;:17;40299:3;40286:17;;;;;;;;;;;;40267:36;;40332:1;40320:8;:13;40316:455;;;40400:3;:12;;40418:36;;;;;;;;40434:3;40418:36;;;;40447:5;40418:36;;;40400:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40613:3;:12;;:19;;;;40593:3;:12;;:17;40606:3;40593:17;;;;;;;;;;;:39;;;;40654:4;40647:11;;;;;40316:455;40727:5;40691:3;:12;;40715:1;40704:8;:12;40691:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;40754:5;40747:12;;;40041:737;;;;;;:::o;62948:404::-;63042:1;63028:16;;:2;:16;;;;63020:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;63101:16;63109:7;63101;:16::i;:::-;63100:17;63092:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;63163:45;63192:1;63196:2;63200:7;63163:20;:45::i;:::-;63221:30;63243:7;63221:13;:17;63235:2;63221:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;63264:29;63281:7;63290:2;63264:12;:16;;:29;;;;;:::i;:::-;;63336:7;63332:2;63311:33;;63328:1;63311:33;;;;;;;;;;;;62948:404;;:::o;19996:444::-;20056:4;20264:12;20388:7;20376:20;20368:28;;20431:1;20424:4;:8;20417:15;;;19996:444;;;:::o;23033:229::-;23170:12;23202:52;23224:6;23232:4;23238:1;23241:12;23202:21;:52::i;:::-;23195:59;;23033:229;;;;;:::o;31904:161::-;32004:4;32056:1;32033:3;:12;;:19;32046:5;32033:19;;;;;;;;;;;;:24;;32026:31;;31904:161;;;;:::o;24249:632::-;24419:12;24491:5;24466:21;:30;;24444:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;24581:18;24592:6;24581:10;:18::i;:::-;24573:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;24707:12;24721:23;24748:6;:11;;24767:5;24788:4;24748:55;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24706:97;;;;24821:52;24839:7;24848:10;24860:12;24821:17;:52::i;:::-;24814:59;;;;24249:632;;;;;;:::o;27172:777::-;27322:12;27351:7;27347:595;;;27382:10;27375:17;;;;27347:595;27516:1;27496:10;:17;:21;27492:439;;;27759:10;27753:17;27820:15;27807:10;27803:2;27799:19;27792:44;27707:148;27902:12;27895:20;;;;;;;;;;;:::i;:::-;;;;;;;;27172: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:370::-;;10812:67;10876:2;10871:3;10812:67;:::i;:::-;10805:74;;10909:34;10905:1;10900:3;10896:11;10889:55;10975:8;10970:2;10965:3;10961:12;10954:30;11010:2;11005:3;11001:12;10994:19;;10795:224;;;:::o;11025:326::-;;11188:67;11252:2;11247:3;11188:67;:::i;:::-;11181:74;;11285:30;11281:1;11276:3;11272:11;11265:51;11342:2;11337:3;11333:12;11326:19;;11171:180;;;:::o;11357:325::-;;11520:67;11584:2;11579:3;11520:67;:::i;:::-;11513:74;;11617:29;11613:1;11608:3;11604:11;11597:50;11673:2;11668:3;11664:12;11657:19;;11503:179;;;:::o;11688:324::-;;11851:67;11915:2;11910:3;11851:67;:::i;:::-;11844:74;;11948:28;11944:1;11939:3;11935:11;11928:49;12003:2;11998:3;11994:12;11987:19;;11834:178;;;:::o;12018:330::-;;12181:67;12245:2;12240:3;12181:67;:::i;:::-;12174:74;;12278:34;12274:1;12269:3;12265:11;12258:55;12339:2;12334:3;12330:12;12323:19;;12164:184;;;:::o;12354:368::-;;12517:67;12581:2;12576:3;12517:67;:::i;:::-;12510:74;;12614:34;12610:1;12605:3;12601:11;12594:55;12680:6;12675:2;12670:3;12666:12;12659:28;12713:2;12708:3;12704:12;12697:19;;12500:222;;;:::o;12728:323::-;;12891:67;12955:2;12950:3;12891:67;:::i;:::-;12884:74;;12988:27;12984:1;12979:3;12975:11;12968:48;13042:2;13037:3;13033:12;13026:19;;12874:177;;;:::o;13057:329::-;;13220:67;13284:2;13279:3;13220:67;:::i;:::-;13213:74;;13317:33;13313:1;13308:3;13304:11;13297:54;13377:2;13372:3;13368:12;13361:19;;13203:183;;;:::o;13392:328::-;;13555:67;13619:2;13614:3;13555:67;:::i;:::-;13548:74;;13652:32;13648:1;13643:3;13639:11;13632:53;13711:2;13706:3;13702:12;13695:19;;13538:182;;;:::o;13726:370::-;;13889:67;13953:2;13948:3;13889:67;:::i;:::-;13882:74;;13986:34;13982:1;13977:3;13973:11;13966:55;14052:8;14047:2;14042:3;14038:12;14031:30;14087:2;14082:3;14078:12;14071:19;;13872:224;;;:::o;14102:376::-;;14265:67;14329:2;14324:3;14265:67;:::i;:::-;14258:74;;14362:34;14358:1;14353:3;14349:11;14342:55;14428:14;14423:2;14418:3;14414:12;14407:36;14469:2;14464:3;14460:12;14453:19;;14248:230;;;:::o;14484:365::-;;14647:67;14711:2;14706:3;14647:67;:::i;:::-;14640:74;;14744:34;14740:1;14735:3;14731:11;14724:55;14810:3;14805:2;14800:3;14796:12;14789:25;14840:2;14835:3;14831:12;14824:19;;14630:219;;;:::o;14855:388::-;;15018:67;15082:2;15077:3;15018:67;:::i;:::-;15011:74;;15115:34;15111:1;15106:3;15102:11;15095:55;15181:26;15176:2;15171:3;15167:12;15160:48;15234:2;15229:3;15225:12;15218:19;;15001:242;;;:::o;15249:374::-;;15412:67;15476:2;15471:3;15412:67;:::i;:::-;15405:74;;15509:34;15505:1;15500:3;15496:11;15489:55;15575:12;15570:2;15565:3;15561:12;15554:34;15614:2;15609:3;15605:12;15598:19;;15395:228;;;:::o;15629:366::-;;15792:67;15856:2;15851:3;15792:67;:::i;:::-;15785:74;;15889:34;15885:1;15880:3;15876:11;15869:55;15955:4;15950:2;15945:3;15941:12;15934:26;15986:2;15981:3;15977:12;15970:19;;15775:220;;;:::o;16001:330::-;;16164:67;16228:2;16223:3;16164:67;:::i;:::-;16157:74;;16261:34;16257:1;16252:3;16248:11;16241:55;16322:2;16317:3;16313:12;16306:19;;16147:184;;;:::o;16337:365::-;;16500:67;16564:2;16559:3;16500:67;:::i;:::-;16493:74;;16597:34;16593:1;16588:3;16584:11;16577:55;16663:3;16658:2;16653:3;16649:12;16642:25;16693:2;16688:3;16684:12;16677:19;;16483:219;;;:::o;16708:376::-;;16871:67;16935:2;16930:3;16871:67;:::i;:::-;16864:74;;16968:34;16964:1;16959:3;16955:11;16948:55;17034:14;17029:2;17024:3;17020:12;17013:36;17075:2;17070:3;17066:12;17059:19;;16854:230;;;:::o;17090:330::-;;17253:67;17317:2;17312:3;17253:67;:::i;:::-;17246:74;;17350:34;17346:1;17341:3;17337:11;17330:55;17411:2;17406:3;17402:12;17395:19;;17236:184;;;:::o;17426:373::-;;17589:67;17653:2;17648:3;17589:67;:::i;:::-;17582:74;;17686:34;17682:1;17677:3;17673:11;17666:55;17752:11;17747:2;17742:3;17738:12;17731:33;17790:2;17785:3;17781:12;17774:19;;17572:227;;;:::o;17805:379::-;;17968:67;18032:2;18027:3;17968:67;:::i;:::-;17961:74;;18065:34;18061:1;18056:3;18052:11;18045:55;18131:17;18126:2;18121:3;18117:12;18110:39;18175:2;18170:3;18166:12;18159:19;;17951:233;;;:::o;18190:373::-;;18353:67;18417:2;18412:3;18353:67;:::i;:::-;18346:74;;18450:34;18446:1;18441:3;18437:11;18430:55;18516:11;18511:2;18506:3;18502:12;18495:33;18554:2;18549:3;18545:12;18538:19;;18336:227;;;:::o;18569:365::-;;18732:67;18796:2;18791:3;18732:67;:::i;:::-;18725:74;;18829:34;18825:1;18820:3;18816:11;18809:55;18895:3;18890:2;18885:3;18881:12;18874:25;18925:2;18920:3;18916:12;18909:19;;18715:219;;;:::o;18940:320::-;;19103:67;19167:2;19162:3;19103:67;:::i;:::-;19096:74;;19200:24;19196:1;19191:3;19187:11;19180:45;19251:2;19246:3;19242:12;19235:19;;19086:174;;;:::o;19266:381::-;;19429:67;19493:2;19488:3;19429:67;:::i;:::-;19422:74;;19526:34;19522:1;19517:3;19513:11;19506:55;19592:19;19587:2;19582:3;19578:12;19571:41;19638:2;19633:3;19629:12;19622:19;;19412:235;;;:::o;19653:327::-;;19816:67;19880:2;19875:3;19816:67;:::i;:::-;19809:74;;19913:31;19909:1;19904:3;19900:11;19893:52;19971:2;19966:3;19962:12;19955:19;;19799:181;;;:::o;19986:329::-;;20149:67;20213:2;20208:3;20149:67;:::i;:::-;20142:74;;20246:33;20242:1;20237:3;20233:11;20226:54;20306:2;20301:3;20297:12;20290:19;;20132:183;;;:::o;20321:108::-;20398:24;20416:5;20398:24;:::i;:::-;20393:3;20386:37;20376:53;;:::o;20435:118::-;20522:24;20540:5;20522:24;:::i;:::-;20517:3;20510:37;20500:53;;:::o;20559:271::-;;20711:93;20800:3;20791:6;20711:93;:::i;:::-;20704:100;;20821:3;20814:10;;20693:137;;;;:::o;20836:435::-;;21038:95;21129:3;21120:6;21038:95;:::i;:::-;21031:102;;21150:95;21241:3;21232:6;21150:95;:::i;:::-;21143:102;;21262:3;21255:10;;21020:251;;;;;:::o;21277:222::-;;21408:2;21397:9;21393:18;21385:26;;21421:71;21489:1;21478:9;21474:17;21465:6;21421:71;:::i;:::-;21375:124;;;;:::o;21505:672::-;;21754:3;21743:9;21739:19;21731:27;;21768:87;21852:1;21841:9;21837:17;21828:6;21768:87;:::i;:::-;21865:72;21933:2;21922:9;21918:18;21909:6;21865:72;:::i;:::-;21947;22015:2;22004:9;22000:18;21991:6;21947:72;:::i;:::-;22066:9;22060:4;22056:20;22051:2;22040:9;22036:18;22029:48;22094:76;22165:4;22156:6;22094:76;:::i;:::-;22086:84;;21721:456;;;;;;;:::o;22183:373::-;;22364:2;22353:9;22349:18;22341:26;;22413:9;22407:4;22403:20;22399:1;22388:9;22384:17;22377:47;22441:108;22544:4;22535:6;22441:108;:::i;:::-;22433:116;;22331:225;;;;:::o;22562:210::-;;22687:2;22676:9;22672:18;22664:26;;22700:65;22762:1;22751:9;22747:17;22738:6;22700:65;:::i;:::-;22654:118;;;;:::o;22778:313::-;;22929:2;22918:9;22914:18;22906:26;;22978:9;22972:4;22968:20;22964:1;22953:9;22949:17;22942:47;23006:78;23079:4;23070:6;23006:78;:::i;:::-;22998:86;;22896:195;;;;:::o;23097:307::-;;23245:2;23234:9;23230:18;23222:26;;23294:9;23288:4;23284:20;23280:1;23269:9;23265:17;23258:47;23322:75;23392:4;23383:6;23322:75;:::i;:::-;23314:83;;23212:192;;;;:::o;23410:419::-;;23614:2;23603:9;23599:18;23591:26;;23663:9;23657:4;23653:20;23649:1;23638:9;23634:17;23627:47;23691:131;23817:4;23691:131;:::i;:::-;23683:139;;23581:248;;;:::o;23835:419::-;;24039:2;24028:9;24024:18;24016:26;;24088:9;24082:4;24078:20;24074:1;24063:9;24059:17;24052:47;24116:131;24242:4;24116:131;:::i;:::-;24108:139;;24006:248;;;:::o;24260:419::-;;24464:2;24453:9;24449:18;24441:26;;24513:9;24507:4;24503:20;24499:1;24488:9;24484:17;24477:47;24541:131;24667:4;24541:131;:::i;:::-;24533:139;;24431:248;;;:::o;24685:419::-;;24889:2;24878:9;24874:18;24866:26;;24938:9;24932:4;24928:20;24924:1;24913:9;24909:17;24902:47;24966:131;25092:4;24966:131;:::i;:::-;24958:139;;24856:248;;;:::o;25110:419::-;;25314:2;25303:9;25299:18;25291:26;;25363:9;25357:4;25353:20;25349:1;25338:9;25334:17;25327:47;25391:131;25517:4;25391:131;:::i;:::-;25383:139;;25281:248;;;:::o;25535:419::-;;25739:2;25728:9;25724:18;25716:26;;25788:9;25782:4;25778:20;25774:1;25763:9;25759:17;25752:47;25816:131;25942:4;25816:131;:::i;:::-;25808:139;;25706:248;;;:::o;25960:419::-;;26164:2;26153:9;26149:18;26141:26;;26213:9;26207:4;26203:20;26199:1;26188:9;26184:17;26177:47;26241:131;26367:4;26241:131;:::i;:::-;26233:139;;26131:248;;;:::o;26385:419::-;;26589:2;26578:9;26574:18;26566:26;;26638:9;26632:4;26628:20;26624:1;26613:9;26609:17;26602:47;26666:131;26792:4;26666:131;:::i;:::-;26658:139;;26556:248;;;:::o;26810:419::-;;27014:2;27003:9;26999:18;26991:26;;27063:9;27057:4;27053:20;27049:1;27038:9;27034:17;27027:47;27091:131;27217:4;27091:131;:::i;:::-;27083:139;;26981:248;;;:::o;27235:419::-;;27439:2;27428:9;27424:18;27416:26;;27488:9;27482:4;27478:20;27474:1;27463:9;27459:17;27452:47;27516:131;27642:4;27516:131;:::i;:::-;27508:139;;27406:248;;;:::o;27660:419::-;;27864:2;27853:9;27849:18;27841:26;;27913:9;27907:4;27903:20;27899:1;27888:9;27884:17;27877:47;27941:131;28067:4;27941:131;:::i;:::-;27933:139;;27831:248;;;:::o;28085:419::-;;28289:2;28278:9;28274:18;28266:26;;28338:9;28332:4;28328:20;28324:1;28313:9;28309:17;28302:47;28366:131;28492:4;28366:131;:::i;:::-;28358:139;;28256:248;;;:::o;28510:419::-;;28714:2;28703:9;28699:18;28691:26;;28763:9;28757:4;28753:20;28749:1;28738:9;28734:17;28727:47;28791:131;28917:4;28791:131;:::i;:::-;28783:139;;28681:248;;;:::o;28935:419::-;;29139:2;29128:9;29124:18;29116:26;;29188:9;29182:4;29178:20;29174:1;29163:9;29159:17;29152:47;29216:131;29342:4;29216:131;:::i;:::-;29208:139;;29106:248;;;:::o;29360:419::-;;29564:2;29553:9;29549:18;29541:26;;29613:9;29607:4;29603:20;29599:1;29588:9;29584:17;29577:47;29641:131;29767:4;29641:131;:::i;:::-;29633:139;;29531:248;;;:::o;29785:419::-;;29989:2;29978:9;29974:18;29966:26;;30038:9;30032:4;30028:20;30024:1;30013:9;30009:17;30002:47;30066:131;30192:4;30066:131;:::i;:::-;30058:139;;29956:248;;;:::o;30210:419::-;;30414:2;30403:9;30399:18;30391:26;;30463:9;30457:4;30453:20;30449:1;30438:9;30434:17;30427:47;30491:131;30617:4;30491:131;:::i;:::-;30483:139;;30381:248;;;:::o;30635:419::-;;30839:2;30828:9;30824:18;30816:26;;30888:9;30882:4;30878:20;30874:1;30863:9;30859:17;30852:47;30916:131;31042:4;30916:131;:::i;:::-;30908:139;;30806:248;;;:::o;31060:419::-;;31264:2;31253:9;31249:18;31241:26;;31313:9;31307:4;31303:20;31299:1;31288:9;31284:17;31277:47;31341:131;31467:4;31341:131;:::i;:::-;31333:139;;31231:248;;;:::o;31485:419::-;;31689:2;31678:9;31674:18;31666:26;;31738:9;31732:4;31728:20;31724:1;31713:9;31709:17;31702:47;31766:131;31892:4;31766:131;:::i;:::-;31758:139;;31656:248;;;:::o;31910:419::-;;32114:2;32103:9;32099:18;32091:26;;32163:9;32157:4;32153:20;32149:1;32138:9;32134:17;32127:47;32191:131;32317:4;32191:131;:::i;:::-;32183:139;;32081:248;;;:::o;32335:419::-;;32539:2;32528:9;32524:18;32516:26;;32588:9;32582:4;32578:20;32574:1;32563:9;32559:17;32552:47;32616:131;32742:4;32616:131;:::i;:::-;32608:139;;32506:248;;;:::o;32760:419::-;;32964:2;32953:9;32949:18;32941:26;;33013:9;33007:4;33003:20;32999:1;32988:9;32984:17;32977:47;33041:131;33167:4;33041:131;:::i;:::-;33033:139;;32931:248;;;:::o;33185:419::-;;33389:2;33378:9;33374:18;33366:26;;33438:9;33432:4;33428:20;33424:1;33413:9;33409:17;33402:47;33466:131;33592:4;33466:131;:::i;:::-;33458:139;;33356:248;;;:::o;33610:419::-;;33814:2;33803:9;33799:18;33791:26;;33863:9;33857:4;33853:20;33849:1;33838:9;33834:17;33827:47;33891:131;34017:4;33891:131;:::i;:::-;33883:139;;33781:248;;;:::o;34035:419::-;;34239:2;34228:9;34224:18;34216:26;;34288:9;34282:4;34278:20;34274:1;34263:9;34259:17;34252:47;34316:131;34442:4;34316:131;:::i;:::-;34308:139;;34206:248;;;:::o;34460:419::-;;34664:2;34653:9;34649:18;34641:26;;34713:9;34707:4;34703:20;34699:1;34688:9;34684:17;34677:47;34741:131;34867:4;34741:131;:::i;:::-;34733:139;;34631:248;;;:::o;34885:419::-;;35089:2;35078:9;35074:18;35066:26;;35138:9;35132:4;35128:20;35124:1;35113:9;35109:17;35102:47;35166:131;35292:4;35166:131;:::i;:::-;35158:139;;35056:248;;;:::o;35310:419::-;;35514:2;35503:9;35499:18;35491:26;;35563:9;35557:4;35553:20;35549:1;35538:9;35534:17;35527:47;35591:131;35717:4;35591:131;:::i;:::-;35583:139;;35481:248;;;:::o;35735:222::-;;35866:2;35855:9;35851:18;35843:26;;35879:71;35947:1;35936:9;35932:17;35923:6;35879:71;:::i;:::-;35833:124;;;;:::o;35963:278::-;;36029:2;36023:9;36013:19;;36071:4;36063:6;36059:17;36178:6;36166:10;36163:22;36142:18;36130:10;36127:34;36124:62;36121:2;;;36189:13;;:::i;:::-;36121:2;36224:10;36220:2;36213:22;36003:238;;;;:::o;36247:326::-;;36398:18;36390:6;36387:30;36384:2;;;36420:13;;:::i;:::-;36384:2;36500:4;36496:9;36489:4;36481:6;36477:17;36473:33;36465:41;;36561:4;36555;36551:15;36543:23;;36313:260;;;:::o;36579:327::-;;36731:18;36723:6;36720:30;36717:2;;;36753:13;;:::i;:::-;36717:2;36833:4;36829:9;36822:4;36814:6;36810:17;36806:33;36798:41;;36894:4;36888;36884:15;36876:23;;36646:260;;;:::o;36912:132::-;;37002:3;36994:11;;37032:4;37027:3;37023:14;37015:22;;36984:60;;;:::o;37050:141::-;;37122:3;37114:11;;37145:3;37142:1;37135:14;37179:4;37176:1;37166:18;37158:26;;37104:87;;;:::o;37197:114::-;;37298:5;37292:12;37282:22;;37271:40;;;:::o;37317:98::-;;37402:5;37396:12;37386:22;;37375:40;;;:::o;37421:99::-;;37507:5;37501:12;37491:22;;37480:40;;;:::o;37526:113::-;;37628:4;37623:3;37619:14;37611:22;;37601:38;;;:::o;37645:184::-;;37778:6;37773:3;37766:19;37818:4;37813:3;37809:14;37794:29;;37756:73;;;;:::o;37835:168::-;;37952:6;37947:3;37940:19;37992:4;37987:3;37983:14;37968:29;;37930:73;;;;:::o;38009:147::-;;38147:3;38132:18;;38122:34;;;;:::o;38162:169::-;;38280:6;38275:3;38268:19;38320:4;38315:3;38311:14;38296:29;;38258:73;;;;:::o;38337:148::-;;38476:3;38461:18;;38451:34;;;;:::o;38491:96::-;;38557:24;38575:5;38557:24;:::i;:::-;38546:35;;38536:51;;;:::o;38593:104::-;;38667:24;38685:5;38667:24;:::i;:::-;38656:35;;38646:51;;;:::o;38703:90::-;;38780:5;38773:13;38766:21;38755:32;;38745:48;;;:::o;38799:149::-;;38875:66;38868:5;38864:78;38853:89;;38843:105;;;:::o;38954:126::-;;39031:42;39024:5;39020:54;39009:65;;38999:81;;;:::o;39086:77::-;;39152:5;39141:16;;39131:32;;;:::o;39169:154::-;39253:6;39248:3;39243;39230:30;39315:1;39306:6;39301:3;39297:16;39290:27;39220:103;;;:::o;39329:307::-;39397:1;39407:113;39421:6;39418:1;39415:13;39407:113;;;39506:1;39501:3;39497:11;39491:18;39487:1;39482:3;39478:11;39471:39;39443:2;39440:1;39436:10;39431:15;;39407:113;;;39538:6;39535:1;39532:13;39529:2;;;39618:1;39609:6;39604:3;39600:16;39593:27;39529:2;39378:258;;;;:::o;39642:48::-;39675:9;39696:102;;39788:2;39784:7;39779:2;39772:5;39768:14;39764:28;39754:38;;39744:54;;;:::o;39804:122::-;39877:24;39895:5;39877:24;:::i;:::-;39870:5;39867:35;39857:2;;39916:1;39913;39906:12;39857:2;39847:79;:::o;39932:116::-;40002:21;40017:5;40002:21;:::i;:::-;39995:5;39992:32;39982:2;;40038:1;40035;40028:12;39982:2;39972:76;:::o;40054:120::-;40126:23;40143:5;40126:23;:::i;:::-;40119:5;40116:34;40106:2;;40164:1;40161;40154:12;40106:2;40096:78;:::o;40180:122::-;40253:24;40271:5;40253:24;:::i;:::-;40246:5;40243:35;40233:2;;40292:1;40289;40282:12;40233:2;40223:79;:::o

Swarm Source

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