ETH Price: $2,696.54 (-1.77%)

Token

RPCTesting (ESLAM)
 

Overview

Max Total Supply

471 ESLAM

Holders

427

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
*橘子味话梅糖.eth
Balance
1 ESLAM
0x11163549ccbf1936e6a5ddded7b7fd4f574d2376
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:
RPCtesting

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-19
*/

/**
 *Submitted for verification at Etherscan.io on 2022-02-10
*/

/**
 *Submitted for verification at Etherscan.io on 2022-01-18
*/

/**
 *Submitted for verification at Etherscan.io on 2022-01-18
*/

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


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
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) {
        unchecked {
            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) {
        unchecked {
            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) {
        unchecked {
            // 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) {
        unchecked {
            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) {
        unchecked {
            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) {
        return a + b;
    }

    /**
     * @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) {
        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) {
        return a * b;
    }

    /**
     * @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.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        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) {
        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) {
        unchecked {
            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.
     *
     * 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) {
        unchecked {
            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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/contracts/interfaces/IERC20.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol)

pragma solidity ^0.8.0;


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


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal 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);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^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 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) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^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() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^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;
        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");

        (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");

        (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");

        (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");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^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/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^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/interfaces/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;


// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Called with the sale price to determine how much royalty is owed and to whom.
     * @param tokenId - the NFT asset queried for royalty information
     * @param salePrice - the sale price of the NFT asset specified by `tokenId`
     * @return receiver - address of who should be sent the royalty payment
     * @return royaltyAmount - the royalty payment amount for `salePrice`
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^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/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^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/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^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: contracts/ERC721A.sol



pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 1;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

  // Mapping from token ID to ownership details
  // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
  mapping(uint256 => TokenOwnership) private _ownerships;

  // Mapping owner address to address data
  mapping(address => AddressData) private _addressData;

  // 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;

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

  /**
   * @dev See {IERC721Enumerable-totalSupply}.
   */
  function totalSupply() public view override returns (uint256) {
    return currentIndex;
  }

  /**
   * @dev See {IERC721Enumerable-tokenByIndex}.
   */
  function tokenByIndex(uint256 index) public view override returns (uint256) {
    require(index < totalSupply(), "ERC721A: global index out of bounds");
    return index;
  }

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  /**
   * @dev See {IERC165-supportsInterface}.
   */
  function supportsInterface(bytes4 interfaceId)
    public
    view
    virtual
    override(ERC165, IERC165)
    returns (bool)
  {
    return
      interfaceId == type(IERC721).interfaceId ||
      interfaceId == type(IERC721Metadata).interfaceId ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

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

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

  /**
   * @dev See {IERC721-ownerOf}.
   */
  function ownerOf(uint256 tokenId) public view override returns (address) {
    return ownershipOf(tokenId).addr;
  }

  /**
   * @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 baseURI = _baseURI();
    return
      bytes(baseURI).length > 0
        ? string(abi.encodePacked(baseURI, tokenId.toString()))
        : "";
  }

  /**
   * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
   * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
   * by default, can be overriden in child contracts.
   */
  function _baseURI() internal view virtual returns (string memory) {
    return "";
  }

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: 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 override {
    _transfer(from, to, tokenId);
  }

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: 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`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

  function _safeMint(address to, uint256 quantity) internal {
    _safeMint(to, quantity, "");
  }

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

    _beforeTokenTransfers(address(0), to, startTokenId, quantity);

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * 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
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

    emit Transfer(from, to, tokenId);
    _afterTokenTransfers(from, to, tokenId, 1);
  }

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

  /**
   * @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()) {
      try
        IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data)
      returns (bytes4 retval) {
        return retval == IERC721Receiver(to).onERC721Received.selector;
      } catch (bytes memory reason) {
        if (reason.length == 0) {
          revert("ERC721A: transfer to non ERC721Receiver implementer");
        } else {
          assembly {
            revert(add(32, reason), mload(reason))
          }
        }
      }
    } else {
      return true;
    }
  }

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * 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`.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

  /**
   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero.
   * - `from` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}
// File: contracts/RPCtesting.sol

//SPDX-License-Identifier: MIT
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)

pragma solidity ^0.8.0;









contract RPCtesting is ERC721A, IERC2981, Ownable, ReentrancyGuard {
    using Counters for Counters.Counter;
    using Strings for uint256;

    Counters.Counter private tokenCounter;

    string private baseURI = "ipfs://random";
    address private openSeaProxyRegistryAddress = 0x0000000000000000000000000000000000000000;
    bool private isOpenSeaProxyActive = true;

    uint256 public constant MAX_MINTS_PER_TX = 20;
    uint256 public maxSupply = 5555;

    uint256 public constant PUBLIC_SALE_PRICE = 0.01 ether;
    uint256 public NUM_FREE_MINTS = 555;
    bool public isPublicSaleActive = true;




    // ============ ACCESS CONTROL/SANITY MODIFIERS ============

    modifier publicSaleActive() {
        require(isPublicSaleActive, "Public sale is not open");
        _;
    }



    modifier maxMintsPerTX(uint256 numberOfTokens) {
        require(
            numberOfTokens <= MAX_MINTS_PER_TX,
            "Max mints per transaction exceeded"
        );
        _;
    }

    modifier canMintNFTs(uint256 numberOfTokens) {
      
        require(
            totalSupply() + numberOfTokens <=
                maxSupply,
            "Not enough mints remaining to mint"
        );

        _;
    }

    modifier freeMintsAvailable() {
        require(
            totalSupply() <=
                NUM_FREE_MINTS,
            "Not enough free mints remain"
        );
        _;
    }



    modifier isCorrectPayment(uint256 price, uint256 numberOfTokens) {
        if(totalSupply()>NUM_FREE_MINTS){
        require(
            (price * numberOfTokens) == msg.value,
            "Incorrect ETH value sent"
        );
        }
        _;
    }


    constructor(
    ) ERC721A("RPCTesting", "ESLAM", 100, maxSupply) {
    }

    // ============ PUBLIC FUNCTIONS FOR MINTING ============

    function mint(uint256 numberOfTokens)
        external
        payable
        nonReentrant
        isCorrectPayment(PUBLIC_SALE_PRICE, numberOfTokens)
        publicSaleActive
        canMintNFTs(numberOfTokens)
        maxMintsPerTX(numberOfTokens)
    {

        _safeMint(msg.sender, numberOfTokens);
    }



    //A simple free mint function to avoid confusion
    function freeMint()
        external
        nonReentrant
        publicSaleActive
        canMintNFTs(1)
        maxMintsPerTX(1)
        freeMintsAvailable()
    {
        _safeMint(msg.sender, 1);
    }




    // ============ PUBLIC READ-ONLY FUNCTIONS ============

    function getBaseURI() external view returns (string memory) {
        return baseURI;
    }

    // ============ OWNER-ONLY ADMIN FUNCTIONS ============

    function setBaseURI(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }

    // function to disable gasless listings for security in case
    // opensea ever shuts down or is compromised
    function setIsOpenSeaProxyActive(bool _isOpenSeaProxyActive)
        external
        onlyOwner
    {
        isOpenSeaProxyActive = _isOpenSeaProxyActive;
    }

    function setIsPublicSaleActive(bool _isPublicSaleActive)
        external
        onlyOwner
    {
        isPublicSaleActive = _isPublicSaleActive;
    }

    function setNumFreeMints(uint256 _numfreemints)
        external
        onlyOwner
    {
        NUM_FREE_MINTS = _numfreemints;
    }


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

    function withdrawTokens(IERC20 token) public onlyOwner {
        uint256 balance = token.balanceOf(address(this));
        token.transfer(msg.sender, balance);
    }



    // ============ SUPPORTING FUNCTIONS ============

    function nextTokenId() private returns (uint256) {
        tokenCounter.increment();
        return tokenCounter.current();
    }

    // ============ FUNCTION OVERRIDES ============

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721A, IERC165)
        returns (bool)
    {
        return
            interfaceId == type(IERC2981).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev Override isApprovedForAll to allowlist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        override
        returns (bool)
    {
        // Get a reference to OpenSea's proxy registry contract by instantiating
        // the contract using the already existing address.
        ProxyRegistry proxyRegistry = ProxyRegistry(
            openSeaProxyRegistryAddress
        );
        if (
            isOpenSeaProxyActive &&
            address(proxyRegistry.proxies(owner)) == operator
        ) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

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

        return
            string(abi.encodePacked(baseURI, "/", (tokenId+1).toString(), ".json"));
    }

    /**
     * @dev See {IERC165-royaltyInfo}.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        require(_exists(tokenId), "Nonexistent token");

        return (address(this), SafeMath.div(SafeMath.mul(salePrice, 5), 100));
    }
}

// These contract definitions are used to create a reference to the OpenSea
// ProxyRegistry contract by using the registry's address (see isApprovedForAll).
contract OwnableDelegateProxy {

}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","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":"freeMint","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":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"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":[{"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":"bool","name":"_isOpenSeaProxyActive","type":"bool"}],"name":"setIsOpenSeaProxyActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c0604052600160005560006007556040518060400160405280600d81526020017f697066733a2f2f72616e646f6d00000000000000000000000000000000000000815250600b90805190602001906200005b9291906200032d565b506000600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600c60146101000a81548160ff0219169083151502179055506115b3600d5561022b600e556001600f60006101000a81548160ff021916908315150217905550348015620000ed57600080fd5b506040518060400160405280600a81526020017f52504354657374696e67000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f45534c414d0000000000000000000000000000000000000000000000000000008152506064600d5460008111620001a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200019c90620004cf565b60405180910390fd5b60008211620001eb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001e290620004ad565b60405180910390fd5b8360019080519060200190620002039291906200032d565b5082600290805190602001906200021c9291906200032d565b508160a0818152505080608081815250505050505062000251620002456200025f60201b60201c565b6200026760201b60201c565b600160098190555062000567565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200033b9062000502565b90600052602060002090601f0160209004810192826200035f5760008555620003ab565b82601f106200037a57805160ff1916838001178555620003ab565b82800160010185558215620003ab579182015b82811115620003aa5782518255916020019190600101906200038d565b5b509050620003ba9190620003be565b5090565b5b80821115620003d9576000816000905550600101620003bf565b5090565b6000620003ec602783620004f1565b91507f455243373231413a206d61782062617463682073697a65206d7573742062652060008301527f6e6f6e7a65726f000000000000000000000000000000000000000000000000006020830152604082019050919050565b600062000454602e83620004f1565b91507f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008301527f6e6f6e7a65726f20737570706c790000000000000000000000000000000000006020830152604082019050919050565b60006020820190508181036000830152620004c881620003dd565b9050919050565b60006020820190508181036000830152620004ea8162000445565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200051b57607f821691505b6020821081141562000532576200053162000538565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60805160a051614c7c62000598600039600081816125c3015281816125ec0152612d47015260005050614c7c6000f3fe6080604052600436106102045760003560e01c80635b70ea9f11610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610747578063d7224ba014610772578063e43082f71461079d578063e985e9c5146107c6578063f2fde38b1461080357610204565b8063a22cb4651461068d578063b88d4fde146106b6578063c6a91b42146106df578063c87b56dd1461070a57610204565b8063715018a6116100e7578063715018a6146105d95780638da5cb5b146105f057806395d89b411461061b578063982d669e14610646578063a0712d681461067157610204565b80635b70ea9f1461051d5780636352211e1461053457806370a0823114610571578063714c5398146105ae57610204565b806323b872dd1161019b5780633ccfd60b1161016a5780633ccfd60b1461044e57806342842e0e1461046557806349df728c1461048e5780634f6ccce7146104b757806355f804b3146104f457610204565b806323b872dd1461038157806328cad13d146103aa5780632a55205a146103d35780632f745c591461041157610204565b8063095ea7b3116101d7578063095ea7b3146102d95780630a00ae831461030257806318160ddd1461032b5780631e84c4131461035657610204565b806301ffc9a71461020957806306fdde031461024657806307e89ec014610271578063081812fc1461029c575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906135db565b61082c565b60405161023d9190614313565b60405180910390f35b34801561025257600080fd5b5061025b6108a6565b604051610268919061432e565b60405180910390f35b34801561027d57600080fd5b50610286610938565b6040516102939190614690565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be91906136c0565b610943565b6040516102d09190614283565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb919061354d565b6109c8565b005b34801561030e57600080fd5b50610329600480360381019061032491906136c0565b610ae1565b005b34801561033757600080fd5b50610340610b67565b60405161034d9190614690565b60405180910390f35b34801561036257600080fd5b5061036b610b70565b6040516103789190614313565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a39190613447565b610b83565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190613589565b610b93565b005b3480156103df57600080fd5b506103fa60048036038101906103f59190613712565b610c2c565b6040516104089291906142ea565b60405180910390f35b34801561041d57600080fd5b506104386004803603810190610433919061354d565b610c98565b6040516104459190614690565b60405180910390f35b34801561045a57600080fd5b50610463610e96565b005b34801561047157600080fd5b5061048c60048036038101906104879190613447565b610f61565b005b34801561049a57600080fd5b506104b560048036038101906104b0919061362d565b610f81565b005b3480156104c357600080fd5b506104de60048036038101906104d991906136c0565b61111c565b6040516104eb9190614690565b60405180910390f35b34801561050057600080fd5b5061051b6004803603810190610516919061367f565b61116f565b005b34801561052957600080fd5b50610532611205565b005b34801561054057600080fd5b5061055b600480360381019061055691906136c0565b6113a4565b6040516105689190614283565b60405180910390f35b34801561057d57600080fd5b50610598600480360381019061059391906133e2565b6113ba565b6040516105a59190614690565b60405180910390f35b3480156105ba57600080fd5b506105c36114a3565b6040516105d0919061432e565b60405180910390f35b3480156105e557600080fd5b506105ee611535565b005b3480156105fc57600080fd5b506106056115bd565b6040516106129190614283565b60405180910390f35b34801561062757600080fd5b506106306115e7565b60405161063d919061432e565b60405180910390f35b34801561065257600080fd5b5061065b611679565b6040516106689190614690565b60405180910390f35b61068b600480360381019061068691906136c0565b61167f565b005b34801561069957600080fd5b506106b460048036038101906106af9190613511565b61183a565b005b3480156106c257600080fd5b506106dd60048036038101906106d89190613496565b6119bb565b005b3480156106eb57600080fd5b506106f4611a17565b6040516107019190614690565b60405180910390f35b34801561071657600080fd5b50610731600480360381019061072c91906136c0565b611a1c565b60405161073e919061432e565b60405180910390f35b34801561075357600080fd5b5061075c611aa4565b6040516107699190614690565b60405180910390f35b34801561077e57600080fd5b50610787611aaa565b6040516107949190614690565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190613589565b611ab0565b005b3480156107d257600080fd5b506107ed60048036038101906107e8919061340b565b611b49565b6040516107fa9190614313565b60405180910390f35b34801561080f57600080fd5b5061082a600480360381019061082591906133e2565b611c63565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089f575061089e82611d5b565b5b9050919050565b6060600180546108b590614a43565b80601f01602080910402602001604051908101604052809291908181526020018280546108e190614a43565b801561092e5780601f106109035761010080835404028352916020019161092e565b820191906000526020600020905b81548152906001019060200180831161091157829003601f168201915b5050505050905090565b662386f26fc1000081565b600061094e82611ea5565b61098d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098490614650565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109d3826113a4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3b90614510565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a63611eb2565b73ffffffffffffffffffffffffffffffffffffffff161480610a925750610a9181610a8c611eb2565b611b49565b5b610ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac890614450565b60405180910390fd5b610adc838383611eba565b505050565b610ae9611eb2565b73ffffffffffffffffffffffffffffffffffffffff16610b076115bd565b73ffffffffffffffffffffffffffffffffffffffff1614610b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b54906144b0565b60405180910390fd5b80600e8190555050565b60008054905090565b600f60009054906101000a900460ff1681565b610b8e838383611f6c565b505050565b610b9b611eb2565b73ffffffffffffffffffffffffffffffffffffffff16610bb96115bd565b73ffffffffffffffffffffffffffffffffffffffff1614610c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c06906144b0565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b600080610c3884611ea5565b610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e90614430565b60405180910390fd5b30610c8d610c86856005612525565b606461253b565b915091509250929050565b6000610ca3836113ba565b8210610ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdb90614350565b60405180910390fd5b6000610cee610b67565b905060008060005b83811015610e54576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610de857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e405786841415610e31578195505050505050610e90565b8380610e3c90614a75565b9450505b508080610e4c90614a75565b915050610cf6565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e87906145d0565b60405180910390fd5b92915050565b610e9e611eb2565b73ffffffffffffffffffffffffffffffffffffffff16610ebc6115bd565b73ffffffffffffffffffffffffffffffffffffffff1614610f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f09906144b0565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f5d573d6000803e3d6000fd5b5050565b610f7c838383604051806020016040528060008152506119bb565b505050565b610f89611eb2565b73ffffffffffffffffffffffffffffffffffffffff16610fa76115bd565b73ffffffffffffffffffffffffffffffffffffffff1614610ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff4906144b0565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016110389190614283565b60206040518083038186803b15801561105057600080fd5b505afa158015611064573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061108891906136e9565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016110c59291906142ea565b602060405180830381600087803b1580156110df57600080fd5b505af11580156110f3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061111791906135b2565b505050565b6000611126610b67565b8210611167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115e906143b0565b60405180910390fd5b819050919050565b611177611eb2565b73ffffffffffffffffffffffffffffffffffffffff166111956115bd565b73ffffffffffffffffffffffffffffffffffffffff16146111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e2906144b0565b60405180910390fd5b80600b9080519060200190611201929190613178565b5050565b6002600954141561124b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611242906145f0565b60405180910390fd5b6002600981905550600f60009054906101000a900460ff166112a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129990614630565b60405180910390fd5b6001600d54816112b0610b67565b6112ba91906147da565b11156112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f2906143d0565b60405180910390fd5b60016014811115611341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133890614410565b60405180910390fd5b600e5461134c610b67565b111561138d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138490614590565b60405180910390fd5b611398336001612551565b50506001600981905550565b60006113af8261256f565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561142b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142290614470565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600b80546114b290614a43565b80601f01602080910402602001604051908101604052809291908181526020018280546114de90614a43565b801561152b5780601f106115005761010080835404028352916020019161152b565b820191906000526020600020905b81548152906001019060200180831161150e57829003601f168201915b5050505050905090565b61153d611eb2565b73ffffffffffffffffffffffffffffffffffffffff1661155b6115bd565b73ffffffffffffffffffffffffffffffffffffffff16146115b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a8906144b0565b60405180910390fd5b6115bb6000612772565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546115f690614a43565b80601f016020809104026020016040519081016040528092919081815260200182805461162290614a43565b801561166f5780601f106116445761010080835404028352916020019161166f565b820191906000526020600020905b81548152906001019060200180831161165257829003601f168201915b5050505050905090565b600e5481565b600260095414156116c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bc906145f0565b60405180910390fd5b6002600981905550662386f26fc1000081600e546116e1610b67565b1115611735573481836116f49190614861565b14611734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172b906145b0565b60405180910390fd5b5b600f60009054906101000a900460ff16611784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177b90614630565b60405180910390fd5b82600d5481611791610b67565b61179b91906147da565b11156117dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d3906143d0565b60405180910390fd5b836014811115611821576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181890614410565b60405180910390fd5b61182b3386612551565b50505050600160098190555050565b611842611eb2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a7906144d0565b60405180910390fd5b80600660006118bd611eb2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661196a611eb2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119af9190614313565b60405180910390a35050565b6119c6848484611f6c565b6119d284848484612838565b611a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0890614530565b60405180910390fd5b50505050565b601481565b6060611a2782611ea5565b611a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5d90614430565b60405180910390fd5b600b611a7d600184611a7891906147da565b6129cf565b604051602001611a8e929190614249565b6040516020818303038152906040529050919050565b600d5481565b60075481565b611ab8611eb2565b73ffffffffffffffffffffffffffffffffffffffff16611ad66115bd565b73ffffffffffffffffffffffffffffffffffffffff1614611b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b23906144b0565b60405180910390fd5b80600c60146101000a81548160ff02191690831515021790555050565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600c60149054906101000a900460ff168015611c4057508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611bd89190614283565b60206040518083038186803b158015611bf057600080fd5b505afa158015611c04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c289190613656565b73ffffffffffffffffffffffffffffffffffffffff16145b15611c4f576001915050611c5d565b611c598484612b7c565b9150505b92915050565b611c6b611eb2565b73ffffffffffffffffffffffffffffffffffffffff16611c896115bd565b73ffffffffffffffffffffffffffffffffffffffff1614611cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd6906144b0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4690614370565b60405180910390fd5b611d5881612772565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e2657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e8e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e9e5750611e9d82612c10565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611f778261256f565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611f9e611eb2565b73ffffffffffffffffffffffffffffffffffffffff161480611ffa5750611fc3611eb2565b73ffffffffffffffffffffffffffffffffffffffff16611fe284610943565b73ffffffffffffffffffffffffffffffffffffffff16145b8061201657506120158260000151612010611eb2565b611b49565b5b905080612058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204f906144f0565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146120ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c190614490565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561213a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612131906143f0565b60405180910390fd5b6121478585856001612c7a565b6121576000848460000151611eba565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166121c591906148bb565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166122699190614794565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461236f91906147da565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124b5576123e581611ea5565b156124b4576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461251d8686866001612c80565b505050505050565b600081836125339190614861565b905092915050565b600081836125499190614830565b905092915050565b61256b828260405180602001604052806000815250612c86565b5050565b6125776131fe565b61258082611ea5565b6125bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b690614390565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106126235760017f00000000000000000000000000000000000000000000000000000000000000008461261691906148ef565b61262091906147da565b90505b60008390505b818110612731576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461271d5780935050505061276d565b50808061272990614a19565b915050612629565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276490614610565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006128598473ffffffffffffffffffffffffffffffffffffffff16613165565b156129c2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612882611eb2565b8786866040518563ffffffff1660e01b81526004016128a4949392919061429e565b602060405180830381600087803b1580156128be57600080fd5b505af19250505080156128ef57506040513d601f19601f820116820180604052508101906128ec9190613604565b60015b612972573d806000811461291f576040519150601f19603f3d011682016040523d82523d6000602084013e612924565b606091505b5060008151141561296a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296190614530565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129c7565b600190505b949350505050565b60606000821415612a17576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b77565b600082905060005b60008214612a49578080612a3290614a75565b915050600a82612a429190614830565b9150612a1f565b60008167ffffffffffffffff811115612a8b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612abd5781602001600182028036833780820191505090505b5090505b60008514612b7057600182612ad691906148ef565b9150600a85612ae59190614abe565b6030612af191906147da565b60f81b818381518110612b2d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b699190614830565b9450612ac1565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf390614570565b60405180910390fd5b612d0581611ea5565b15612d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3c90614550565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9f90614670565b60405180910390fd5b612db56000858386612c7a565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612eb29190614794565b6fffffffffffffffffffffffffffffffff168152602001858360200151612ed99190614794565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561314857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130e86000888488612838565b613127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311e90614530565b60405180910390fd5b818061313290614a75565b925050808061314090614a75565b915050613077565b508060008190555061315d6000878588612c80565b505050505050565b600080823b905060008111915050919050565b82805461318490614a43565b90600052602060002090601f0160209004810192826131a657600085556131ed565b82601f106131bf57805160ff19168380011785556131ed565b828001600101855582156131ed579182015b828111156131ec5782518255916020019190600101906131d1565b5b5090506131fa9190613238565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613251576000816000905550600101613239565b5090565b6000613268613263846146dc565b6146ab565b90508281526020810184848401111561328057600080fd5b61328b8482856149d7565b509392505050565b60006132a66132a18461470c565b6146ab565b9050828152602081018484840111156132be57600080fd5b6132c98482856149d7565b509392505050565b6000813590506132e081614bbc565b92915050565b6000813590506132f581614bd3565b92915050565b60008151905061330a81614bd3565b92915050565b60008135905061331f81614bea565b92915050565b60008151905061333481614bea565b92915050565b600082601f83011261334b57600080fd5b813561335b848260208601613255565b91505092915050565b60008135905061337381614c01565b92915050565b60008151905061338881614c18565b92915050565b600082601f83011261339f57600080fd5b81356133af848260208601613293565b91505092915050565b6000813590506133c781614c2f565b92915050565b6000815190506133dc81614c2f565b92915050565b6000602082840312156133f457600080fd5b6000613402848285016132d1565b91505092915050565b6000806040838503121561341e57600080fd5b600061342c858286016132d1565b925050602061343d858286016132d1565b9150509250929050565b60008060006060848603121561345c57600080fd5b600061346a868287016132d1565b935050602061347b868287016132d1565b925050604061348c868287016133b8565b9150509250925092565b600080600080608085870312156134ac57600080fd5b60006134ba878288016132d1565b94505060206134cb878288016132d1565b93505060406134dc878288016133b8565b925050606085013567ffffffffffffffff8111156134f957600080fd5b6135058782880161333a565b91505092959194509250565b6000806040838503121561352457600080fd5b6000613532858286016132d1565b9250506020613543858286016132e6565b9150509250929050565b6000806040838503121561356057600080fd5b600061356e858286016132d1565b925050602061357f858286016133b8565b9150509250929050565b60006020828403121561359b57600080fd5b60006135a9848285016132e6565b91505092915050565b6000602082840312156135c457600080fd5b60006135d2848285016132fb565b91505092915050565b6000602082840312156135ed57600080fd5b60006135fb84828501613310565b91505092915050565b60006020828403121561361657600080fd5b600061362484828501613325565b91505092915050565b60006020828403121561363f57600080fd5b600061364d84828501613364565b91505092915050565b60006020828403121561366857600080fd5b600061367684828501613379565b91505092915050565b60006020828403121561369157600080fd5b600082013567ffffffffffffffff8111156136ab57600080fd5b6136b78482850161338e565b91505092915050565b6000602082840312156136d257600080fd5b60006136e0848285016133b8565b91505092915050565b6000602082840312156136fb57600080fd5b6000613709848285016133cd565b91505092915050565b6000806040838503121561372557600080fd5b6000613733858286016133b8565b9250506020613744858286016133b8565b9150509250929050565b61375781614923565b82525050565b61376681614935565b82525050565b600061377782614751565b6137818185614767565b93506137918185602086016149e6565b61379a81614bab565b840191505092915050565b60006137b08261475c565b6137ba8185614778565b93506137ca8185602086016149e6565b6137d381614bab565b840191505092915050565b60006137e98261475c565b6137f38185614789565b93506138038185602086016149e6565b80840191505092915050565b6000815461381c81614a43565b6138268186614789565b94506001821660008114613841576001811461385257613885565b60ff19831686528186019350613885565b61385b8561473c565b60005b8381101561387d5781548189015260018201915060208101905061385e565b838801955050505b50505092915050565b600061389b602283614778565b91507f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613901602683614778565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613967602a83614778565b91507f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008301527f74656e7420746f6b656e000000000000000000000000000000000000000000006020830152604082019050919050565b60006139cd602383614778565b91507f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008301527f6e647300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a33602283614778565b91507f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008301527f6e740000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a99602583614778565b91507f455243373231413a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613aff602283614778565b91507f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008301527f65640000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b65601183614778565b91507f4e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006000830152602082019050919050565b6000613ba5603983614778565b91507f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006020830152604082019050919050565b6000613c0b602b83614778565b91507f455243373231413a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b6000613c71602683614778565b91507f455243373231413a207472616e736665722066726f6d20696e636f727265637460008301527f206f776e657200000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cd7600583614789565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b6000613d17602083614778565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613d57601a83614778565b91507f455243373231413a20617070726f766520746f2063616c6c65720000000000006000830152602082019050919050565b6000613d97603283614778565b91507f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b6000613dfd602283614778565b91507f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008301527f65720000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e63603383614778565b91507f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008301527f6563656976657220696d706c656d656e746572000000000000000000000000006020830152604082019050919050565b6000613ec9601d83614778565b91507f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006000830152602082019050919050565b6000613f09602183614778565b91507f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f6f601c83614778565b91507f4e6f7420656e6f7567682066726565206d696e74732072656d61696e000000006000830152602082019050919050565b6000613faf601883614778565b91507f496e636f7272656374204554482076616c75652073656e7400000000000000006000830152602082019050919050565b6000613fef602e83614778565b91507f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008301527f6f776e657220627920696e6465780000000000000000000000000000000000006020830152604082019050919050565b6000614055601f83614778565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b6000614095602f83614778565b91507f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008301527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006140fb601783614778565b91507f5075626c69632073616c65206973206e6f74206f70656e0000000000000000006000830152602082019050919050565b600061413b602d83614778565b91507f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008301527f78697374656e7420746f6b656e000000000000000000000000000000000000006020830152604082019050919050565b60006141a1602283614778565b91507f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008301527f67680000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614207600183614789565b91507f2f000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b614243816149cd565b82525050565b6000614255828561380f565b9150614260826141fa565b915061426c82846137de565b915061427782613cca565b91508190509392505050565b6000602082019050614298600083018461374e565b92915050565b60006080820190506142b3600083018761374e565b6142c0602083018661374e565b6142cd604083018561423a565b81810360608301526142df818461376c565b905095945050505050565b60006040820190506142ff600083018561374e565b61430c602083018461423a565b9392505050565b6000602082019050614328600083018461375d565b92915050565b6000602082019050818103600083015261434881846137a5565b905092915050565b600060208201905081810360008301526143698161388e565b9050919050565b60006020820190508181036000830152614389816138f4565b9050919050565b600060208201905081810360008301526143a98161395a565b9050919050565b600060208201905081810360008301526143c9816139c0565b9050919050565b600060208201905081810360008301526143e981613a26565b9050919050565b6000602082019050818103600083015261440981613a8c565b9050919050565b6000602082019050818103600083015261442981613af2565b9050919050565b6000602082019050818103600083015261444981613b58565b9050919050565b6000602082019050818103600083015261446981613b98565b9050919050565b6000602082019050818103600083015261448981613bfe565b9050919050565b600060208201905081810360008301526144a981613c64565b9050919050565b600060208201905081810360008301526144c981613d0a565b9050919050565b600060208201905081810360008301526144e981613d4a565b9050919050565b6000602082019050818103600083015261450981613d8a565b9050919050565b6000602082019050818103600083015261452981613df0565b9050919050565b6000602082019050818103600083015261454981613e56565b9050919050565b6000602082019050818103600083015261456981613ebc565b9050919050565b6000602082019050818103600083015261458981613efc565b9050919050565b600060208201905081810360008301526145a981613f62565b9050919050565b600060208201905081810360008301526145c981613fa2565b9050919050565b600060208201905081810360008301526145e981613fe2565b9050919050565b6000602082019050818103600083015261460981614048565b9050919050565b6000602082019050818103600083015261462981614088565b9050919050565b60006020820190508181036000830152614649816140ee565b9050919050565b600060208201905081810360008301526146698161412e565b9050919050565b6000602082019050818103600083015261468981614194565b9050919050565b60006020820190506146a5600083018461423a565b92915050565b6000604051905081810181811067ffffffffffffffff821117156146d2576146d1614b7c565b5b8060405250919050565b600067ffffffffffffffff8211156146f7576146f6614b7c565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561472757614726614b7c565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061479f82614991565b91506147aa83614991565b9250826fffffffffffffffffffffffffffffffff038211156147cf576147ce614aef565b5b828201905092915050565b60006147e5826149cd565b91506147f0836149cd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561482557614824614aef565b5b828201905092915050565b600061483b826149cd565b9150614846836149cd565b92508261485657614855614b1e565b5b828204905092915050565b600061486c826149cd565b9150614877836149cd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156148b0576148af614aef565b5b828202905092915050565b60006148c682614991565b91506148d183614991565b9250828210156148e4576148e3614aef565b5b828203905092915050565b60006148fa826149cd565b9150614905836149cd565b92508282101561491857614917614aef565b5b828203905092915050565b600061492e826149ad565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061497882614923565b9050919050565b600061498a82614923565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614a045780820151818401526020810190506149e9565b83811115614a13576000848401525b50505050565b6000614a24826149cd565b91506000821415614a3857614a37614aef565b5b600182039050919050565b60006002820490506001821680614a5b57607f821691505b60208210811415614a6f57614a6e614b4d565b5b50919050565b6000614a80826149cd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614ab357614ab2614aef565b5b600182019050919050565b6000614ac9826149cd565b9150614ad4836149cd565b925082614ae457614ae3614b1e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614bc581614923565b8114614bd057600080fd5b50565b614bdc81614935565b8114614be757600080fd5b50565b614bf381614941565b8114614bfe57600080fd5b50565b614c0a8161496d565b8114614c1557600080fd5b50565b614c218161497f565b8114614c2c57600080fd5b50565b614c38816149cd565b8114614c4357600080fd5b5056fea2646970667358221220c2261d063e94db97c68c1d5d4d9076c5a04251664fcebf9898ccbf584ccb384e64736f6c63430008000033

Deployed Bytecode

0x6080604052600436106102045760003560e01c80635b70ea9f11610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610747578063d7224ba014610772578063e43082f71461079d578063e985e9c5146107c6578063f2fde38b1461080357610204565b8063a22cb4651461068d578063b88d4fde146106b6578063c6a91b42146106df578063c87b56dd1461070a57610204565b8063715018a6116100e7578063715018a6146105d95780638da5cb5b146105f057806395d89b411461061b578063982d669e14610646578063a0712d681461067157610204565b80635b70ea9f1461051d5780636352211e1461053457806370a0823114610571578063714c5398146105ae57610204565b806323b872dd1161019b5780633ccfd60b1161016a5780633ccfd60b1461044e57806342842e0e1461046557806349df728c1461048e5780634f6ccce7146104b757806355f804b3146104f457610204565b806323b872dd1461038157806328cad13d146103aa5780632a55205a146103d35780632f745c591461041157610204565b8063095ea7b3116101d7578063095ea7b3146102d95780630a00ae831461030257806318160ddd1461032b5780631e84c4131461035657610204565b806301ffc9a71461020957806306fdde031461024657806307e89ec014610271578063081812fc1461029c575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906135db565b61082c565b60405161023d9190614313565b60405180910390f35b34801561025257600080fd5b5061025b6108a6565b604051610268919061432e565b60405180910390f35b34801561027d57600080fd5b50610286610938565b6040516102939190614690565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be91906136c0565b610943565b6040516102d09190614283565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb919061354d565b6109c8565b005b34801561030e57600080fd5b50610329600480360381019061032491906136c0565b610ae1565b005b34801561033757600080fd5b50610340610b67565b60405161034d9190614690565b60405180910390f35b34801561036257600080fd5b5061036b610b70565b6040516103789190614313565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a39190613447565b610b83565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190613589565b610b93565b005b3480156103df57600080fd5b506103fa60048036038101906103f59190613712565b610c2c565b6040516104089291906142ea565b60405180910390f35b34801561041d57600080fd5b506104386004803603810190610433919061354d565b610c98565b6040516104459190614690565b60405180910390f35b34801561045a57600080fd5b50610463610e96565b005b34801561047157600080fd5b5061048c60048036038101906104879190613447565b610f61565b005b34801561049a57600080fd5b506104b560048036038101906104b0919061362d565b610f81565b005b3480156104c357600080fd5b506104de60048036038101906104d991906136c0565b61111c565b6040516104eb9190614690565b60405180910390f35b34801561050057600080fd5b5061051b6004803603810190610516919061367f565b61116f565b005b34801561052957600080fd5b50610532611205565b005b34801561054057600080fd5b5061055b600480360381019061055691906136c0565b6113a4565b6040516105689190614283565b60405180910390f35b34801561057d57600080fd5b50610598600480360381019061059391906133e2565b6113ba565b6040516105a59190614690565b60405180910390f35b3480156105ba57600080fd5b506105c36114a3565b6040516105d0919061432e565b60405180910390f35b3480156105e557600080fd5b506105ee611535565b005b3480156105fc57600080fd5b506106056115bd565b6040516106129190614283565b60405180910390f35b34801561062757600080fd5b506106306115e7565b60405161063d919061432e565b60405180910390f35b34801561065257600080fd5b5061065b611679565b6040516106689190614690565b60405180910390f35b61068b600480360381019061068691906136c0565b61167f565b005b34801561069957600080fd5b506106b460048036038101906106af9190613511565b61183a565b005b3480156106c257600080fd5b506106dd60048036038101906106d89190613496565b6119bb565b005b3480156106eb57600080fd5b506106f4611a17565b6040516107019190614690565b60405180910390f35b34801561071657600080fd5b50610731600480360381019061072c91906136c0565b611a1c565b60405161073e919061432e565b60405180910390f35b34801561075357600080fd5b5061075c611aa4565b6040516107699190614690565b60405180910390f35b34801561077e57600080fd5b50610787611aaa565b6040516107949190614690565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190613589565b611ab0565b005b3480156107d257600080fd5b506107ed60048036038101906107e8919061340b565b611b49565b6040516107fa9190614313565b60405180910390f35b34801561080f57600080fd5b5061082a600480360381019061082591906133e2565b611c63565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089f575061089e82611d5b565b5b9050919050565b6060600180546108b590614a43565b80601f01602080910402602001604051908101604052809291908181526020018280546108e190614a43565b801561092e5780601f106109035761010080835404028352916020019161092e565b820191906000526020600020905b81548152906001019060200180831161091157829003601f168201915b5050505050905090565b662386f26fc1000081565b600061094e82611ea5565b61098d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098490614650565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109d3826113a4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3b90614510565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a63611eb2565b73ffffffffffffffffffffffffffffffffffffffff161480610a925750610a9181610a8c611eb2565b611b49565b5b610ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac890614450565b60405180910390fd5b610adc838383611eba565b505050565b610ae9611eb2565b73ffffffffffffffffffffffffffffffffffffffff16610b076115bd565b73ffffffffffffffffffffffffffffffffffffffff1614610b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b54906144b0565b60405180910390fd5b80600e8190555050565b60008054905090565b600f60009054906101000a900460ff1681565b610b8e838383611f6c565b505050565b610b9b611eb2565b73ffffffffffffffffffffffffffffffffffffffff16610bb96115bd565b73ffffffffffffffffffffffffffffffffffffffff1614610c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c06906144b0565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b600080610c3884611ea5565b610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e90614430565b60405180910390fd5b30610c8d610c86856005612525565b606461253b565b915091509250929050565b6000610ca3836113ba565b8210610ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdb90614350565b60405180910390fd5b6000610cee610b67565b905060008060005b83811015610e54576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610de857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e405786841415610e31578195505050505050610e90565b8380610e3c90614a75565b9450505b508080610e4c90614a75565b915050610cf6565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e87906145d0565b60405180910390fd5b92915050565b610e9e611eb2565b73ffffffffffffffffffffffffffffffffffffffff16610ebc6115bd565b73ffffffffffffffffffffffffffffffffffffffff1614610f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f09906144b0565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f5d573d6000803e3d6000fd5b5050565b610f7c838383604051806020016040528060008152506119bb565b505050565b610f89611eb2565b73ffffffffffffffffffffffffffffffffffffffff16610fa76115bd565b73ffffffffffffffffffffffffffffffffffffffff1614610ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff4906144b0565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016110389190614283565b60206040518083038186803b15801561105057600080fd5b505afa158015611064573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061108891906136e9565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016110c59291906142ea565b602060405180830381600087803b1580156110df57600080fd5b505af11580156110f3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061111791906135b2565b505050565b6000611126610b67565b8210611167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115e906143b0565b60405180910390fd5b819050919050565b611177611eb2565b73ffffffffffffffffffffffffffffffffffffffff166111956115bd565b73ffffffffffffffffffffffffffffffffffffffff16146111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e2906144b0565b60405180910390fd5b80600b9080519060200190611201929190613178565b5050565b6002600954141561124b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611242906145f0565b60405180910390fd5b6002600981905550600f60009054906101000a900460ff166112a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129990614630565b60405180910390fd5b6001600d54816112b0610b67565b6112ba91906147da565b11156112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f2906143d0565b60405180910390fd5b60016014811115611341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133890614410565b60405180910390fd5b600e5461134c610b67565b111561138d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138490614590565b60405180910390fd5b611398336001612551565b50506001600981905550565b60006113af8261256f565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561142b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142290614470565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600b80546114b290614a43565b80601f01602080910402602001604051908101604052809291908181526020018280546114de90614a43565b801561152b5780601f106115005761010080835404028352916020019161152b565b820191906000526020600020905b81548152906001019060200180831161150e57829003601f168201915b5050505050905090565b61153d611eb2565b73ffffffffffffffffffffffffffffffffffffffff1661155b6115bd565b73ffffffffffffffffffffffffffffffffffffffff16146115b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a8906144b0565b60405180910390fd5b6115bb6000612772565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546115f690614a43565b80601f016020809104026020016040519081016040528092919081815260200182805461162290614a43565b801561166f5780601f106116445761010080835404028352916020019161166f565b820191906000526020600020905b81548152906001019060200180831161165257829003601f168201915b5050505050905090565b600e5481565b600260095414156116c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bc906145f0565b60405180910390fd5b6002600981905550662386f26fc1000081600e546116e1610b67565b1115611735573481836116f49190614861565b14611734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172b906145b0565b60405180910390fd5b5b600f60009054906101000a900460ff16611784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177b90614630565b60405180910390fd5b82600d5481611791610b67565b61179b91906147da565b11156117dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d3906143d0565b60405180910390fd5b836014811115611821576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181890614410565b60405180910390fd5b61182b3386612551565b50505050600160098190555050565b611842611eb2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a7906144d0565b60405180910390fd5b80600660006118bd611eb2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661196a611eb2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119af9190614313565b60405180910390a35050565b6119c6848484611f6c565b6119d284848484612838565b611a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0890614530565b60405180910390fd5b50505050565b601481565b6060611a2782611ea5565b611a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5d90614430565b60405180910390fd5b600b611a7d600184611a7891906147da565b6129cf565b604051602001611a8e929190614249565b6040516020818303038152906040529050919050565b600d5481565b60075481565b611ab8611eb2565b73ffffffffffffffffffffffffffffffffffffffff16611ad66115bd565b73ffffffffffffffffffffffffffffffffffffffff1614611b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b23906144b0565b60405180910390fd5b80600c60146101000a81548160ff02191690831515021790555050565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600c60149054906101000a900460ff168015611c4057508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611bd89190614283565b60206040518083038186803b158015611bf057600080fd5b505afa158015611c04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c289190613656565b73ffffffffffffffffffffffffffffffffffffffff16145b15611c4f576001915050611c5d565b611c598484612b7c565b9150505b92915050565b611c6b611eb2565b73ffffffffffffffffffffffffffffffffffffffff16611c896115bd565b73ffffffffffffffffffffffffffffffffffffffff1614611cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd6906144b0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4690614370565b60405180910390fd5b611d5881612772565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e2657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e8e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e9e5750611e9d82612c10565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611f778261256f565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611f9e611eb2565b73ffffffffffffffffffffffffffffffffffffffff161480611ffa5750611fc3611eb2565b73ffffffffffffffffffffffffffffffffffffffff16611fe284610943565b73ffffffffffffffffffffffffffffffffffffffff16145b8061201657506120158260000151612010611eb2565b611b49565b5b905080612058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204f906144f0565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146120ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c190614490565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561213a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612131906143f0565b60405180910390fd5b6121478585856001612c7a565b6121576000848460000151611eba565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166121c591906148bb565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166122699190614794565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461236f91906147da565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124b5576123e581611ea5565b156124b4576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461251d8686866001612c80565b505050505050565b600081836125339190614861565b905092915050565b600081836125499190614830565b905092915050565b61256b828260405180602001604052806000815250612c86565b5050565b6125776131fe565b61258082611ea5565b6125bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b690614390565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000006483106126235760017f00000000000000000000000000000000000000000000000000000000000000648461261691906148ef565b61262091906147da565b90505b60008390505b818110612731576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461271d5780935050505061276d565b50808061272990614a19565b915050612629565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276490614610565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006128598473ffffffffffffffffffffffffffffffffffffffff16613165565b156129c2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612882611eb2565b8786866040518563ffffffff1660e01b81526004016128a4949392919061429e565b602060405180830381600087803b1580156128be57600080fd5b505af19250505080156128ef57506040513d601f19601f820116820180604052508101906128ec9190613604565b60015b612972573d806000811461291f576040519150601f19603f3d011682016040523d82523d6000602084013e612924565b606091505b5060008151141561296a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296190614530565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129c7565b600190505b949350505050565b60606000821415612a17576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b77565b600082905060005b60008214612a49578080612a3290614a75565b915050600a82612a429190614830565b9150612a1f565b60008167ffffffffffffffff811115612a8b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612abd5781602001600182028036833780820191505090505b5090505b60008514612b7057600182612ad691906148ef565b9150600a85612ae59190614abe565b6030612af191906147da565b60f81b818381518110612b2d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b699190614830565b9450612ac1565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf390614570565b60405180910390fd5b612d0581611ea5565b15612d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3c90614550565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000064831115612da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9f90614670565b60405180910390fd5b612db56000858386612c7a565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612eb29190614794565b6fffffffffffffffffffffffffffffffff168152602001858360200151612ed99190614794565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561314857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130e86000888488612838565b613127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311e90614530565b60405180910390fd5b818061313290614a75565b925050808061314090614a75565b915050613077565b508060008190555061315d6000878588612c80565b505050505050565b600080823b905060008111915050919050565b82805461318490614a43565b90600052602060002090601f0160209004810192826131a657600085556131ed565b82601f106131bf57805160ff19168380011785556131ed565b828001600101855582156131ed579182015b828111156131ec5782518255916020019190600101906131d1565b5b5090506131fa9190613238565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613251576000816000905550600101613239565b5090565b6000613268613263846146dc565b6146ab565b90508281526020810184848401111561328057600080fd5b61328b8482856149d7565b509392505050565b60006132a66132a18461470c565b6146ab565b9050828152602081018484840111156132be57600080fd5b6132c98482856149d7565b509392505050565b6000813590506132e081614bbc565b92915050565b6000813590506132f581614bd3565b92915050565b60008151905061330a81614bd3565b92915050565b60008135905061331f81614bea565b92915050565b60008151905061333481614bea565b92915050565b600082601f83011261334b57600080fd5b813561335b848260208601613255565b91505092915050565b60008135905061337381614c01565b92915050565b60008151905061338881614c18565b92915050565b600082601f83011261339f57600080fd5b81356133af848260208601613293565b91505092915050565b6000813590506133c781614c2f565b92915050565b6000815190506133dc81614c2f565b92915050565b6000602082840312156133f457600080fd5b6000613402848285016132d1565b91505092915050565b6000806040838503121561341e57600080fd5b600061342c858286016132d1565b925050602061343d858286016132d1565b9150509250929050565b60008060006060848603121561345c57600080fd5b600061346a868287016132d1565b935050602061347b868287016132d1565b925050604061348c868287016133b8565b9150509250925092565b600080600080608085870312156134ac57600080fd5b60006134ba878288016132d1565b94505060206134cb878288016132d1565b93505060406134dc878288016133b8565b925050606085013567ffffffffffffffff8111156134f957600080fd5b6135058782880161333a565b91505092959194509250565b6000806040838503121561352457600080fd5b6000613532858286016132d1565b9250506020613543858286016132e6565b9150509250929050565b6000806040838503121561356057600080fd5b600061356e858286016132d1565b925050602061357f858286016133b8565b9150509250929050565b60006020828403121561359b57600080fd5b60006135a9848285016132e6565b91505092915050565b6000602082840312156135c457600080fd5b60006135d2848285016132fb565b91505092915050565b6000602082840312156135ed57600080fd5b60006135fb84828501613310565b91505092915050565b60006020828403121561361657600080fd5b600061362484828501613325565b91505092915050565b60006020828403121561363f57600080fd5b600061364d84828501613364565b91505092915050565b60006020828403121561366857600080fd5b600061367684828501613379565b91505092915050565b60006020828403121561369157600080fd5b600082013567ffffffffffffffff8111156136ab57600080fd5b6136b78482850161338e565b91505092915050565b6000602082840312156136d257600080fd5b60006136e0848285016133b8565b91505092915050565b6000602082840312156136fb57600080fd5b6000613709848285016133cd565b91505092915050565b6000806040838503121561372557600080fd5b6000613733858286016133b8565b9250506020613744858286016133b8565b9150509250929050565b61375781614923565b82525050565b61376681614935565b82525050565b600061377782614751565b6137818185614767565b93506137918185602086016149e6565b61379a81614bab565b840191505092915050565b60006137b08261475c565b6137ba8185614778565b93506137ca8185602086016149e6565b6137d381614bab565b840191505092915050565b60006137e98261475c565b6137f38185614789565b93506138038185602086016149e6565b80840191505092915050565b6000815461381c81614a43565b6138268186614789565b94506001821660008114613841576001811461385257613885565b60ff19831686528186019350613885565b61385b8561473c565b60005b8381101561387d5781548189015260018201915060208101905061385e565b838801955050505b50505092915050565b600061389b602283614778565b91507f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613901602683614778565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613967602a83614778565b91507f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008301527f74656e7420746f6b656e000000000000000000000000000000000000000000006020830152604082019050919050565b60006139cd602383614778565b91507f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008301527f6e647300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a33602283614778565b91507f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008301527f6e740000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a99602583614778565b91507f455243373231413a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613aff602283614778565b91507f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008301527f65640000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b65601183614778565b91507f4e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006000830152602082019050919050565b6000613ba5603983614778565b91507f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006020830152604082019050919050565b6000613c0b602b83614778565b91507f455243373231413a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b6000613c71602683614778565b91507f455243373231413a207472616e736665722066726f6d20696e636f727265637460008301527f206f776e657200000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cd7600583614789565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b6000613d17602083614778565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613d57601a83614778565b91507f455243373231413a20617070726f766520746f2063616c6c65720000000000006000830152602082019050919050565b6000613d97603283614778565b91507f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b6000613dfd602283614778565b91507f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008301527f65720000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e63603383614778565b91507f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008301527f6563656976657220696d706c656d656e746572000000000000000000000000006020830152604082019050919050565b6000613ec9601d83614778565b91507f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006000830152602082019050919050565b6000613f09602183614778565b91507f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f6f601c83614778565b91507f4e6f7420656e6f7567682066726565206d696e74732072656d61696e000000006000830152602082019050919050565b6000613faf601883614778565b91507f496e636f7272656374204554482076616c75652073656e7400000000000000006000830152602082019050919050565b6000613fef602e83614778565b91507f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008301527f6f776e657220627920696e6465780000000000000000000000000000000000006020830152604082019050919050565b6000614055601f83614778565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b6000614095602f83614778565b91507f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008301527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006140fb601783614778565b91507f5075626c69632073616c65206973206e6f74206f70656e0000000000000000006000830152602082019050919050565b600061413b602d83614778565b91507f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008301527f78697374656e7420746f6b656e000000000000000000000000000000000000006020830152604082019050919050565b60006141a1602283614778565b91507f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008301527f67680000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614207600183614789565b91507f2f000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b614243816149cd565b82525050565b6000614255828561380f565b9150614260826141fa565b915061426c82846137de565b915061427782613cca565b91508190509392505050565b6000602082019050614298600083018461374e565b92915050565b60006080820190506142b3600083018761374e565b6142c0602083018661374e565b6142cd604083018561423a565b81810360608301526142df818461376c565b905095945050505050565b60006040820190506142ff600083018561374e565b61430c602083018461423a565b9392505050565b6000602082019050614328600083018461375d565b92915050565b6000602082019050818103600083015261434881846137a5565b905092915050565b600060208201905081810360008301526143698161388e565b9050919050565b60006020820190508181036000830152614389816138f4565b9050919050565b600060208201905081810360008301526143a98161395a565b9050919050565b600060208201905081810360008301526143c9816139c0565b9050919050565b600060208201905081810360008301526143e981613a26565b9050919050565b6000602082019050818103600083015261440981613a8c565b9050919050565b6000602082019050818103600083015261442981613af2565b9050919050565b6000602082019050818103600083015261444981613b58565b9050919050565b6000602082019050818103600083015261446981613b98565b9050919050565b6000602082019050818103600083015261448981613bfe565b9050919050565b600060208201905081810360008301526144a981613c64565b9050919050565b600060208201905081810360008301526144c981613d0a565b9050919050565b600060208201905081810360008301526144e981613d4a565b9050919050565b6000602082019050818103600083015261450981613d8a565b9050919050565b6000602082019050818103600083015261452981613df0565b9050919050565b6000602082019050818103600083015261454981613e56565b9050919050565b6000602082019050818103600083015261456981613ebc565b9050919050565b6000602082019050818103600083015261458981613efc565b9050919050565b600060208201905081810360008301526145a981613f62565b9050919050565b600060208201905081810360008301526145c981613fa2565b9050919050565b600060208201905081810360008301526145e981613fe2565b9050919050565b6000602082019050818103600083015261460981614048565b9050919050565b6000602082019050818103600083015261462981614088565b9050919050565b60006020820190508181036000830152614649816140ee565b9050919050565b600060208201905081810360008301526146698161412e565b9050919050565b6000602082019050818103600083015261468981614194565b9050919050565b60006020820190506146a5600083018461423a565b92915050565b6000604051905081810181811067ffffffffffffffff821117156146d2576146d1614b7c565b5b8060405250919050565b600067ffffffffffffffff8211156146f7576146f6614b7c565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561472757614726614b7c565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061479f82614991565b91506147aa83614991565b9250826fffffffffffffffffffffffffffffffff038211156147cf576147ce614aef565b5b828201905092915050565b60006147e5826149cd565b91506147f0836149cd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561482557614824614aef565b5b828201905092915050565b600061483b826149cd565b9150614846836149cd565b92508261485657614855614b1e565b5b828204905092915050565b600061486c826149cd565b9150614877836149cd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156148b0576148af614aef565b5b828202905092915050565b60006148c682614991565b91506148d183614991565b9250828210156148e4576148e3614aef565b5b828203905092915050565b60006148fa826149cd565b9150614905836149cd565b92508282101561491857614917614aef565b5b828203905092915050565b600061492e826149ad565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061497882614923565b9050919050565b600061498a82614923565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614a045780820151818401526020810190506149e9565b83811115614a13576000848401525b50505050565b6000614a24826149cd565b91506000821415614a3857614a37614aef565b5b600182039050919050565b60006002820490506001821680614a5b57607f821691505b60208210811415614a6f57614a6e614b4d565b5b50919050565b6000614a80826149cd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614ab357614ab2614aef565b5b600182019050919050565b6000614ac9826149cd565b9150614ad4836149cd565b925082614ae457614ae3614b1e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614bc581614923565b8114614bd057600080fd5b50565b614bdc81614935565b8114614be757600080fd5b50565b614bf381614941565b8114614bfe57600080fd5b50565b614c0a8161496d565b8114614c1557600080fd5b50565b614c218161497f565b8114614c2c57600080fd5b50565b614c38816149cd565b8114614c4357600080fd5b5056fea2646970667358221220c2261d063e94db97c68c1d5d4d9076c5a04251664fcebf9898ccbf584ccb384e64736f6c63430008000033

Deployed Bytecode Sourcemap

55197:5836:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59222:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44381:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55676:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45906:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45469:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58490:139;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41216:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55779:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46756:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58324:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60712:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;41847:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58639:143;;;;;;;;;;;;;:::i;:::-;;46961:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58790:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41379:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57926:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57471:214;;;;;;;;;;;;;:::i;:::-;;44204:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43081:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57762:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19239:103;;;;;;;;;;;;;:::i;:::-;;18588:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44536:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55737:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57084:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46174:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47181:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55584:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60339:307;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55636:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51596:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58150:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59651:617;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19497:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59222:292;59370:4;59427:26;59412:41;;;:11;:41;;;;:94;;;;59470:36;59494:11;59470:23;:36::i;:::-;59412:94;59392:114;;59222:292;;;:::o;44381:94::-;44435:13;44464:5;44457:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44381:94;:::o;55676:54::-;55720:10;55676:54;:::o;45906:204::-;45974:7;45998:16;46006:7;45998;:16::i;:::-;45990:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;46080:15;:24;46096:7;46080:24;;;;;;;;;;;;;;;;;;;;;46073:31;;45906:204;;;:::o;45469:379::-;45538:13;45554:24;45570:7;45554:15;:24::i;:::-;45538:40;;45599:5;45593:11;;:2;:11;;;;45585:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;45684:5;45668:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;45693:37;45710:5;45717:12;:10;:12::i;:::-;45693:16;:37::i;:::-;45668:62;45652:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;45814:28;45823:2;45827:7;45836:5;45814:8;:28::i;:::-;45469:379;;;:::o;58490:139::-;18819:12;:10;:12::i;:::-;18808:23;;:7;:5;:7::i;:::-;:23;;;18800:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58608:13:::1;58591:14;:30;;;;58490:139:::0;:::o;41216:94::-;41269:7;41292:12;;41285:19;;41216:94;:::o;55779:37::-;;;;;;;;;;;;;:::o;46756:142::-;46864:28;46874:4;46880:2;46884:7;46864:9;:28::i;:::-;46756:142;;;:::o;58324:158::-;18819:12;:10;:12::i;:::-;18808:23;;:7;:5;:7::i;:::-;:23;;;18800:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58455:19:::1;58434:18;;:40;;;;;;;;;;;;;;;;;;58324:158:::0;:::o;60712:318::-;60837:16;60855:21;60902:16;60910:7;60902;:16::i;:::-;60894:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;60969:4;60976:45;60989:26;61002:9;61013:1;60989:12;:26::i;:::-;61017:3;60976:12;:45::i;:::-;60953:69;;;;60712:318;;;;;:::o;41847:744::-;41956:7;41991:16;42001:5;41991:9;:16::i;:::-;41983:5;:24;41975:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;42053:22;42078:13;:11;:13::i;:::-;42053:38;;42098:19;42128:25;42178:9;42173:350;42197:14;42193:1;:18;42173:350;;;42227:31;42261:11;:14;42273:1;42261:14;;;;;;;;;;;42227:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42314:1;42288:28;;:9;:14;;;:28;;;42284:89;;42349:9;:14;;;42329:34;;42284:89;42406:5;42385:26;;:17;:26;;;42381:135;;;42443:5;42428:11;:20;42424:59;;;42470:1;42463:8;;;;;;;;;42424:59;42493:13;;;;;:::i;:::-;;;;42381:135;42173:350;42213:3;;;;;:::i;:::-;;;;42173:350;;;;42529:56;;;;;;;;;;:::i;:::-;;;;;;;;41847:744;;;;;:::o;58639:143::-;18819:12;:10;:12::i;:::-;18808:23;;:7;:5;:7::i;:::-;:23;;;18800:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58687:15:::1;58705:21;58687:39;;58745:10;58737:28;;:37;58766:7;58737:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;18879:1;58639:143::o:0;46961:157::-;47073:39;47090:4;47096:2;47100:7;47073:39;;;;;;;;;;;;:16;:39::i;:::-;46961:157;;;:::o;58790:168::-;18819:12;:10;:12::i;:::-;18808:23;;:7;:5;:7::i;:::-;:23;;;18800:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58856:15:::1;58874:5;:15;;;58898:4;58874:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58856:48;;58915:5;:14;;;58930:10;58942:7;58915:35;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18879:1;58790:168:::0;:::o;41379:177::-;41446:7;41478:13;:11;:13::i;:::-;41470:5;:21;41462:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;41545:5;41538:12;;41379:177;;;:::o;57926:100::-;18819:12;:10;:12::i;:::-;18808:23;;:7;:5;:7::i;:::-;:23;;;18800:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58010:8:::1;58000:7;:18;;;;;;;;;;;;:::i;:::-;;57926:100:::0;:::o;57471:214::-;10517:1;11115:7;;:19;;11107:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10517:1;11248:7;:18;;;;55946::::1;;;;;;;;;;;55938:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;57578:1:::2;56365:9;;56330:14;56314:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:60;;56292:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;57604:1:::3;55627:2;56104:14;:34;;56082:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;56563:14:::4;;56529:13;:11;:13::i;:::-;:48;;56507:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;57653:24:::5;57663:10;57675:1;57653:9;:24::i;:::-;56449:1:::3;56003::::2;10473::::0;11427:7;:22;;;;57471:214::o;44204:118::-;44268:7;44291:20;44303:7;44291:11;:20::i;:::-;:25;;;44284:32;;44204:118;;;:::o;43081:211::-;43145:7;43186:1;43169:19;;:5;:19;;;;43161:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;43258:12;:19;43271:5;43258:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;43250:36;;43243:43;;43081:211;;;:::o;57762:93::-;57807:13;57840:7;57833:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57762:93;:::o;19239:103::-;18819:12;:10;:12::i;:::-;18808:23;;:7;:5;:7::i;:::-;:23;;;18800:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19304:30:::1;19331:1;19304:18;:30::i;:::-;19239:103::o:0;18588:87::-;18634:7;18661:6;;;;;;;;;;;18654:13;;18588:87;:::o;44536:98::-;44592:13;44621:7;44614:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44536:98;:::o;55737:35::-;;;;:::o;57084:321::-;10517:1;11115:7;;:19;;11107:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10517:1;11248:7;:18;;;;55720:10:::1;57224:14;56758;;56744:13;:11;:13::i;:::-;:28;56741:166;;;56834:9;56815:14;56807:5;:22;;;;:::i;:::-;56806:37;56784:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;56741:166;55946:18:::2;;;;;;;;;;;55938:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;57287:14:::3;56365:9;;56330:14;56314:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:60;;56292:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;57326:14:::4;55627:2;56104:14;:34;;56082:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;57360:37:::5;57370:10;57382:14;57360:9;:37::i;:::-;56449:1:::4;56003::::3;11279::::1;;10473::::0;11427:7;:22;;;;57084:321;:::o;46174:274::-;46277:12;:10;:12::i;:::-;46265:24;;:8;:24;;;;46257:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;46374:8;46329:18;:32;46348:12;:10;:12::i;:::-;46329:32;;;;;;;;;;;;;;;:42;46362:8;46329:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;46423:8;46394:48;;46409:12;:10;:12::i;:::-;46394:48;;;46433:8;46394:48;;;;;;:::i;:::-;;;;;;;;46174:274;;:::o;47181:311::-;47318:28;47328:4;47334:2;47338:7;47318:9;:28::i;:::-;47369:48;47392:4;47398:2;47402:7;47411:5;47369:22;:48::i;:::-;47353:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;47181:311;;;;:::o;55584:45::-;55627:2;55584:45;:::o;60339:307::-;60457:13;60496:16;60504:7;60496;:16::i;:::-;60488:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;60591:7;60605:22;60614:1;60606:7;:9;;;;:::i;:::-;60605:20;:22::i;:::-;60574:63;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60547:91;;60339:307;;;:::o;55636:31::-;;;;:::o;51596:43::-;;;;:::o;58150:166::-;18819:12;:10;:12::i;:::-;18808:23;;:7;:5;:7::i;:::-;:23;;;18800:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58287:21:::1;58264:20;;:44;;;;;;;;;;;;;;;;;;58150:166:::0;:::o;59651:617::-;59776:4;59941:27;59999;;;;;;;;;;;59941:96;;60066:20;;;;;;;;;;;:86;;;;;60144:8;60103:49;;60111:13;:21;;;60133:5;60111:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;60103:49;;;60066:86;60048:154;;;60186:4;60179:11;;;;;60048:154;60221:39;60244:5;60251:8;60221:22;:39::i;:::-;60214:46;;;59651:617;;;;;:::o;19497:201::-;18819:12;:10;:12::i;:::-;18808:23;;:7;:5;:7::i;:::-;:23;;;18800:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19606:1:::1;19586:22;;:8;:22;;;;19578:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;19662:28;19681:8;19662:18;:28::i;:::-;19497:201:::0;:::o;42655:370::-;42782:4;42827:25;42812:40;;;:11;:40;;;;:99;;;;42878:33;42863:48;;;:11;:48;;;;42812:99;:160;;;;42937:35;42922:50;;;:11;:50;;;;42812:160;:207;;;;42983:36;43007:11;42983:23;:36::i;:::-;42812:207;42798:221;;42655:370;;;:::o;47731:105::-;47788:4;47818:12;;47808:7;:22;47801:29;;47731:105;;;:::o;17312:98::-;17365:7;17392:10;17385:17;;17312:98;:::o;51418:172::-;51542:2;51515:15;:24;51531:7;51515:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;51576:7;51572:2;51556:28;;51565:5;51556:28;;;;;;;;;;;;51418:172;;;:::o;49783:1529::-;49880:35;49918:20;49930:7;49918:11;:20::i;:::-;49880:58;;49947:22;49989:13;:18;;;49973:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;50042:12;:10;:12::i;:::-;50018:36;;:20;50030:7;50018:11;:20::i;:::-;:36;;;49973:81;:142;;;;50065:50;50082:13;:18;;;50102:12;:10;:12::i;:::-;50065:16;:50::i;:::-;49973:142;49947:169;;50141:17;50125:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;50273:4;50251:26;;:13;:18;;;:26;;;50235:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;50362:1;50348:16;;:2;:16;;;;50340:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;50415:43;50437:4;50443:2;50447:7;50456:1;50415:21;:43::i;:::-;50515:49;50532:1;50536:7;50545:13;:18;;;50515:8;:49::i;:::-;50603:1;50573:12;:18;50586:4;50573:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50639:1;50611:12;:16;50624:2;50611:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50670:43;;;;;;;;50685:2;50670:43;;;;;;50696:15;50670:43;;;;;50647:11;:20;50659:7;50647:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50941:19;50973:1;50963:7;:11;;;;:::i;:::-;50941:33;;51026:1;50985:43;;:11;:24;50997:11;50985:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;50981:236;;;51043:20;51051:11;51043:7;:20::i;:::-;51039:171;;;51103:97;;;;;;;;51130:13;:18;;;51103:97;;;;;;51161:13;:28;;;51103:97;;;;;51076:11;:24;51088:11;51076:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51039:171;50981:236;51249:7;51245:2;51230:27;;51239:4;51230:27;;;;;;;;;;;;51264:42;51285:4;51291:2;51295:7;51304:1;51264:20;:42::i;:::-;49783:1529;;;;;;:::o;3813:98::-;3871:7;3902:1;3898;:5;;;;:::i;:::-;3891:12;;3813:98;;;;:::o;4212:::-;4270:7;4301:1;4297;:5;;;;:::i;:::-;4290:12;;4212:98;;;;:::o;47842:::-;47907:27;47917:2;47921:8;47907:27;;;;;;;;;;;;:9;:27::i;:::-;47842:98;;:::o;43544:606::-;43620:21;;:::i;:::-;43661:16;43669:7;43661;:16::i;:::-;43653:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;43733:26;43781:12;43770:7;:23;43766:93;;43850:1;43835:12;43825:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;43804:47;;43766:93;43872:12;43887:7;43872:22;;43867:212;43904:18;43896:4;:26;43867:212;;43941:31;43975:11;:17;43987:4;43975:17;;;;;;;;;;;43941:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44031:1;44005:28;;:9;:14;;;:28;;;44001:71;;44053:9;44046:16;;;;;;;44001:71;43867:212;43924:6;;;;;:::i;:::-;;;;43867:212;;;;44087:57;;;;;;;;;;:::i;:::-;;;;;;;;43544:606;;;;:::o;19858:191::-;19932:16;19951:6;;;;;;;;;;;19932:25;;19977:8;19968:6;;:17;;;;;;;;;;;;;;;;;;20032:8;20001:40;;20022:8;20001:40;;;;;;;;;;;;19858:191;;:::o;53133:690::-;53270:4;53287:15;:2;:13;;;:15::i;:::-;53283:535;;;53342:2;53326:36;;;53363:12;:10;:12::i;:::-;53377:4;53383:7;53392:5;53326:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53313:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53574:1;53557:6;:13;:18;53553:215;;;53590:61;;;;;;;;;;:::i;:::-;;;;;;;;53553:215;53736:6;53730:13;53721:6;53717:2;53713:15;53706:38;53313:464;53458:45;;;53448:55;;;:6;:55;;;;53441:62;;;;;53283:535;53806:4;53799:11;;53133:690;;;;;;;:::o;14874:723::-;14930:13;15160:1;15151:5;:10;15147:53;;;15178:10;;;;;;;;;;;;;;;;;;;;;15147:53;15210:12;15225:5;15210:20;;15241:14;15266:78;15281:1;15273:4;:9;15266:78;;15299:8;;;;;:::i;:::-;;;;15330:2;15322:10;;;;;:::i;:::-;;;15266:78;;;15354:19;15386:6;15376:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15354:39;;15404:154;15420:1;15411:5;:10;15404:154;;15448:1;15438:11;;;;;:::i;:::-;;;15515:2;15507:5;:10;;;;:::i;:::-;15494:2;:24;;;;:::i;:::-;15481:39;;15464:6;15471;15464:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;15544:2;15535:11;;;;;:::i;:::-;;;15404:154;;;15582:6;15568:21;;;;;14874:723;;;;:::o;46511:186::-;46633:4;46656:18;:25;46675:5;46656:25;;;;;;;;;;;;;;;:35;46682:8;46656:35;;;;;;;;;;;;;;;;;;;;;;;;;46649:42;;46511:186;;;;:::o;31988:157::-;32073:4;32112:25;32097:40;;;:11;:40;;;;32090:47;;31988:157;;;:::o;54285:141::-;;;;;:::o;54812:140::-;;;;;:::o;48279:1272::-;48384:20;48407:12;;48384:35;;48448:1;48434:16;;:2;:16;;;;48426:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48625:21;48633:12;48625:7;:21::i;:::-;48624:22;48616:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;48707:12;48695:8;:24;;48687:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;48767:61;48797:1;48801:2;48805:12;48819:8;48767:21;:61::i;:::-;48837:30;48870:12;:16;48883:2;48870:16;;;;;;;;;;;;;;;48837:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48912:119;;;;;;;;48962:8;48932:11;:19;;;:39;;;;:::i;:::-;48912:119;;;;;;49015:8;48980:11;:24;;;:44;;;;:::i;:::-;48912:119;;;;;48893:12;:16;48906:2;48893:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49066:43;;;;;;;;49081:2;49066:43;;;;;;49092:15;49066:43;;;;;49038:11;:25;49050:12;49038:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49118:20;49141:12;49118:35;;49167:9;49162:281;49186:8;49182:1;:12;49162:281;;;49240:12;49236:2;49215:38;;49232:1;49215:38;;;;;;;;;;;;49280:59;49311:1;49315:2;49319:12;49333:5;49280:22;:59::i;:::-;49262:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;49421:14;;;;;:::i;:::-;;;;49196:3;;;;;:::i;:::-;;;;49162:281;;;;49466:12;49451;:27;;;;49485:60;49514:1;49518:2;49522:12;49536:8;49485:20;:60::i;:::-;48279:1272;;;;;;:::o;20876:387::-;20936:4;21144:12;21211:7;21199:20;21191:28;;21254:1;21247:4;:8;21240:15;;;20876:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::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::-;;1074:6;1068:13;1059:22;;1090:30;1114:5;1090:30;:::i;:::-;1049:77;;;;:::o;1132:137::-;;1215:6;1202:20;1193:29;;1231:32;1257:5;1231:32;:::i;:::-;1183:86;;;;:::o;1275:141::-;;1362:6;1356:13;1347:22;;1378:32;1404:5;1378:32;:::i;:::-;1337:79;;;;:::o;1435:271::-;;1539:3;1532:4;1524:6;1520:17;1516:27;1506:2;;1557:1;1554;1547:12;1506:2;1597:6;1584:20;1622:78;1696:3;1688:6;1681:4;1673:6;1669:17;1622:78;:::i;:::-;1613:87;;1496:210;;;;;:::o;1712:167::-;;1810:6;1797:20;1788:29;;1826:47;1867:5;1826:47;:::i;:::-;1778:101;;;;:::o;1885:201::-;;2002:6;1996:13;1987:22;;2018:62;2074:5;2018:62;:::i;:::-;1977:109;;;;:::o;2106:273::-;;2211:3;2204:4;2196:6;2192:17;2188:27;2178:2;;2229:1;2226;2219:12;2178:2;2269:6;2256:20;2294:79;2369:3;2361:6;2354:4;2346:6;2342:17;2294:79;:::i;:::-;2285:88;;2168:211;;;;;:::o;2385:139::-;;2469:6;2456:20;2447:29;;2485:33;2512:5;2485:33;:::i;:::-;2437:87;;;;:::o;2530:143::-;;2618:6;2612:13;2603:22;;2634:33;2661:5;2634:33;:::i;:::-;2593:80;;;;:::o;2679:262::-;;2787:2;2775:9;2766:7;2762:23;2758:32;2755:2;;;2803:1;2800;2793:12;2755:2;2846:1;2871:53;2916:7;2907:6;2896:9;2892:22;2871:53;:::i;:::-;2861:63;;2817:117;2745:196;;;;:::o;2947:407::-;;;3072:2;3060:9;3051:7;3047:23;3043:32;3040:2;;;3088:1;3085;3078:12;3040:2;3131:1;3156:53;3201:7;3192:6;3181:9;3177:22;3156:53;:::i;:::-;3146:63;;3102:117;3258:2;3284:53;3329:7;3320:6;3309:9;3305:22;3284:53;:::i;:::-;3274:63;;3229:118;3030:324;;;;;:::o;3360:552::-;;;;3502:2;3490:9;3481:7;3477:23;3473:32;3470:2;;;3518:1;3515;3508:12;3470:2;3561:1;3586:53;3631:7;3622:6;3611:9;3607:22;3586:53;:::i;:::-;3576:63;;3532:117;3688:2;3714:53;3759:7;3750:6;3739:9;3735:22;3714:53;:::i;:::-;3704:63;;3659:118;3816:2;3842:53;3887:7;3878:6;3867:9;3863:22;3842:53;:::i;:::-;3832:63;;3787:118;3460:452;;;;;:::o;3918:809::-;;;;;4086:3;4074:9;4065:7;4061:23;4057:33;4054:2;;;4103:1;4100;4093:12;4054:2;4146:1;4171:53;4216:7;4207:6;4196:9;4192:22;4171:53;:::i;:::-;4161:63;;4117:117;4273:2;4299:53;4344:7;4335:6;4324:9;4320:22;4299:53;:::i;:::-;4289:63;;4244:118;4401:2;4427:53;4472:7;4463:6;4452:9;4448:22;4427:53;:::i;:::-;4417:63;;4372:118;4557:2;4546:9;4542:18;4529:32;4588:18;4580:6;4577:30;4574:2;;;4620:1;4617;4610:12;4574:2;4648:62;4702:7;4693:6;4682:9;4678:22;4648:62;:::i;:::-;4638:72;;4500:220;4044:683;;;;;;;:::o;4733:401::-;;;4855:2;4843:9;4834:7;4830:23;4826:32;4823:2;;;4871:1;4868;4861:12;4823:2;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4813:321;;;;;:::o;5140:407::-;;;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5281:1;5278;5271:12;5233:2;5324:1;5349:53;5394:7;5385:6;5374:9;5370:22;5349:53;:::i;:::-;5339:63;;5295:117;5451:2;5477:53;5522:7;5513:6;5502:9;5498:22;5477:53;:::i;:::-;5467:63;;5422:118;5223:324;;;;;:::o;5553:256::-;;5658:2;5646:9;5637:7;5633:23;5629:32;5626:2;;;5674:1;5671;5664:12;5626:2;5717:1;5742:50;5784:7;5775:6;5764:9;5760:22;5742:50;:::i;:::-;5732:60;;5688:114;5616:193;;;;:::o;5815:278::-;;5931:2;5919:9;5910:7;5906:23;5902:32;5899:2;;;5947:1;5944;5937:12;5899:2;5990:1;6015:61;6068:7;6059:6;6048:9;6044:22;6015:61;:::i;:::-;6005:71;;5961:125;5889:204;;;;:::o;6099:260::-;;6206:2;6194:9;6185:7;6181:23;6177:32;6174:2;;;6222:1;6219;6212:12;6174:2;6265:1;6290:52;6334:7;6325:6;6314:9;6310:22;6290:52;:::i;:::-;6280:62;;6236:116;6164:195;;;;:::o;6365:282::-;;6483:2;6471:9;6462:7;6458:23;6454:32;6451:2;;;6499:1;6496;6489:12;6451:2;6542:1;6567:63;6622:7;6613:6;6602:9;6598:22;6567:63;:::i;:::-;6557:73;;6513:127;6441:206;;;;:::o;6653:290::-;;6775:2;6763:9;6754:7;6750:23;6746:32;6743:2;;;6791:1;6788;6781:12;6743:2;6834:1;6859:67;6918:7;6909:6;6898:9;6894:22;6859:67;:::i;:::-;6849:77;;6805:131;6733:210;;;;:::o;6949:342::-;;7097:2;7085:9;7076:7;7072:23;7068:32;7065:2;;;7113:1;7110;7103:12;7065:2;7156:1;7181:93;7266:7;7257:6;7246:9;7242:22;7181:93;:::i;:::-;7171:103;;7127:157;7055:236;;;;:::o;7297:375::-;;7415:2;7403:9;7394:7;7390:23;7386:32;7383:2;;;7431:1;7428;7421:12;7383:2;7502:1;7491:9;7487:17;7474:31;7532:18;7524:6;7521:30;7518:2;;;7564:1;7561;7554:12;7518:2;7592:63;7647:7;7638:6;7627:9;7623:22;7592:63;:::i;:::-;7582:73;;7445:220;7373:299;;;;:::o;7678:262::-;;7786:2;7774:9;7765:7;7761:23;7757:32;7754:2;;;7802:1;7799;7792:12;7754:2;7845:1;7870:53;7915:7;7906:6;7895:9;7891:22;7870:53;:::i;:::-;7860:63;;7816:117;7744:196;;;;:::o;7946:284::-;;8065:2;8053:9;8044:7;8040:23;8036:32;8033:2;;;8081:1;8078;8071:12;8033:2;8124:1;8149:64;8205:7;8196:6;8185:9;8181:22;8149:64;:::i;:::-;8139:74;;8095:128;8023:207;;;;:::o;8236:407::-;;;8361:2;8349:9;8340:7;8336:23;8332:32;8329:2;;;8377:1;8374;8367:12;8329:2;8420:1;8445:53;8490:7;8481:6;8470:9;8466:22;8445:53;:::i;:::-;8435:63;;8391:117;8547:2;8573:53;8618:7;8609:6;8598:9;8594:22;8573:53;:::i;:::-;8563:63;;8518:118;8319:324;;;;;:::o;8649:118::-;8736:24;8754:5;8736:24;:::i;:::-;8731:3;8724:37;8714:53;;:::o;8773:109::-;8854:21;8869:5;8854:21;:::i;:::-;8849:3;8842:34;8832:50;;:::o;8888:360::-;;9002:38;9034:5;9002:38;:::i;:::-;9056:70;9119:6;9114:3;9056:70;:::i;:::-;9049:77;;9135:52;9180:6;9175:3;9168:4;9161:5;9157:16;9135:52;:::i;:::-;9212:29;9234:6;9212:29;:::i;:::-;9207:3;9203:39;9196:46;;8978:270;;;;;:::o;9254:364::-;;9370:39;9403:5;9370:39;:::i;:::-;9425:71;9489:6;9484:3;9425:71;:::i;:::-;9418:78;;9505:52;9550:6;9545:3;9538:4;9531:5;9527:16;9505:52;:::i;:::-;9582:29;9604:6;9582:29;:::i;:::-;9577:3;9573:39;9566:46;;9346:272;;;;;:::o;9624:377::-;;9758:39;9791:5;9758:39;:::i;:::-;9813:89;9895:6;9890:3;9813:89;:::i;:::-;9806:96;;9911:52;9956:6;9951:3;9944:4;9937:5;9933:16;9911:52;:::i;:::-;9988:6;9983:3;9979:16;9972:23;;9734:267;;;;;:::o;10031:845::-;;10171:5;10165:12;10200:36;10226:9;10200:36;:::i;:::-;10252:89;10334:6;10329:3;10252:89;:::i;:::-;10245:96;;10372:1;10361:9;10357:17;10388:1;10383:137;;;;10534:1;10529:341;;;;10350:520;;10383:137;10467:4;10463:9;10452;10448:25;10443:3;10436:38;10503:6;10498:3;10494:16;10487:23;;10383:137;;10529:341;10596:38;10628:5;10596:38;:::i;:::-;10656:1;10670:154;10684:6;10681:1;10678:13;10670:154;;;10758:7;10752:14;10748:1;10743:3;10739:11;10732:35;10808:1;10799:7;10795:15;10784:26;;10706:4;10703:1;10699:12;10694:17;;10670:154;;;10853:6;10848:3;10844:16;10837:23;;10536:334;;10350:520;;10138:738;;;;;;:::o;10882:366::-;;11045:67;11109:2;11104:3;11045:67;:::i;:::-;11038:74;;11142:34;11138:1;11133:3;11129:11;11122:55;11208:4;11203:2;11198:3;11194:12;11187:26;11239:2;11234:3;11230:12;11223:19;;11028:220;;;:::o;11254:370::-;;11417:67;11481:2;11476:3;11417:67;:::i;:::-;11410:74;;11514:34;11510:1;11505:3;11501:11;11494:55;11580:8;11575:2;11570:3;11566:12;11559:30;11615:2;11610:3;11606:12;11599:19;;11400:224;;;:::o;11630:374::-;;11793:67;11857:2;11852:3;11793:67;:::i;:::-;11786:74;;11890:34;11886:1;11881:3;11877:11;11870:55;11956:12;11951:2;11946:3;11942:12;11935:34;11995:2;11990:3;11986:12;11979:19;;11776:228;;;:::o;12010:367::-;;12173:67;12237:2;12232:3;12173:67;:::i;:::-;12166:74;;12270:34;12266:1;12261:3;12257:11;12250:55;12336:5;12331:2;12326:3;12322:12;12315:27;12368:2;12363:3;12359:12;12352:19;;12156:221;;;:::o;12383:366::-;;12546:67;12610:2;12605:3;12546:67;:::i;:::-;12539:74;;12643:34;12639:1;12634:3;12630:11;12623:55;12709:4;12704:2;12699:3;12695:12;12688:26;12740:2;12735:3;12731:12;12724:19;;12529:220;;;:::o;12755:369::-;;12918:67;12982:2;12977:3;12918:67;:::i;:::-;12911:74;;13015:34;13011:1;13006:3;13002:11;12995:55;13081:7;13076:2;13071:3;13067:12;13060:29;13115:2;13110:3;13106:12;13099:19;;12901:223;;;:::o;13130:366::-;;13293:67;13357:2;13352:3;13293:67;:::i;:::-;13286:74;;13390:34;13386:1;13381:3;13377:11;13370:55;13456:4;13451:2;13446:3;13442:12;13435:26;13487:2;13482:3;13478:12;13471:19;;13276:220;;;:::o;13502:315::-;;13665:67;13729:2;13724:3;13665:67;:::i;:::-;13658:74;;13762:19;13758:1;13753:3;13749:11;13742:40;13808:2;13803:3;13799:12;13792:19;;13648:169;;;:::o;13823:389::-;;13986:67;14050:2;14045:3;13986:67;:::i;:::-;13979:74;;14083:34;14079:1;14074:3;14070:11;14063:55;14149:27;14144:2;14139:3;14135:12;14128:49;14203:2;14198:3;14194:12;14187:19;;13969:243;;;:::o;14218:375::-;;14381:67;14445:2;14440:3;14381:67;:::i;:::-;14374:74;;14478:34;14474:1;14469:3;14465:11;14458:55;14544:13;14539:2;14534:3;14530:12;14523:35;14584:2;14579:3;14575:12;14568:19;;14364:229;;;:::o;14599:370::-;;14762:67;14826:2;14821:3;14762:67;:::i;:::-;14755:74;;14859:34;14855:1;14850:3;14846:11;14839:55;14925:8;14920:2;14915:3;14911:12;14904:30;14960:2;14955:3;14951:12;14944:19;;14745:224;;;:::o;14975:337::-;;15156:84;15238:1;15233:3;15156:84;:::i;:::-;15149:91;;15270:7;15266:1;15261:3;15257:11;15250:28;15304:1;15299:3;15295:11;15288:18;;15139:173;;;:::o;15318:330::-;;15481:67;15545:2;15540:3;15481:67;:::i;:::-;15474:74;;15578:34;15574:1;15569:3;15565:11;15558:55;15639:2;15634:3;15630:12;15623:19;;15464:184;;;:::o;15654:324::-;;15817:67;15881:2;15876:3;15817:67;:::i;:::-;15810:74;;15914:28;15910:1;15905:3;15901:11;15894:49;15969:2;15964:3;15960:12;15953:19;;15800:178;;;:::o;15984:382::-;;16147:67;16211:2;16206:3;16147:67;:::i;:::-;16140:74;;16244:34;16240:1;16235:3;16231:11;16224:55;16310:20;16305:2;16300:3;16296:12;16289:42;16357:2;16352:3;16348:12;16341:19;;16130:236;;;:::o;16372:366::-;;16535:67;16599:2;16594:3;16535:67;:::i;:::-;16528:74;;16632:34;16628:1;16623:3;16619:11;16612:55;16698:4;16693:2;16688:3;16684:12;16677:26;16729:2;16724:3;16720:12;16713:19;;16518:220;;;:::o;16744:383::-;;16907:67;16971:2;16966:3;16907:67;:::i;:::-;16900:74;;17004:34;17000:1;16995:3;16991:11;16984:55;17070:21;17065:2;17060:3;17056:12;17049:43;17118:2;17113:3;17109:12;17102:19;;16890:237;;;:::o;17133:327::-;;17296:67;17360:2;17355:3;17296:67;:::i;:::-;17289:74;;17393:31;17389:1;17384:3;17380:11;17373:52;17451:2;17446:3;17442:12;17435:19;;17279:181;;;:::o;17466:365::-;;17629:67;17693:2;17688:3;17629:67;:::i;:::-;17622:74;;17726:34;17722:1;17717:3;17713:11;17706:55;17792:3;17787:2;17782:3;17778:12;17771:25;17822:2;17817:3;17813:12;17806:19;;17612:219;;;:::o;17837:326::-;;18000:67;18064:2;18059:3;18000:67;:::i;:::-;17993:74;;18097:30;18093:1;18088:3;18084:11;18077:51;18154:2;18149:3;18145:12;18138:19;;17983:180;;;:::o;18169:322::-;;18332:67;18396:2;18391:3;18332:67;:::i;:::-;18325:74;;18429:26;18425:1;18420:3;18416:11;18409:47;18482:2;18477:3;18473:12;18466:19;;18315:176;;;:::o;18497:378::-;;18660:67;18724:2;18719:3;18660:67;:::i;:::-;18653:74;;18757:34;18753:1;18748:3;18744:11;18737:55;18823:16;18818:2;18813:3;18809:12;18802:38;18866:2;18861:3;18857:12;18850:19;;18643:232;;;:::o;18881:329::-;;19044:67;19108:2;19103:3;19044:67;:::i;:::-;19037:74;;19141:33;19137:1;19132:3;19128:11;19121:54;19201:2;19196:3;19192:12;19185:19;;19027:183;;;:::o;19216:379::-;;19379:67;19443:2;19438:3;19379:67;:::i;:::-;19372:74;;19476:34;19472:1;19467:3;19463:11;19456:55;19542:17;19537:2;19532:3;19528:12;19521:39;19586:2;19581:3;19577:12;19570:19;;19362:233;;;:::o;19601:321::-;;19764:67;19828:2;19823:3;19764:67;:::i;:::-;19757:74;;19861:25;19857:1;19852:3;19848:11;19841:46;19913:2;19908:3;19904:12;19897:19;;19747:175;;;:::o;19928:377::-;;20091:67;20155:2;20150:3;20091:67;:::i;:::-;20084:74;;20188:34;20184:1;20179:3;20175:11;20168:55;20254:15;20249:2;20244:3;20240:12;20233:37;20296:2;20291:3;20287:12;20280:19;;20074:231;;;:::o;20311:366::-;;20474:67;20538:2;20533:3;20474:67;:::i;:::-;20467:74;;20571:34;20567:1;20562:3;20558:11;20551:55;20637:4;20632:2;20627:3;20623:12;20616:26;20668:2;20663:3;20659:12;20652:19;;20457:220;;;:::o;20683:333::-;;20864:84;20946:1;20941:3;20864:84;:::i;:::-;20857:91;;20978:3;20974:1;20969:3;20965:11;20958:24;21008:1;21003:3;20999:11;20992:18;;20847:169;;;:::o;21022:118::-;21109:24;21127:5;21109:24;:::i;:::-;21104:3;21097:37;21087:53;;:::o;21146:961::-;;21547:92;21635:3;21626:6;21547:92;:::i;:::-;21540:99;;21656:148;21800:3;21656:148;:::i;:::-;21649:155;;21821:95;21912:3;21903:6;21821:95;:::i;:::-;21814:102;;21933:148;22077:3;21933:148;:::i;:::-;21926:155;;22098:3;22091:10;;21529:578;;;;;:::o;22113:222::-;;22244:2;22233:9;22229:18;22221:26;;22257:71;22325:1;22314:9;22310:17;22301:6;22257:71;:::i;:::-;22211:124;;;;:::o;22341:640::-;;22574:3;22563:9;22559:19;22551:27;;22588:71;22656:1;22645:9;22641:17;22632:6;22588:71;:::i;:::-;22669:72;22737:2;22726:9;22722:18;22713:6;22669:72;:::i;:::-;22751;22819:2;22808:9;22804:18;22795:6;22751:72;:::i;:::-;22870:9;22864:4;22860:20;22855:2;22844:9;22840:18;22833:48;22898:76;22969:4;22960:6;22898:76;:::i;:::-;22890:84;;22541:440;;;;;;;:::o;22987:332::-;;23146:2;23135:9;23131:18;23123:26;;23159:71;23227:1;23216:9;23212:17;23203:6;23159:71;:::i;:::-;23240:72;23308:2;23297:9;23293:18;23284:6;23240:72;:::i;:::-;23113:206;;;;;:::o;23325:210::-;;23450:2;23439:9;23435:18;23427:26;;23463:65;23525:1;23514:9;23510:17;23501:6;23463:65;:::i;:::-;23417:118;;;;:::o;23541:313::-;;23692:2;23681:9;23677:18;23669:26;;23741:9;23735:4;23731:20;23727:1;23716:9;23712:17;23705:47;23769:78;23842:4;23833:6;23769:78;:::i;:::-;23761:86;;23659:195;;;;:::o;23860:419::-;;24064:2;24053:9;24049:18;24041:26;;24113:9;24107:4;24103:20;24099:1;24088:9;24084:17;24077:47;24141:131;24267:4;24141:131;:::i;:::-;24133:139;;24031:248;;;:::o;24285:419::-;;24489:2;24478:9;24474:18;24466:26;;24538:9;24532:4;24528:20;24524:1;24513:9;24509:17;24502:47;24566:131;24692:4;24566:131;:::i;:::-;24558:139;;24456:248;;;:::o;24710:419::-;;24914:2;24903:9;24899:18;24891:26;;24963:9;24957:4;24953:20;24949:1;24938:9;24934:17;24927:47;24991:131;25117:4;24991:131;:::i;:::-;24983:139;;24881:248;;;:::o;25135:419::-;;25339:2;25328:9;25324:18;25316:26;;25388:9;25382:4;25378:20;25374:1;25363:9;25359:17;25352:47;25416:131;25542:4;25416:131;:::i;:::-;25408:139;;25306:248;;;:::o;25560:419::-;;25764:2;25753:9;25749:18;25741:26;;25813:9;25807:4;25803:20;25799:1;25788:9;25784:17;25777:47;25841:131;25967:4;25841:131;:::i;:::-;25833:139;;25731:248;;;:::o;25985:419::-;;26189:2;26178:9;26174:18;26166:26;;26238:9;26232:4;26228:20;26224:1;26213:9;26209:17;26202:47;26266:131;26392:4;26266:131;:::i;:::-;26258:139;;26156:248;;;:::o;26410:419::-;;26614:2;26603:9;26599:18;26591:26;;26663:9;26657:4;26653:20;26649:1;26638:9;26634:17;26627:47;26691:131;26817:4;26691:131;:::i;:::-;26683:139;;26581:248;;;:::o;26835:419::-;;27039:2;27028:9;27024:18;27016:26;;27088:9;27082:4;27078:20;27074:1;27063:9;27059:17;27052:47;27116:131;27242:4;27116:131;:::i;:::-;27108:139;;27006:248;;;:::o;27260:419::-;;27464:2;27453:9;27449:18;27441:26;;27513:9;27507:4;27503:20;27499:1;27488:9;27484:17;27477:47;27541:131;27667:4;27541:131;:::i;:::-;27533:139;;27431:248;;;:::o;27685:419::-;;27889:2;27878:9;27874:18;27866:26;;27938:9;27932:4;27928:20;27924:1;27913:9;27909:17;27902:47;27966:131;28092:4;27966:131;:::i;:::-;27958:139;;27856:248;;;:::o;28110:419::-;;28314:2;28303:9;28299:18;28291:26;;28363:9;28357:4;28353:20;28349:1;28338:9;28334:17;28327:47;28391:131;28517:4;28391:131;:::i;:::-;28383:139;;28281:248;;;:::o;28535:419::-;;28739:2;28728:9;28724:18;28716:26;;28788:9;28782:4;28778:20;28774:1;28763:9;28759:17;28752:47;28816:131;28942:4;28816:131;:::i;:::-;28808:139;;28706:248;;;:::o;28960:419::-;;29164:2;29153:9;29149:18;29141:26;;29213:9;29207:4;29203:20;29199:1;29188:9;29184:17;29177:47;29241:131;29367:4;29241:131;:::i;:::-;29233:139;;29131:248;;;:::o;29385:419::-;;29589:2;29578:9;29574:18;29566:26;;29638:9;29632:4;29628:20;29624:1;29613:9;29609:17;29602:47;29666:131;29792:4;29666:131;:::i;:::-;29658:139;;29556:248;;;:::o;29810:419::-;;30014:2;30003:9;29999:18;29991:26;;30063:9;30057:4;30053:20;30049:1;30038:9;30034:17;30027:47;30091:131;30217:4;30091:131;:::i;:::-;30083:139;;29981:248;;;:::o;30235:419::-;;30439:2;30428:9;30424:18;30416:26;;30488:9;30482:4;30478:20;30474:1;30463:9;30459:17;30452:47;30516:131;30642:4;30516:131;:::i;:::-;30508:139;;30406:248;;;:::o;30660:419::-;;30864:2;30853:9;30849:18;30841:26;;30913:9;30907:4;30903:20;30899:1;30888:9;30884:17;30877:47;30941:131;31067:4;30941:131;:::i;:::-;30933:139;;30831:248;;;:::o;31085:419::-;;31289:2;31278:9;31274:18;31266:26;;31338:9;31332:4;31328:20;31324:1;31313:9;31309:17;31302:47;31366:131;31492:4;31366:131;:::i;:::-;31358:139;;31256:248;;;:::o;31510:419::-;;31714:2;31703:9;31699:18;31691:26;;31763:9;31757:4;31753:20;31749:1;31738:9;31734:17;31727:47;31791:131;31917:4;31791:131;:::i;:::-;31783:139;;31681:248;;;:::o;31935:419::-;;32139:2;32128:9;32124:18;32116:26;;32188:9;32182:4;32178:20;32174:1;32163:9;32159:17;32152:47;32216:131;32342:4;32216:131;:::i;:::-;32208:139;;32106:248;;;:::o;32360:419::-;;32564:2;32553:9;32549:18;32541:26;;32613:9;32607:4;32603:20;32599:1;32588:9;32584:17;32577:47;32641:131;32767:4;32641:131;:::i;:::-;32633:139;;32531:248;;;:::o;32785:419::-;;32989:2;32978:9;32974:18;32966:26;;33038:9;33032:4;33028:20;33024:1;33013:9;33009:17;33002:47;33066:131;33192:4;33066:131;:::i;:::-;33058:139;;32956:248;;;:::o;33210:419::-;;33414:2;33403:9;33399:18;33391:26;;33463:9;33457:4;33453:20;33449:1;33438:9;33434:17;33427:47;33491:131;33617:4;33491:131;:::i;:::-;33483:139;;33381:248;;;:::o;33635:419::-;;33839:2;33828:9;33824:18;33816:26;;33888:9;33882:4;33878:20;33874:1;33863:9;33859:17;33852:47;33916:131;34042:4;33916:131;:::i;:::-;33908:139;;33806:248;;;:::o;34060:419::-;;34264:2;34253:9;34249:18;34241:26;;34313:9;34307:4;34303:20;34299:1;34288:9;34284:17;34277:47;34341:131;34467:4;34341:131;:::i;:::-;34333:139;;34231:248;;;:::o;34485:419::-;;34689:2;34678:9;34674:18;34666:26;;34738:9;34732:4;34728:20;34724:1;34713:9;34709:17;34702:47;34766:131;34892:4;34766:131;:::i;:::-;34758:139;;34656:248;;;:::o;34910:222::-;;35041:2;35030:9;35026:18;35018:26;;35054:71;35122:1;35111:9;35107:17;35098:6;35054:71;:::i;:::-;35008:124;;;;:::o;35138:283::-;;35204:2;35198:9;35188:19;;35246:4;35238:6;35234:17;35353:6;35341:10;35338:22;35317:18;35305:10;35302:34;35299:62;35296:2;;;35364:18;;:::i;:::-;35296:2;35404:10;35400:2;35393:22;35178:243;;;;:::o;35427:331::-;;35578:18;35570:6;35567:30;35564:2;;;35600:18;;:::i;:::-;35564:2;35685:4;35681:9;35674:4;35666:6;35662:17;35658:33;35650:41;;35746:4;35740;35736:15;35728:23;;35493:265;;;:::o;35764:332::-;;35916:18;35908:6;35905:30;35902:2;;;35938:18;;:::i;:::-;35902:2;36023:4;36019:9;36012:4;36004:6;36000:17;35996:33;35988:41;;36084:4;36078;36074:15;36066:23;;35831:265;;;:::o;36102:141::-;;36174:3;36166:11;;36197:3;36194:1;36187:14;36231:4;36228:1;36218:18;36210:26;;36156:87;;;:::o;36249:98::-;;36334:5;36328:12;36318:22;;36307:40;;;:::o;36353:99::-;;36439:5;36433:12;36423:22;;36412:40;;;:::o;36458:168::-;;36575:6;36570:3;36563:19;36615:4;36610:3;36606:14;36591:29;;36553:73;;;;:::o;36632:169::-;;36750:6;36745:3;36738:19;36790:4;36785:3;36781:14;36766:29;;36728:73;;;;:::o;36807:148::-;;36946:3;36931:18;;36921:34;;;;:::o;36961:273::-;;37020:20;37038:1;37020:20;:::i;:::-;37015:25;;37054:20;37072:1;37054:20;:::i;:::-;37049:25;;37176:1;37140:34;37136:42;37133:1;37130:49;37127:2;;;37182:18;;:::i;:::-;37127:2;37226:1;37223;37219:9;37212:16;;37005:229;;;;:::o;37240:305::-;;37299:20;37317:1;37299:20;:::i;:::-;37294:25;;37333:20;37351:1;37333:20;:::i;:::-;37328:25;;37487:1;37419:66;37415:74;37412:1;37409:81;37406:2;;;37493:18;;:::i;:::-;37406:2;37537:1;37534;37530:9;37523:16;;37284:261;;;;:::o;37551:185::-;;37608:20;37626:1;37608:20;:::i;:::-;37603:25;;37642:20;37660:1;37642:20;:::i;:::-;37637:25;;37681:1;37671:2;;37686:18;;:::i;:::-;37671:2;37728:1;37725;37721:9;37716:14;;37593:143;;;;:::o;37742:348::-;;37805:20;37823:1;37805:20;:::i;:::-;37800:25;;37839:20;37857:1;37839:20;:::i;:::-;37834:25;;38027:1;37959:66;37955:74;37952:1;37949:81;37944:1;37937:9;37930:17;37926:105;37923:2;;;38034:18;;:::i;:::-;37923:2;38082:1;38079;38075:9;38064:20;;37790:300;;;;:::o;38096:191::-;;38156:20;38174:1;38156:20;:::i;:::-;38151:25;;38190:20;38208:1;38190:20;:::i;:::-;38185:25;;38229:1;38226;38223:8;38220:2;;;38234:18;;:::i;:::-;38220:2;38279:1;38276;38272:9;38264:17;;38141:146;;;;:::o;38293:191::-;;38353:20;38371:1;38353:20;:::i;:::-;38348:25;;38387:20;38405:1;38387:20;:::i;:::-;38382:25;;38426:1;38423;38420:8;38417:2;;;38431:18;;:::i;:::-;38417:2;38476:1;38473;38469:9;38461:17;;38338:146;;;;:::o;38490:96::-;;38556:24;38574:5;38556:24;:::i;:::-;38545:35;;38535:51;;;:::o;38592:90::-;;38669:5;38662:13;38655:21;38644:32;;38634:48;;;:::o;38688:149::-;;38764:66;38757:5;38753:78;38742:89;;38732:105;;;:::o;38843:110::-;;38923:24;38941:5;38923:24;:::i;:::-;38912:35;;38902:51;;;:::o;38959:125::-;;39054:24;39072:5;39054:24;:::i;:::-;39043:35;;39033:51;;;:::o;39090:118::-;;39167:34;39160:5;39156:46;39145:57;;39135:73;;;:::o;39214:126::-;;39291:42;39284:5;39280:54;39269:65;;39259:81;;;:::o;39346:77::-;;39412:5;39401:16;;39391:32;;;:::o;39429:154::-;39513:6;39508:3;39503;39490:30;39575:1;39566:6;39561:3;39557:16;39550:27;39480:103;;;:::o;39589:307::-;39657:1;39667:113;39681:6;39678:1;39675:13;39667:113;;;39766:1;39761:3;39757:11;39751:18;39747:1;39742:3;39738:11;39731:39;39703:2;39700:1;39696:10;39691:15;;39667:113;;;39798:6;39795:1;39792:13;39789:2;;;39878:1;39869:6;39864:3;39860:16;39853:27;39789:2;39638:258;;;;:::o;39902:171::-;;39964:24;39982:5;39964:24;:::i;:::-;39955:33;;40010:4;40003:5;40000:15;39997:2;;;40018:18;;:::i;:::-;39997:2;40065:1;40058:5;40054:13;40047:20;;39945:128;;;:::o;40079:320::-;;40160:1;40154:4;40150:12;40140:22;;40207:1;40201:4;40197:12;40228:18;40218:2;;40284:4;40276:6;40272:17;40262:27;;40218:2;40346;40338:6;40335:14;40315:18;40312:38;40309:2;;;40365:18;;:::i;:::-;40309:2;40130:269;;;;:::o;40405:233::-;;40467:24;40485:5;40467:24;:::i;:::-;40458:33;;40513:66;40506:5;40503:77;40500:2;;;40583:18;;:::i;:::-;40500:2;40630:1;40623:5;40619:13;40612:20;;40448:190;;;:::o;40644:176::-;;40693:20;40711:1;40693:20;:::i;:::-;40688:25;;40727:20;40745:1;40727:20;:::i;:::-;40722:25;;40766:1;40756:2;;40771:18;;:::i;:::-;40756:2;40812:1;40809;40805:9;40800:14;;40678:142;;;;:::o;40826:180::-;40874:77;40871:1;40864:88;40971:4;40968:1;40961:15;40995:4;40992:1;40985:15;41012:180;41060:77;41057:1;41050:88;41157:4;41154:1;41147:15;41181:4;41178:1;41171:15;41198:180;41246:77;41243:1;41236:88;41343:4;41340:1;41333:15;41367:4;41364:1;41357:15;41384:180;41432:77;41429:1;41422:88;41529:4;41526:1;41519:15;41553:4;41550:1;41543:15;41570:102;;41662:2;41658:7;41653:2;41646:5;41642:14;41638:28;41628:38;;41618:54;;;:::o;41678:122::-;41751:24;41769:5;41751:24;:::i;:::-;41744:5;41741:35;41731:2;;41790:1;41787;41780:12;41731:2;41721:79;:::o;41806:116::-;41876:21;41891:5;41876:21;:::i;:::-;41869:5;41866:32;41856:2;;41912:1;41909;41902:12;41856:2;41846:76;:::o;41928:120::-;42000:23;42017:5;42000:23;:::i;:::-;41993:5;41990:34;41980:2;;42038:1;42035;42028:12;41980:2;41970:78;:::o;42054:150::-;42141:38;42173:5;42141:38;:::i;:::-;42134:5;42131:49;42121:2;;42194:1;42191;42184:12;42121:2;42111:93;:::o;42210:180::-;42312:53;42359:5;42312:53;:::i;:::-;42305:5;42302:64;42292:2;;42380:1;42377;42370:12;42292:2;42282:108;:::o;42396:122::-;42469:24;42487:5;42469:24;:::i;:::-;42462:5;42459:35;42449:2;;42508:1;42505;42498:12;42449:2;42439:79;:::o

Swarm Source

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