ETH Price: $3,287.71 (+1.42%)
Gas: 2 Gwei

Token

CyberIT (CLONE)
 

Overview

Max Total Supply

1,500 CLONE

Holders

462

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 CLONE
0xaff95d5a8566b75914931ebad03d668108f929fa
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:
CyberIT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-14
*/

// File: contracts/re.sol

/**
 *Submitted for verification at Etherscan.io on 2022-07-09
*/

// File: contracts/re.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 = 0;

  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 {}
}

//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 CyberIT is ERC721A, IERC2981, Ownable, ReentrancyGuard {
    using Counters for Counters.Counter;
    using Strings for uint256;

    Counters.Counter private tokenCounter;

    string private baseURI = "ipfs://Qmax9UDsbAJW1QUmNUsKyP8uTBbu5aQPwgQSNSzxDBDfoY";
    address private openSeaProxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;
    bool private isOpenSeaProxyActive = true;

    uint256 public constant MAX_MINTS_PER_TX = 5;
    uint256 public maxSupply = 1500;

    uint256 public constant PUBLIC_SALE_PRICE = 0.003 ether;
    uint256 public NUM_FREE_MINTS = 600;
    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("CyberIT", "CLONE", 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
    //The normal mint function with a cost of 0 would work too

    // ============ 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 ownermint(uint256 _NUM)
      external
      onlyOwner
    {
      maxSupply = _NUM;
    }

    // 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 setnumfree(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
            baseURI;
    }

    /**
     * @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":[{"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":[{"internalType":"uint256","name":"_NUM","type":"uint256"}],"name":"ownermint","outputs":[],"stateMutability":"nonpayable","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":"setnumfree","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"}]

60c060405260008055600060075560405180606001604052806035815260200162004f6a60359139600b90805190602001906200003e92919062000323565b5073a5409ec958c83c3f309868babaca7c86dcb077c1600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600c60146101000a81548160ff0219169083151502179055506105dc600d55610258600e556001600f60006101000a81548160ff021916908315150217905550348015620000e357600080fd5b506040518060400160405280600781526020017f43796265724954000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f434c4f4e450000000000000000000000000000000000000000000000000000008152506064600d54600081116200019b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001929062000443565b60405180910390fd5b60008211620001e1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001d89062000421565b60405180910390fd5b8360019080519060200190620001f992919062000323565b5082600290805190602001906200021292919062000323565b508160a08181525050806080818152505050505050620002476200023b6200025560201b60201c565b6200025d60201b60201c565b600160098190555062000579565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003319062000476565b90600052602060002090601f016020900481019282620003555760008555620003a1565b82601f106200037057805160ff1916838001178555620003a1565b82800160010185558215620003a1579182015b82811115620003a057825182559160200191906001019062000383565b5b509050620003b09190620003b4565b5090565b5b80821115620003cf576000816000905550600101620003b5565b5090565b6000620003e260278362000465565b9150620003ef82620004db565b604082019050919050565b600062000409602e8362000465565b915062000416826200052a565b604082019050919050565b600060208201905081810360008301526200043c81620003d3565b9050919050565b600060208201905081810360008301526200045e81620003fa565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200048f57607f821691505b60208210811415620004a657620004a5620004ac565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a0516149c0620005aa600039600081816124f20152818161251b0152612ae70152600050506149c06000f3fe6080604052600436106102045760003560e01c80636352211e11610118578063b88d4fde116100a0578063d7224ba01161006f578063d7224ba01461075b578063e43082f714610786578063e985e9c5146107af578063f0ea88ef146107ec578063f2fde38b1461081557610204565b8063b88d4fde1461069f578063c6a91b42146106c8578063c87b56dd146106f3578063d5abeb011461073057610204565b80638da5cb5b116100e75780638da5cb5b146105d957806395d89b4114610604578063982d669e1461062f578063a0712d681461065a578063a22cb4651461067657610204565b80636352211e1461051d57806370a082311461055a578063714c539814610597578063715018a6146105c257610204565b806328cad13d1161019b5780633ccfd60b1161016a5780633ccfd60b1461044e57806342842e0e1461046557806349df728c1461048e5780634f6ccce7146104b757806355f804b3146104f457610204565b806328cad13d146103815780632a55205a146103aa5780632f745c59146103e857806334bec4371461042557610204565b8063095ea7b3116101d7578063095ea7b3146102d957806318160ddd146103025780631e84c4131461032d57806323b872dd1461035857610204565b806301ffc9a71461020957806306fdde031461024657806307e89ec014610271578063081812fc1461029c575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906133af565b61083e565b60405161023d91906139e0565b60405180910390f35b34801561025257600080fd5b5061025b6108b8565b60405161026891906139fb565b60405180910390f35b34801561027d57600080fd5b5061028661094a565b6040516102939190613d3d565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be91906134ac565b610955565b6040516102d09190613950565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb9190613315565b6109da565b005b34801561030e57600080fd5b50610317610af3565b6040516103249190613d3d565b60405180910390f35b34801561033957600080fd5b50610342610afc565b60405161034f91906139e0565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a91906131ff565b610b0f565b005b34801561038d57600080fd5b506103a860048036038101906103a39190613355565b610b1f565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190613506565b610bb8565b6040516103df9291906139b7565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190613315565b610c24565b60405161041c9190613d3d565b60405180910390f35b34801561043157600080fd5b5061044c600480360381019061044791906134ac565b610e22565b005b34801561045a57600080fd5b50610463610ea8565b005b34801561047157600080fd5b5061048c600480360381019061048791906131ff565b610f73565b005b34801561049a57600080fd5b506104b560048036038101906104b09190613409565b610f93565b005b3480156104c357600080fd5b506104de60048036038101906104d991906134ac565b61112e565b6040516104eb9190613d3d565b60405180910390f35b34801561050057600080fd5b5061051b60048036038101906105169190613463565b611181565b005b34801561052957600080fd5b50610544600480360381019061053f91906134ac565b611217565b6040516105519190613950565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c9190613192565b61122d565b60405161058e9190613d3d565b60405180910390f35b3480156105a357600080fd5b506105ac611316565b6040516105b991906139fb565b60405180910390f35b3480156105ce57600080fd5b506105d76113a8565b005b3480156105e557600080fd5b506105ee611430565b6040516105fb9190613950565b60405180910390f35b34801561061057600080fd5b5061061961145a565b60405161062691906139fb565b60405180910390f35b34801561063b57600080fd5b506106446114ec565b6040516106519190613d3d565b60405180910390f35b610674600480360381019061066f91906134ac565b6114f2565b005b34801561068257600080fd5b5061069d600480360381019061069891906132d5565b6116ad565b005b3480156106ab57600080fd5b506106c660048036038101906106c19190613252565b61182e565b005b3480156106d457600080fd5b506106dd61188a565b6040516106ea9190613d3d565b60405180910390f35b3480156106ff57600080fd5b5061071a600480360381019061071591906134ac565b61188f565b60405161072791906139fb565b60405180910390f35b34801561073c57600080fd5b5061074561196b565b6040516107529190613d3d565b60405180910390f35b34801561076757600080fd5b50610770611971565b60405161077d9190613d3d565b60405180910390f35b34801561079257600080fd5b506107ad60048036038101906107a89190613355565b611977565b005b3480156107bb57600080fd5b506107d660048036038101906107d191906131bf565b611a10565b6040516107e391906139e0565b60405180910390f35b3480156107f857600080fd5b50610813600480360381019061080e91906134ac565b611b2a565b005b34801561082157600080fd5b5061083c60048036038101906108379190613192565b611bb0565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108b157506108b082611ca8565b5b9050919050565b6060600180546108c7906140c6565b80601f01602080910402602001604051908101604052809291908181526020018280546108f3906140c6565b80156109405780601f1061091557610100808354040283529160200191610940565b820191906000526020600020905b81548152906001019060200180831161092357829003601f168201915b5050505050905090565b660aa87bee53800081565b600061096082611df2565b61099f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099690613cfd565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e582611217565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4d90613bdd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a75611dff565b73ffffffffffffffffffffffffffffffffffffffff161480610aa45750610aa381610a9e611dff565b611a10565b5b610ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ada90613b1d565b60405180910390fd5b610aee838383611e07565b505050565b60008054905090565b600f60009054906101000a900460ff1681565b610b1a838383611eb9565b505050565b610b27611dff565b73ffffffffffffffffffffffffffffffffffffffff16610b45611430565b73ffffffffffffffffffffffffffffffffffffffff1614610b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9290613b7d565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b600080610bc484611df2565b610c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfa90613afd565b60405180910390fd5b30610c19610c12856005612472565b6064612488565b915091509250929050565b6000610c2f8361122d565b8210610c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6790613a1d565b60405180910390fd5b6000610c7a610af3565b905060008060005b83811015610de0576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d7457806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dcc5786841415610dbd578195505050505050610e1c565b8380610dc890614129565b9450505b508080610dd890614129565b915050610c82565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1390613c7d565b60405180910390fd5b92915050565b610e2a611dff565b73ffffffffffffffffffffffffffffffffffffffff16610e48611430565b73ffffffffffffffffffffffffffffffffffffffff1614610e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9590613b7d565b60405180910390fd5b80600d8190555050565b610eb0611dff565b73ffffffffffffffffffffffffffffffffffffffff16610ece611430565b73ffffffffffffffffffffffffffffffffffffffff1614610f24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1b90613b7d565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f6f573d6000803e3d6000fd5b5050565b610f8e8383836040518060200160405280600081525061182e565b505050565b610f9b611dff565b73ffffffffffffffffffffffffffffffffffffffff16610fb9611430565b73ffffffffffffffffffffffffffffffffffffffff161461100f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100690613b7d565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161104a9190613950565b60206040518083038186803b15801561106257600080fd5b505afa158015611076573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061109a91906134d9565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016110d79291906139b7565b602060405180830381600087803b1580156110f157600080fd5b505af1158015611105573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111299190613382565b505050565b6000611138610af3565b8210611179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117090613a7d565b60405180910390fd5b819050919050565b611189611dff565b73ffffffffffffffffffffffffffffffffffffffff166111a7611430565b73ffffffffffffffffffffffffffffffffffffffff16146111fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f490613b7d565b60405180910390fd5b80600b9080519060200190611213929190612f18565b5050565b60006112228261249e565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561129e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129590613b3d565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600b8054611325906140c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611351906140c6565b801561139e5780601f106113735761010080835404028352916020019161139e565b820191906000526020600020905b81548152906001019060200180831161138157829003601f168201915b5050505050905090565b6113b0611dff565b73ffffffffffffffffffffffffffffffffffffffff166113ce611430565b73ffffffffffffffffffffffffffffffffffffffff1614611424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141b90613b7d565b60405180910390fd5b61142e60006126a1565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611469906140c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611495906140c6565b80156114e25780601f106114b7576101008083540402835291602001916114e2565b820191906000526020600020905b8154815290600101906020018083116114c557829003601f168201915b5050505050905090565b600e5481565b60026009541415611538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152f90613c9d565b60405180910390fd5b6002600981905550660aa87bee53800081600e54611554610af3565b11156115a8573481836115679190613ee4565b146115a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159e90613c5d565b60405180910390fd5b5b600f60009054906101000a900460ff166115f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ee90613cdd565b60405180910390fd5b82600d5481611604610af3565b61160e9190613e5d565b111561164f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164690613a9d565b60405180910390fd5b836005811115611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b90613add565b60405180910390fd5b61169e3386612767565b50505050600160098190555050565b6116b5611dff565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171a90613b9d565b60405180910390fd5b8060066000611730611dff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117dd611dff565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161182291906139e0565b60405180910390a35050565b611839848484611eb9565b61184584848484612785565b611884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187b90613bfd565b60405180910390fd5b50505050565b600581565b606061189a82611df2565b6118d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d090613afd565b60405180910390fd5b600b80546118e6906140c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611912906140c6565b801561195f5780601f106119345761010080835404028352916020019161195f565b820191906000526020600020905b81548152906001019060200180831161194257829003601f168201915b50505050509050919050565b600d5481565b60075481565b61197f611dff565b73ffffffffffffffffffffffffffffffffffffffff1661199d611430565b73ffffffffffffffffffffffffffffffffffffffff16146119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea90613b7d565b60405180910390fd5b80600c60146101000a81548160ff02191690831515021790555050565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600c60149054906101000a900460ff168015611b0757508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611a9f9190613950565b60206040518083038186803b158015611ab757600080fd5b505afa158015611acb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aef9190613436565b73ffffffffffffffffffffffffffffffffffffffff16145b15611b16576001915050611b24565b611b20848461291c565b9150505b92915050565b611b32611dff565b73ffffffffffffffffffffffffffffffffffffffff16611b50611430565b73ffffffffffffffffffffffffffffffffffffffff1614611ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9d90613b7d565b60405180910390fd5b80600e8190555050565b611bb8611dff565b73ffffffffffffffffffffffffffffffffffffffff16611bd6611430565b73ffffffffffffffffffffffffffffffffffffffff1614611c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2390613b7d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9390613a3d565b60405180910390fd5b611ca5816126a1565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d7357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ddb57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611deb5750611dea826129b0565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611ec48261249e565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611eeb611dff565b73ffffffffffffffffffffffffffffffffffffffff161480611f475750611f10611dff565b73ffffffffffffffffffffffffffffffffffffffff16611f2f84610955565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f635750611f628260000151611f5d611dff565b611a10565b5b905080611fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9c90613bbd565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200e90613b5d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207e90613abd565b60405180910390fd5b6120948585856001612a1a565b6120a46000848460000151611e07565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166121129190613f3e565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166121b69190613e17565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846122bc9190613e5d565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124025761233281611df2565b15612401576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461246a8686866001612a20565b505050505050565b600081836124809190613ee4565b905092915050565b600081836124969190613eb3565b905092915050565b6124a6612f9e565b6124af82611df2565b6124ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e590613a5d565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106125525760017f0000000000000000000000000000000000000000000000000000000000000000846125459190613f72565b61254f9190613e5d565b90505b60008390505b818110612660576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461264c5780935050505061269c565b5080806126589061409c565b915050612558565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269390613cbd565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612781828260405180602001604052806000815250612a26565b5050565b60006127a68473ffffffffffffffffffffffffffffffffffffffff16612f05565b1561290f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127cf611dff565b8786866040518563ffffffff1660e01b81526004016127f1949392919061396b565b602060405180830381600087803b15801561280b57600080fd5b505af192505050801561283c57506040513d601f19601f8201168201806040525081019061283991906133dc565b60015b6128bf573d806000811461286c576040519150601f19603f3d011682016040523d82523d6000602084013e612871565b606091505b506000815114156128b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ae90613bfd565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612914565b600190505b949350505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9390613c3d565b60405180910390fd5b612aa581611df2565b15612ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612adc90613c1d565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3f90613d1d565b60405180910390fd5b612b556000858386612a1a565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612c529190613e17565b6fffffffffffffffffffffffffffffffff168152602001858360200151612c799190613e17565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612ee857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e886000888488612785565b612ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ebe90613bfd565b60405180910390fd5b8180612ed290614129565b9250508080612ee090614129565b915050612e17565b5080600081905550612efd6000878588612a20565b505050505050565b600080823b905060008111915050919050565b828054612f24906140c6565b90600052602060002090601f016020900481019282612f465760008555612f8d565b82601f10612f5f57805160ff1916838001178555612f8d565b82800160010185558215612f8d579182015b82811115612f8c578251825591602001919060010190612f71565b5b509050612f9a9190612fd8565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612ff1576000816000905550600101612fd9565b5090565b600061300861300384613d7d565b613d58565b90508281526020810184848401111561302457613023614233565b5b61302f84828561405a565b509392505050565b600061304a61304584613dae565b613d58565b90508281526020810184848401111561306657613065614233565b5b61307184828561405a565b509392505050565b60008135905061308881614900565b92915050565b60008135905061309d81614917565b92915050565b6000815190506130b281614917565b92915050565b6000813590506130c78161492e565b92915050565b6000815190506130dc8161492e565b92915050565b600082601f8301126130f7576130f661422e565b5b8135613107848260208601612ff5565b91505092915050565b60008135905061311f81614945565b92915050565b6000815190506131348161495c565b92915050565b600082601f83011261314f5761314e61422e565b5b813561315f848260208601613037565b91505092915050565b60008135905061317781614973565b92915050565b60008151905061318c81614973565b92915050565b6000602082840312156131a8576131a761423d565b5b60006131b684828501613079565b91505092915050565b600080604083850312156131d6576131d561423d565b5b60006131e485828601613079565b92505060206131f585828601613079565b9150509250929050565b6000806000606084860312156132185761321761423d565b5b600061322686828701613079565b935050602061323786828701613079565b925050604061324886828701613168565b9150509250925092565b6000806000806080858703121561326c5761326b61423d565b5b600061327a87828801613079565b945050602061328b87828801613079565b935050604061329c87828801613168565b925050606085013567ffffffffffffffff8111156132bd576132bc614238565b5b6132c9878288016130e2565b91505092959194509250565b600080604083850312156132ec576132eb61423d565b5b60006132fa85828601613079565b925050602061330b8582860161308e565b9150509250929050565b6000806040838503121561332c5761332b61423d565b5b600061333a85828601613079565b925050602061334b85828601613168565b9150509250929050565b60006020828403121561336b5761336a61423d565b5b60006133798482850161308e565b91505092915050565b6000602082840312156133985761339761423d565b5b60006133a6848285016130a3565b91505092915050565b6000602082840312156133c5576133c461423d565b5b60006133d3848285016130b8565b91505092915050565b6000602082840312156133f2576133f161423d565b5b6000613400848285016130cd565b91505092915050565b60006020828403121561341f5761341e61423d565b5b600061342d84828501613110565b91505092915050565b60006020828403121561344c5761344b61423d565b5b600061345a84828501613125565b91505092915050565b6000602082840312156134795761347861423d565b5b600082013567ffffffffffffffff81111561349757613496614238565b5b6134a38482850161313a565b91505092915050565b6000602082840312156134c2576134c161423d565b5b60006134d084828501613168565b91505092915050565b6000602082840312156134ef576134ee61423d565b5b60006134fd8482850161317d565b91505092915050565b6000806040838503121561351d5761351c61423d565b5b600061352b85828601613168565b925050602061353c85828601613168565b9150509250929050565b61354f81613fa6565b82525050565b61355e81613fb8565b82525050565b600061356f82613ddf565b6135798185613df5565b9350613589818560208601614069565b61359281614242565b840191505092915050565b60006135a882613dea565b6135b28185613e06565b93506135c2818560208601614069565b6135cb81614242565b840191505092915050565b60006135e3602283613e06565b91506135ee82614253565b604082019050919050565b6000613606602683613e06565b9150613611826142a2565b604082019050919050565b6000613629602a83613e06565b9150613634826142f1565b604082019050919050565b600061364c602383613e06565b915061365782614340565b604082019050919050565b600061366f602283613e06565b915061367a8261438f565b604082019050919050565b6000613692602583613e06565b915061369d826143de565b604082019050919050565b60006136b5602283613e06565b91506136c08261442d565b604082019050919050565b60006136d8601183613e06565b91506136e38261447c565b602082019050919050565b60006136fb603983613e06565b9150613706826144a5565b604082019050919050565b600061371e602b83613e06565b9150613729826144f4565b604082019050919050565b6000613741602683613e06565b915061374c82614543565b604082019050919050565b6000613764602083613e06565b915061376f82614592565b602082019050919050565b6000613787601a83613e06565b9150613792826145bb565b602082019050919050565b60006137aa603283613e06565b91506137b5826145e4565b604082019050919050565b60006137cd602283613e06565b91506137d882614633565b604082019050919050565b60006137f0603383613e06565b91506137fb82614682565b604082019050919050565b6000613813601d83613e06565b915061381e826146d1565b602082019050919050565b6000613836602183613e06565b9150613841826146fa565b604082019050919050565b6000613859601883613e06565b915061386482614749565b602082019050919050565b600061387c602e83613e06565b915061388782614772565b604082019050919050565b600061389f601f83613e06565b91506138aa826147c1565b602082019050919050565b60006138c2602f83613e06565b91506138cd826147ea565b604082019050919050565b60006138e5601783613e06565b91506138f082614839565b602082019050919050565b6000613908602d83613e06565b915061391382614862565b604082019050919050565b600061392b602283613e06565b9150613936826148b1565b604082019050919050565b61394a81614050565b82525050565b60006020820190506139656000830184613546565b92915050565b60006080820190506139806000830187613546565b61398d6020830186613546565b61399a6040830185613941565b81810360608301526139ac8184613564565b905095945050505050565b60006040820190506139cc6000830185613546565b6139d96020830184613941565b9392505050565b60006020820190506139f56000830184613555565b92915050565b60006020820190508181036000830152613a15818461359d565b905092915050565b60006020820190508181036000830152613a36816135d6565b9050919050565b60006020820190508181036000830152613a56816135f9565b9050919050565b60006020820190508181036000830152613a768161361c565b9050919050565b60006020820190508181036000830152613a968161363f565b9050919050565b60006020820190508181036000830152613ab681613662565b9050919050565b60006020820190508181036000830152613ad681613685565b9050919050565b60006020820190508181036000830152613af6816136a8565b9050919050565b60006020820190508181036000830152613b16816136cb565b9050919050565b60006020820190508181036000830152613b36816136ee565b9050919050565b60006020820190508181036000830152613b5681613711565b9050919050565b60006020820190508181036000830152613b7681613734565b9050919050565b60006020820190508181036000830152613b9681613757565b9050919050565b60006020820190508181036000830152613bb68161377a565b9050919050565b60006020820190508181036000830152613bd68161379d565b9050919050565b60006020820190508181036000830152613bf6816137c0565b9050919050565b60006020820190508181036000830152613c16816137e3565b9050919050565b60006020820190508181036000830152613c3681613806565b9050919050565b60006020820190508181036000830152613c5681613829565b9050919050565b60006020820190508181036000830152613c768161384c565b9050919050565b60006020820190508181036000830152613c968161386f565b9050919050565b60006020820190508181036000830152613cb681613892565b9050919050565b60006020820190508181036000830152613cd6816138b5565b9050919050565b60006020820190508181036000830152613cf6816138d8565b9050919050565b60006020820190508181036000830152613d16816138fb565b9050919050565b60006020820190508181036000830152613d368161391e565b9050919050565b6000602082019050613d526000830184613941565b92915050565b6000613d62613d73565b9050613d6e82826140f8565b919050565b6000604051905090565b600067ffffffffffffffff821115613d9857613d976141ff565b5b613da182614242565b9050602081019050919050565b600067ffffffffffffffff821115613dc957613dc86141ff565b5b613dd282614242565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613e2282614014565b9150613e2d83614014565b9250826fffffffffffffffffffffffffffffffff03821115613e5257613e51614172565b5b828201905092915050565b6000613e6882614050565b9150613e7383614050565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ea857613ea7614172565b5b828201905092915050565b6000613ebe82614050565b9150613ec983614050565b925082613ed957613ed86141a1565b5b828204905092915050565b6000613eef82614050565b9150613efa83614050565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f3357613f32614172565b5b828202905092915050565b6000613f4982614014565b9150613f5483614014565b925082821015613f6757613f66614172565b5b828203905092915050565b6000613f7d82614050565b9150613f8883614050565b925082821015613f9b57613f9a614172565b5b828203905092915050565b6000613fb182614030565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613ffb82613fa6565b9050919050565b600061400d82613fa6565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561408757808201518184015260208101905061406c565b83811115614096576000848401525b50505050565b60006140a782614050565b915060008214156140bb576140ba614172565b5b600182039050919050565b600060028204905060018216806140de57607f821691505b602082108114156140f2576140f16141d0565b5b50919050565b61410182614242565b810181811067ffffffffffffffff821117156141205761411f6141ff565b5b80604052505050565b600061413482614050565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561416757614166614172565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61490981613fa6565b811461491457600080fd5b50565b61492081613fb8565b811461492b57600080fd5b50565b61493781613fc4565b811461494257600080fd5b50565b61494e81613ff0565b811461495957600080fd5b50565b61496581614002565b811461497057600080fd5b50565b61497c81614050565b811461498757600080fd5b5056fea2646970667358221220de6bc67b2618332b8085477cb0f9fdef3a74354a09bac9d3f6b2591b5ba9fad664736f6c63430008070033697066733a2f2f516d61783955447362414a573151556d4e55734b795038755442627535615150776751534e537a78444244666f59

Deployed Bytecode

0x6080604052600436106102045760003560e01c80636352211e11610118578063b88d4fde116100a0578063d7224ba01161006f578063d7224ba01461075b578063e43082f714610786578063e985e9c5146107af578063f0ea88ef146107ec578063f2fde38b1461081557610204565b8063b88d4fde1461069f578063c6a91b42146106c8578063c87b56dd146106f3578063d5abeb011461073057610204565b80638da5cb5b116100e75780638da5cb5b146105d957806395d89b4114610604578063982d669e1461062f578063a0712d681461065a578063a22cb4651461067657610204565b80636352211e1461051d57806370a082311461055a578063714c539814610597578063715018a6146105c257610204565b806328cad13d1161019b5780633ccfd60b1161016a5780633ccfd60b1461044e57806342842e0e1461046557806349df728c1461048e5780634f6ccce7146104b757806355f804b3146104f457610204565b806328cad13d146103815780632a55205a146103aa5780632f745c59146103e857806334bec4371461042557610204565b8063095ea7b3116101d7578063095ea7b3146102d957806318160ddd146103025780631e84c4131461032d57806323b872dd1461035857610204565b806301ffc9a71461020957806306fdde031461024657806307e89ec014610271578063081812fc1461029c575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906133af565b61083e565b60405161023d91906139e0565b60405180910390f35b34801561025257600080fd5b5061025b6108b8565b60405161026891906139fb565b60405180910390f35b34801561027d57600080fd5b5061028661094a565b6040516102939190613d3d565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be91906134ac565b610955565b6040516102d09190613950565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb9190613315565b6109da565b005b34801561030e57600080fd5b50610317610af3565b6040516103249190613d3d565b60405180910390f35b34801561033957600080fd5b50610342610afc565b60405161034f91906139e0565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a91906131ff565b610b0f565b005b34801561038d57600080fd5b506103a860048036038101906103a39190613355565b610b1f565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190613506565b610bb8565b6040516103df9291906139b7565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190613315565b610c24565b60405161041c9190613d3d565b60405180910390f35b34801561043157600080fd5b5061044c600480360381019061044791906134ac565b610e22565b005b34801561045a57600080fd5b50610463610ea8565b005b34801561047157600080fd5b5061048c600480360381019061048791906131ff565b610f73565b005b34801561049a57600080fd5b506104b560048036038101906104b09190613409565b610f93565b005b3480156104c357600080fd5b506104de60048036038101906104d991906134ac565b61112e565b6040516104eb9190613d3d565b60405180910390f35b34801561050057600080fd5b5061051b60048036038101906105169190613463565b611181565b005b34801561052957600080fd5b50610544600480360381019061053f91906134ac565b611217565b6040516105519190613950565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c9190613192565b61122d565b60405161058e9190613d3d565b60405180910390f35b3480156105a357600080fd5b506105ac611316565b6040516105b991906139fb565b60405180910390f35b3480156105ce57600080fd5b506105d76113a8565b005b3480156105e557600080fd5b506105ee611430565b6040516105fb9190613950565b60405180910390f35b34801561061057600080fd5b5061061961145a565b60405161062691906139fb565b60405180910390f35b34801561063b57600080fd5b506106446114ec565b6040516106519190613d3d565b60405180910390f35b610674600480360381019061066f91906134ac565b6114f2565b005b34801561068257600080fd5b5061069d600480360381019061069891906132d5565b6116ad565b005b3480156106ab57600080fd5b506106c660048036038101906106c19190613252565b61182e565b005b3480156106d457600080fd5b506106dd61188a565b6040516106ea9190613d3d565b60405180910390f35b3480156106ff57600080fd5b5061071a600480360381019061071591906134ac565b61188f565b60405161072791906139fb565b60405180910390f35b34801561073c57600080fd5b5061074561196b565b6040516107529190613d3d565b60405180910390f35b34801561076757600080fd5b50610770611971565b60405161077d9190613d3d565b60405180910390f35b34801561079257600080fd5b506107ad60048036038101906107a89190613355565b611977565b005b3480156107bb57600080fd5b506107d660048036038101906107d191906131bf565b611a10565b6040516107e391906139e0565b60405180910390f35b3480156107f857600080fd5b50610813600480360381019061080e91906134ac565b611b2a565b005b34801561082157600080fd5b5061083c60048036038101906108379190613192565b611bb0565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108b157506108b082611ca8565b5b9050919050565b6060600180546108c7906140c6565b80601f01602080910402602001604051908101604052809291908181526020018280546108f3906140c6565b80156109405780601f1061091557610100808354040283529160200191610940565b820191906000526020600020905b81548152906001019060200180831161092357829003601f168201915b5050505050905090565b660aa87bee53800081565b600061096082611df2565b61099f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099690613cfd565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e582611217565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4d90613bdd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a75611dff565b73ffffffffffffffffffffffffffffffffffffffff161480610aa45750610aa381610a9e611dff565b611a10565b5b610ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ada90613b1d565b60405180910390fd5b610aee838383611e07565b505050565b60008054905090565b600f60009054906101000a900460ff1681565b610b1a838383611eb9565b505050565b610b27611dff565b73ffffffffffffffffffffffffffffffffffffffff16610b45611430565b73ffffffffffffffffffffffffffffffffffffffff1614610b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9290613b7d565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b600080610bc484611df2565b610c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfa90613afd565b60405180910390fd5b30610c19610c12856005612472565b6064612488565b915091509250929050565b6000610c2f8361122d565b8210610c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6790613a1d565b60405180910390fd5b6000610c7a610af3565b905060008060005b83811015610de0576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d7457806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dcc5786841415610dbd578195505050505050610e1c565b8380610dc890614129565b9450505b508080610dd890614129565b915050610c82565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1390613c7d565b60405180910390fd5b92915050565b610e2a611dff565b73ffffffffffffffffffffffffffffffffffffffff16610e48611430565b73ffffffffffffffffffffffffffffffffffffffff1614610e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9590613b7d565b60405180910390fd5b80600d8190555050565b610eb0611dff565b73ffffffffffffffffffffffffffffffffffffffff16610ece611430565b73ffffffffffffffffffffffffffffffffffffffff1614610f24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1b90613b7d565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f6f573d6000803e3d6000fd5b5050565b610f8e8383836040518060200160405280600081525061182e565b505050565b610f9b611dff565b73ffffffffffffffffffffffffffffffffffffffff16610fb9611430565b73ffffffffffffffffffffffffffffffffffffffff161461100f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100690613b7d565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161104a9190613950565b60206040518083038186803b15801561106257600080fd5b505afa158015611076573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061109a91906134d9565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016110d79291906139b7565b602060405180830381600087803b1580156110f157600080fd5b505af1158015611105573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111299190613382565b505050565b6000611138610af3565b8210611179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117090613a7d565b60405180910390fd5b819050919050565b611189611dff565b73ffffffffffffffffffffffffffffffffffffffff166111a7611430565b73ffffffffffffffffffffffffffffffffffffffff16146111fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f490613b7d565b60405180910390fd5b80600b9080519060200190611213929190612f18565b5050565b60006112228261249e565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561129e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129590613b3d565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600b8054611325906140c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611351906140c6565b801561139e5780601f106113735761010080835404028352916020019161139e565b820191906000526020600020905b81548152906001019060200180831161138157829003601f168201915b5050505050905090565b6113b0611dff565b73ffffffffffffffffffffffffffffffffffffffff166113ce611430565b73ffffffffffffffffffffffffffffffffffffffff1614611424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141b90613b7d565b60405180910390fd5b61142e60006126a1565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611469906140c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611495906140c6565b80156114e25780601f106114b7576101008083540402835291602001916114e2565b820191906000526020600020905b8154815290600101906020018083116114c557829003601f168201915b5050505050905090565b600e5481565b60026009541415611538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152f90613c9d565b60405180910390fd5b6002600981905550660aa87bee53800081600e54611554610af3565b11156115a8573481836115679190613ee4565b146115a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159e90613c5d565b60405180910390fd5b5b600f60009054906101000a900460ff166115f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ee90613cdd565b60405180910390fd5b82600d5481611604610af3565b61160e9190613e5d565b111561164f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164690613a9d565b60405180910390fd5b836005811115611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b90613add565b60405180910390fd5b61169e3386612767565b50505050600160098190555050565b6116b5611dff565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171a90613b9d565b60405180910390fd5b8060066000611730611dff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117dd611dff565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161182291906139e0565b60405180910390a35050565b611839848484611eb9565b61184584848484612785565b611884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187b90613bfd565b60405180910390fd5b50505050565b600581565b606061189a82611df2565b6118d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d090613afd565b60405180910390fd5b600b80546118e6906140c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611912906140c6565b801561195f5780601f106119345761010080835404028352916020019161195f565b820191906000526020600020905b81548152906001019060200180831161194257829003601f168201915b50505050509050919050565b600d5481565b60075481565b61197f611dff565b73ffffffffffffffffffffffffffffffffffffffff1661199d611430565b73ffffffffffffffffffffffffffffffffffffffff16146119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea90613b7d565b60405180910390fd5b80600c60146101000a81548160ff02191690831515021790555050565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600c60149054906101000a900460ff168015611b0757508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611a9f9190613950565b60206040518083038186803b158015611ab757600080fd5b505afa158015611acb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aef9190613436565b73ffffffffffffffffffffffffffffffffffffffff16145b15611b16576001915050611b24565b611b20848461291c565b9150505b92915050565b611b32611dff565b73ffffffffffffffffffffffffffffffffffffffff16611b50611430565b73ffffffffffffffffffffffffffffffffffffffff1614611ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9d90613b7d565b60405180910390fd5b80600e8190555050565b611bb8611dff565b73ffffffffffffffffffffffffffffffffffffffff16611bd6611430565b73ffffffffffffffffffffffffffffffffffffffff1614611c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2390613b7d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9390613a3d565b60405180910390fd5b611ca5816126a1565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d7357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ddb57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611deb5750611dea826129b0565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611ec48261249e565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611eeb611dff565b73ffffffffffffffffffffffffffffffffffffffff161480611f475750611f10611dff565b73ffffffffffffffffffffffffffffffffffffffff16611f2f84610955565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f635750611f628260000151611f5d611dff565b611a10565b5b905080611fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9c90613bbd565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200e90613b5d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207e90613abd565b60405180910390fd5b6120948585856001612a1a565b6120a46000848460000151611e07565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166121129190613f3e565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166121b69190613e17565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846122bc9190613e5d565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124025761233281611df2565b15612401576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461246a8686866001612a20565b505050505050565b600081836124809190613ee4565b905092915050565b600081836124969190613eb3565b905092915050565b6124a6612f9e565b6124af82611df2565b6124ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e590613a5d565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000006483106125525760017f0000000000000000000000000000000000000000000000000000000000000064846125459190613f72565b61254f9190613e5d565b90505b60008390505b818110612660576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461264c5780935050505061269c565b5080806126589061409c565b915050612558565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269390613cbd565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612781828260405180602001604052806000815250612a26565b5050565b60006127a68473ffffffffffffffffffffffffffffffffffffffff16612f05565b1561290f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127cf611dff565b8786866040518563ffffffff1660e01b81526004016127f1949392919061396b565b602060405180830381600087803b15801561280b57600080fd5b505af192505050801561283c57506040513d601f19601f8201168201806040525081019061283991906133dc565b60015b6128bf573d806000811461286c576040519150601f19603f3d011682016040523d82523d6000602084013e612871565b606091505b506000815114156128b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ae90613bfd565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612914565b600190505b949350505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9390613c3d565b60405180910390fd5b612aa581611df2565b15612ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612adc90613c1d565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000064831115612b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3f90613d1d565b60405180910390fd5b612b556000858386612a1a565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612c529190613e17565b6fffffffffffffffffffffffffffffffff168152602001858360200151612c799190613e17565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612ee857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e886000888488612785565b612ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ebe90613bfd565b60405180910390fd5b8180612ed290614129565b9250508080612ee090614129565b915050612e17565b5080600081905550612efd6000878588612a20565b505050505050565b600080823b905060008111915050919050565b828054612f24906140c6565b90600052602060002090601f016020900481019282612f465760008555612f8d565b82601f10612f5f57805160ff1916838001178555612f8d565b82800160010185558215612f8d579182015b82811115612f8c578251825591602001919060010190612f71565b5b509050612f9a9190612fd8565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612ff1576000816000905550600101612fd9565b5090565b600061300861300384613d7d565b613d58565b90508281526020810184848401111561302457613023614233565b5b61302f84828561405a565b509392505050565b600061304a61304584613dae565b613d58565b90508281526020810184848401111561306657613065614233565b5b61307184828561405a565b509392505050565b60008135905061308881614900565b92915050565b60008135905061309d81614917565b92915050565b6000815190506130b281614917565b92915050565b6000813590506130c78161492e565b92915050565b6000815190506130dc8161492e565b92915050565b600082601f8301126130f7576130f661422e565b5b8135613107848260208601612ff5565b91505092915050565b60008135905061311f81614945565b92915050565b6000815190506131348161495c565b92915050565b600082601f83011261314f5761314e61422e565b5b813561315f848260208601613037565b91505092915050565b60008135905061317781614973565b92915050565b60008151905061318c81614973565b92915050565b6000602082840312156131a8576131a761423d565b5b60006131b684828501613079565b91505092915050565b600080604083850312156131d6576131d561423d565b5b60006131e485828601613079565b92505060206131f585828601613079565b9150509250929050565b6000806000606084860312156132185761321761423d565b5b600061322686828701613079565b935050602061323786828701613079565b925050604061324886828701613168565b9150509250925092565b6000806000806080858703121561326c5761326b61423d565b5b600061327a87828801613079565b945050602061328b87828801613079565b935050604061329c87828801613168565b925050606085013567ffffffffffffffff8111156132bd576132bc614238565b5b6132c9878288016130e2565b91505092959194509250565b600080604083850312156132ec576132eb61423d565b5b60006132fa85828601613079565b925050602061330b8582860161308e565b9150509250929050565b6000806040838503121561332c5761332b61423d565b5b600061333a85828601613079565b925050602061334b85828601613168565b9150509250929050565b60006020828403121561336b5761336a61423d565b5b60006133798482850161308e565b91505092915050565b6000602082840312156133985761339761423d565b5b60006133a6848285016130a3565b91505092915050565b6000602082840312156133c5576133c461423d565b5b60006133d3848285016130b8565b91505092915050565b6000602082840312156133f2576133f161423d565b5b6000613400848285016130cd565b91505092915050565b60006020828403121561341f5761341e61423d565b5b600061342d84828501613110565b91505092915050565b60006020828403121561344c5761344b61423d565b5b600061345a84828501613125565b91505092915050565b6000602082840312156134795761347861423d565b5b600082013567ffffffffffffffff81111561349757613496614238565b5b6134a38482850161313a565b91505092915050565b6000602082840312156134c2576134c161423d565b5b60006134d084828501613168565b91505092915050565b6000602082840312156134ef576134ee61423d565b5b60006134fd8482850161317d565b91505092915050565b6000806040838503121561351d5761351c61423d565b5b600061352b85828601613168565b925050602061353c85828601613168565b9150509250929050565b61354f81613fa6565b82525050565b61355e81613fb8565b82525050565b600061356f82613ddf565b6135798185613df5565b9350613589818560208601614069565b61359281614242565b840191505092915050565b60006135a882613dea565b6135b28185613e06565b93506135c2818560208601614069565b6135cb81614242565b840191505092915050565b60006135e3602283613e06565b91506135ee82614253565b604082019050919050565b6000613606602683613e06565b9150613611826142a2565b604082019050919050565b6000613629602a83613e06565b9150613634826142f1565b604082019050919050565b600061364c602383613e06565b915061365782614340565b604082019050919050565b600061366f602283613e06565b915061367a8261438f565b604082019050919050565b6000613692602583613e06565b915061369d826143de565b604082019050919050565b60006136b5602283613e06565b91506136c08261442d565b604082019050919050565b60006136d8601183613e06565b91506136e38261447c565b602082019050919050565b60006136fb603983613e06565b9150613706826144a5565b604082019050919050565b600061371e602b83613e06565b9150613729826144f4565b604082019050919050565b6000613741602683613e06565b915061374c82614543565b604082019050919050565b6000613764602083613e06565b915061376f82614592565b602082019050919050565b6000613787601a83613e06565b9150613792826145bb565b602082019050919050565b60006137aa603283613e06565b91506137b5826145e4565b604082019050919050565b60006137cd602283613e06565b91506137d882614633565b604082019050919050565b60006137f0603383613e06565b91506137fb82614682565b604082019050919050565b6000613813601d83613e06565b915061381e826146d1565b602082019050919050565b6000613836602183613e06565b9150613841826146fa565b604082019050919050565b6000613859601883613e06565b915061386482614749565b602082019050919050565b600061387c602e83613e06565b915061388782614772565b604082019050919050565b600061389f601f83613e06565b91506138aa826147c1565b602082019050919050565b60006138c2602f83613e06565b91506138cd826147ea565b604082019050919050565b60006138e5601783613e06565b91506138f082614839565b602082019050919050565b6000613908602d83613e06565b915061391382614862565b604082019050919050565b600061392b602283613e06565b9150613936826148b1565b604082019050919050565b61394a81614050565b82525050565b60006020820190506139656000830184613546565b92915050565b60006080820190506139806000830187613546565b61398d6020830186613546565b61399a6040830185613941565b81810360608301526139ac8184613564565b905095945050505050565b60006040820190506139cc6000830185613546565b6139d96020830184613941565b9392505050565b60006020820190506139f56000830184613555565b92915050565b60006020820190508181036000830152613a15818461359d565b905092915050565b60006020820190508181036000830152613a36816135d6565b9050919050565b60006020820190508181036000830152613a56816135f9565b9050919050565b60006020820190508181036000830152613a768161361c565b9050919050565b60006020820190508181036000830152613a968161363f565b9050919050565b60006020820190508181036000830152613ab681613662565b9050919050565b60006020820190508181036000830152613ad681613685565b9050919050565b60006020820190508181036000830152613af6816136a8565b9050919050565b60006020820190508181036000830152613b16816136cb565b9050919050565b60006020820190508181036000830152613b36816136ee565b9050919050565b60006020820190508181036000830152613b5681613711565b9050919050565b60006020820190508181036000830152613b7681613734565b9050919050565b60006020820190508181036000830152613b9681613757565b9050919050565b60006020820190508181036000830152613bb68161377a565b9050919050565b60006020820190508181036000830152613bd68161379d565b9050919050565b60006020820190508181036000830152613bf6816137c0565b9050919050565b60006020820190508181036000830152613c16816137e3565b9050919050565b60006020820190508181036000830152613c3681613806565b9050919050565b60006020820190508181036000830152613c5681613829565b9050919050565b60006020820190508181036000830152613c768161384c565b9050919050565b60006020820190508181036000830152613c968161386f565b9050919050565b60006020820190508181036000830152613cb681613892565b9050919050565b60006020820190508181036000830152613cd6816138b5565b9050919050565b60006020820190508181036000830152613cf6816138d8565b9050919050565b60006020820190508181036000830152613d16816138fb565b9050919050565b60006020820190508181036000830152613d368161391e565b9050919050565b6000602082019050613d526000830184613941565b92915050565b6000613d62613d73565b9050613d6e82826140f8565b919050565b6000604051905090565b600067ffffffffffffffff821115613d9857613d976141ff565b5b613da182614242565b9050602081019050919050565b600067ffffffffffffffff821115613dc957613dc86141ff565b5b613dd282614242565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613e2282614014565b9150613e2d83614014565b9250826fffffffffffffffffffffffffffffffff03821115613e5257613e51614172565b5b828201905092915050565b6000613e6882614050565b9150613e7383614050565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ea857613ea7614172565b5b828201905092915050565b6000613ebe82614050565b9150613ec983614050565b925082613ed957613ed86141a1565b5b828204905092915050565b6000613eef82614050565b9150613efa83614050565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f3357613f32614172565b5b828202905092915050565b6000613f4982614014565b9150613f5483614014565b925082821015613f6757613f66614172565b5b828203905092915050565b6000613f7d82614050565b9150613f8883614050565b925082821015613f9b57613f9a614172565b5b828203905092915050565b6000613fb182614030565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613ffb82613fa6565b9050919050565b600061400d82613fa6565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561408757808201518184015260208101905061406c565b83811115614096576000848401525b50505050565b60006140a782614050565b915060008214156140bb576140ba614172565b5b600182039050919050565b600060028204905060018216806140de57607f821691505b602082108114156140f2576140f16141d0565b5b50919050565b61410182614242565b810181811067ffffffffffffffff821117156141205761411f6141ff565b5b80604052505050565b600061413482614050565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561416757614166614172565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61490981613fa6565b811461491457600080fd5b50565b61492081613fb8565b811461492b57600080fd5b50565b61493781613fc4565b811461494257600080fd5b50565b61494e81613ff0565b811461495957600080fd5b50565b61496581614002565b811461497057600080fd5b50565b61497c81614050565b811461498757600080fd5b5056fea2646970667358221220de6bc67b2618332b8085477cb0f9fdef3a74354a09bac9d3f6b2591b5ba9fad664736f6c63430008070033

Deployed Bytecode Sourcemap

54954:5749:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58956:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44173:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55469:55;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45698:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45261:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41008:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55573:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46548:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58061:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60382:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;41639:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57659:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58373:143;;;;;;;;;;;;;:::i;:::-;;46753:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58524:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41171:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57551:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43996:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42873:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57387:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19031:103;;;;;;;;;;;;;:::i;:::-;;18380:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44328:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55531:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56871:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45966:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46973:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55378:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60073:243;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55429:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51388:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57887:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59385:617;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58229:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19289:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58956:292;59104:4;59161:26;59146:41;;;:11;:41;;;;:94;;;;59204:36;59228:11;59204:23;:36::i;:::-;59146:94;59126:114;;58956:292;;;:::o;44173:94::-;44227:13;44256:5;44249:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44173:94;:::o;55469:55::-;55513:11;55469:55;:::o;45698:204::-;45766:7;45790:16;45798:7;45790;:16::i;:::-;45782:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;45872:15;:24;45888:7;45872:24;;;;;;;;;;;;;;;;;;;;;45865:31;;45698:204;;;:::o;45261:379::-;45330:13;45346:24;45362:7;45346:15;:24::i;:::-;45330:40;;45391:5;45385:11;;:2;:11;;;;45377:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;45476:5;45460:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;45485:37;45502:5;45509:12;:10;:12::i;:::-;45485:16;:37::i;:::-;45460:62;45444:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;45606:28;45615:2;45619:7;45628:5;45606:8;:28::i;:::-;45323:317;45261:379;;:::o;41008:94::-;41061:7;41084:12;;41077:19;;41008:94;:::o;55573:37::-;;;;;;;;;;;;;:::o;46548:142::-;46656:28;46666:4;46672:2;46676:7;46656:9;:28::i;:::-;46548:142;;;:::o;58061:158::-;18611:12;:10;:12::i;:::-;18600:23;;:7;:5;:7::i;:::-;:23;;;18592:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58192:19:::1;58171:18;;:40;;;;;;;;;;;;;;;;;;58061:158:::0;:::o;60382:318::-;60507:16;60525:21;60572:16;60580:7;60572;:16::i;:::-;60564:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;60639:4;60646:45;60659:26;60672:9;60683:1;60659:12;:26::i;:::-;60687:3;60646:12;:45::i;:::-;60623:69;;;;60382:318;;;;;:::o;41639:744::-;41748:7;41783:16;41793:5;41783:9;:16::i;:::-;41775:5;:24;41767:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;41845:22;41870:13;:11;:13::i;:::-;41845:38;;41890:19;41920:25;41970:9;41965:350;41989:14;41985:1;:18;41965:350;;;42019:31;42053:11;:14;42065:1;42053:14;;;;;;;;;;;42019:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42106:1;42080:28;;:9;:14;;;:28;;;42076:89;;42141:9;:14;;;42121:34;;42076:89;42198:5;42177:26;;:17;:26;;;42173:135;;;42235:5;42220:11;:20;42216:59;;;42262:1;42255:8;;;;;;;;;42216:59;42285:13;;;;;:::i;:::-;;;;42173:135;42010:305;42005:3;;;;;:::i;:::-;;;;41965:350;;;;42321:56;;;;;;;;;;:::i;:::-;;;;;;;;41639:744;;;;;:::o;57659:104::-;18611:12;:10;:12::i;:::-;18600:23;;:7;:5;:7::i;:::-;:23;;;18592:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57751:4:::1;57739:9;:16;;;;57659:104:::0;:::o;58373:143::-;18611:12;:10;:12::i;:::-;18600:23;;:7;:5;:7::i;:::-;:23;;;18592:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58421:15:::1;58439:21;58421:39;;58479:10;58471:28;;:37;58500:7;58471:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;58410:106;58373:143::o:0;46753:157::-;46865:39;46882:4;46888:2;46892:7;46865:39;;;;;;;;;;;;:16;:39::i;:::-;46753:157;;;:::o;58524:168::-;18611:12;:10;:12::i;:::-;18600:23;;:7;:5;:7::i;:::-;:23;;;18592:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58590:15:::1;58608:5;:15;;;58632:4;58608:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58590:48;;58649:5;:14;;;58664:10;58676:7;58649:35;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;58579:113;58524:168:::0;:::o;41171:177::-;41238:7;41270:13;:11;:13::i;:::-;41262:5;:21;41254:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;41337:5;41330:12;;41171:177;;;:::o;57551:100::-;18611:12;:10;:12::i;:::-;18600:23;;:7;:5;:7::i;:::-;:23;;;18592:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57635:8:::1;57625:7;:18;;;;;;;;;;;;:::i;:::-;;57551:100:::0;:::o;43996:118::-;44060:7;44083:20;44095:7;44083:11;:20::i;:::-;:25;;;44076:32;;43996:118;;;:::o;42873:211::-;42937:7;42978:1;42961:19;;:5;:19;;;;42953:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;43050:12;:19;43063:5;43050:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;43042:36;;43035:43;;42873:211;;;:::o;57387:93::-;57432:13;57465:7;57458:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57387:93;:::o;19031:103::-;18611:12;:10;:12::i;:::-;18600:23;;:7;:5;:7::i;:::-;:23;;;18592:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19096:30:::1;19123:1;19096:18;:30::i;:::-;19031:103::o:0;18380:87::-;18426:7;18453:6;;;;;;;;;;;18446:13;;18380:87;:::o;44328:98::-;44384:13;44413:7;44406:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44328:98;:::o;55531:35::-;;;;:::o;56871:321::-;10309:1;10907:7;;:19;;10899:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10309:1;11040:7;:18;;;;55513:11:::1;57011:14;56548;;56534:13;:11;:13::i;:::-;:28;56531:166;;;56624:9;56605:14;56597:5;:22;;;;:::i;:::-;56596:37;56574:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;56531:166;55740:18:::2;;;;;;;;;;;55732:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;57074:14:::3;56157:9;;56122:14;56106:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:60;;56084:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;57113:14:::4;55421:1;55904:14;:34;;55882:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;57147:37:::5;57157:10;57169:14;57147:9;:37::i;:::-;56239:1:::4;55797::::3;11071::::1;;10265::::0;11219:7;:22;;;;56871:321;:::o;45966:274::-;46069:12;:10;:12::i;:::-;46057:24;;:8;:24;;;;46049:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;46166:8;46121:18;:32;46140:12;:10;:12::i;:::-;46121:32;;;;;;;;;;;;;;;:42;46154:8;46121:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;46215:8;46186:48;;46201:12;:10;:12::i;:::-;46186:48;;;46225:8;46186:48;;;;;;:::i;:::-;;;;;;;;45966:274;;:::o;46973:311::-;47110:28;47120:4;47126:2;47130:7;47110:9;:28::i;:::-;47161:48;47184:4;47190:2;47194:7;47203:5;47161:22;:48::i;:::-;47145:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;46973:311;;;;:::o;55378:44::-;55421:1;55378:44;:::o;60073:243::-;60191:13;60230:16;60238:7;60230;:16::i;:::-;60222:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;60301:7;60281:27;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60073:243;;;:::o;55429:31::-;;;;:::o;51388:43::-;;;;:::o;57887:166::-;18611:12;:10;:12::i;:::-;18600:23;;:7;:5;:7::i;:::-;:23;;;18592:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58024:21:::1;58001:20;;:44;;;;;;;;;;;;;;;;;;57887:166:::0;:::o;59385:617::-;59510:4;59675:27;59733;;;;;;;;;;;59675:96;;59800:20;;;;;;;;;;;:86;;;;;59878:8;59837:49;;59845:13;:21;;;59867:5;59845:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;59837:49;;;59800:86;59782:154;;;59920:4;59913:11;;;;;59782:154;59955:39;59978:5;59985:8;59955:22;:39::i;:::-;59948:46;;;59385:617;;;;;:::o;58229:134::-;18611:12;:10;:12::i;:::-;18600:23;;:7;:5;:7::i;:::-;:23;;;18592:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58342:13:::1;58325:14;:30;;;;58229:134:::0;:::o;19289:201::-;18611:12;:10;:12::i;:::-;18600:23;;:7;:5;:7::i;:::-;:23;;;18592:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19398:1:::1;19378:22;;:8;:22;;;;19370:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;19454:28;19473:8;19454:18;:28::i;:::-;19289:201:::0;:::o;42447:370::-;42574:4;42619:25;42604:40;;;:11;:40;;;;:99;;;;42670:33;42655:48;;;:11;:48;;;;42604:99;:160;;;;42729:35;42714:50;;;:11;:50;;;;42604:160;:207;;;;42775:36;42799:11;42775:23;:36::i;:::-;42604:207;42590:221;;42447:370;;;:::o;47523:105::-;47580:4;47610:12;;47600:7;:22;47593:29;;47523:105;;;:::o;17104:98::-;17157:7;17184:10;17177:17;;17104:98;:::o;51210:172::-;51334:2;51307:15;:24;51323:7;51307:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;51368:7;51364:2;51348:28;;51357:5;51348:28;;;;;;;;;;;;51210:172;;;:::o;49575:1529::-;49672:35;49710:20;49722:7;49710:11;:20::i;:::-;49672:58;;49739:22;49781:13;:18;;;49765:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;49834:12;:10;:12::i;:::-;49810:36;;:20;49822:7;49810:11;:20::i;:::-;:36;;;49765:81;:142;;;;49857:50;49874:13;:18;;;49894:12;:10;:12::i;:::-;49857:16;:50::i;:::-;49765:142;49739:169;;49933:17;49917:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;50065:4;50043:26;;:13;:18;;;:26;;;50027:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;50154:1;50140:16;;:2;:16;;;;50132:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;50207:43;50229:4;50235:2;50239:7;50248:1;50207:21;:43::i;:::-;50307:49;50324:1;50328:7;50337:13;:18;;;50307:8;:49::i;:::-;50395:1;50365:12;:18;50378:4;50365:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50431:1;50403:12;:16;50416:2;50403:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50462:43;;;;;;;;50477:2;50462:43;;;;;;50488:15;50462:43;;;;;50439:11;:20;50451:7;50439:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50733:19;50765:1;50755:7;:11;;;;:::i;:::-;50733:33;;50818:1;50777:43;;:11;:24;50789:11;50777:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;50773:236;;;50835:20;50843:11;50835:7;:20::i;:::-;50831:171;;;50895:97;;;;;;;;50922:13;:18;;;50895:97;;;;;;50953:13;:28;;;50895:97;;;;;50868:11;:24;50880:11;50868:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50831:171;50773:236;51041:7;51037:2;51022:27;;51031:4;51022:27;;;;;;;;;;;;51056:42;51077:4;51083:2;51087:7;51096:1;51056:20;:42::i;:::-;49665:1439;;;49575:1529;;;:::o;3605:98::-;3663:7;3694:1;3690;:5;;;;:::i;:::-;3683:12;;3605:98;;;;:::o;4004:::-;4062:7;4093:1;4089;:5;;;;:::i;:::-;4082:12;;4004:98;;;;:::o;43336:606::-;43412:21;;:::i;:::-;43453:16;43461:7;43453;:16::i;:::-;43445:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;43525:26;43573:12;43562:7;:23;43558:93;;43642:1;43627:12;43617:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;43596:47;;43558:93;43664:12;43679:7;43664:22;;43659:212;43696:18;43688:4;:26;43659:212;;43733:31;43767:11;:17;43779:4;43767:17;;;;;;;;;;;43733:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43823:1;43797:28;;:9;:14;;;:28;;;43793:71;;43845:9;43838:16;;;;;;;43793:71;43724:147;43716:6;;;;;:::i;:::-;;;;43659:212;;;;43879:57;;;;;;;;;;:::i;:::-;;;;;;;;43336:606;;;;:::o;19650:191::-;19724:16;19743:6;;;;;;;;;;;19724:25;;19769:8;19760:6;;:17;;;;;;;;;;;;;;;;;;19824:8;19793:40;;19814:8;19793:40;;;;;;;;;;;;19713:128;19650:191;:::o;47634:98::-;47699:27;47709:2;47713:8;47699:27;;;;;;;;;;;;:9;:27::i;:::-;47634:98;;:::o;52925:690::-;53062:4;53079:15;:2;:13;;;:15::i;:::-;53075:535;;;53134:2;53118:36;;;53155:12;:10;:12::i;:::-;53169:4;53175:7;53184:5;53118:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53105:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53366:1;53349:6;:13;:18;53345:215;;;53382:61;;;;;;;;;;:::i;:::-;;;;;;;;53345:215;53528:6;53522:13;53513:6;53509:2;53505:15;53498:38;53105:464;53250:45;;;53240:55;;;:6;:55;;;;53233:62;;;;;53075:535;53598:4;53591:11;;52925:690;;;;;;;:::o;46303:186::-;46425:4;46448:18;:25;46467:5;46448:25;;;;;;;;;;;;;;;:35;46474:8;46448:35;;;;;;;;;;;;;;;;;;;;;;;;;46441:42;;46303:186;;;;:::o;31780:157::-;31865:4;31904:25;31889:40;;;:11;:40;;;;31882:47;;31780:157;;;:::o;54077:141::-;;;;;:::o;54604:140::-;;;;;:::o;48071:1272::-;48176:20;48199:12;;48176:35;;48240:1;48226:16;;:2;:16;;;;48218:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48417:21;48425:12;48417:7;:21::i;:::-;48416:22;48408:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;48499:12;48487:8;:24;;48479:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;48559:61;48589:1;48593:2;48597:12;48611:8;48559:21;:61::i;:::-;48629:30;48662:12;:16;48675:2;48662:16;;;;;;;;;;;;;;;48629:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48704:119;;;;;;;;48754:8;48724:11;:19;;;:39;;;;:::i;:::-;48704:119;;;;;;48807:8;48772:11;:24;;;:44;;;;:::i;:::-;48704:119;;;;;48685:12;:16;48698:2;48685:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48858:43;;;;;;;;48873:2;48858:43;;;;;;48884:15;48858:43;;;;;48830:11;:25;48842:12;48830:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48910:20;48933:12;48910:35;;48959:9;48954:281;48978:8;48974:1;:12;48954:281;;;49032:12;49028:2;49007:38;;49024:1;49007:38;;;;;;;;;;;;49072:59;49103:1;49107:2;49111:12;49125:5;49072:22;:59::i;:::-;49054:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;49213:14;;;;;:::i;:::-;;;;48988:3;;;;;:::i;:::-;;;;48954:281;;;;49258:12;49243;:27;;;;49277:60;49306:1;49310:2;49314:12;49328:8;49277:20;:60::i;:::-;48169:1174;;;48071:1272;;;:::o;20668:387::-;20728:4;20936:12;21003:7;20991:20;20983:28;;21046:1;21039:4;:8;21032:15;;;20668:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1179:5;1210:6;1204:13;1195:22;;1226:30;1250:5;1226:30;:::i;:::-;1125:137;;;;:::o;1268:::-;1313:5;1351:6;1338:20;1329:29;;1367:32;1393:5;1367:32;:::i;:::-;1268:137;;;;:::o;1411:141::-;1467:5;1498:6;1492:13;1483:22;;1514:32;1540:5;1514:32;:::i;:::-;1411:141;;;;:::o;1571:338::-;1626:5;1675:3;1668:4;1660:6;1656:17;1652:27;1642:122;;1683:79;;:::i;:::-;1642:122;1800:6;1787:20;1825:78;1899:3;1891:6;1884:4;1876:6;1872:17;1825:78;:::i;:::-;1816:87;;1632:277;1571:338;;;;:::o;1915:167::-;1975:5;2013:6;2000:20;1991:29;;2029:47;2070:5;2029:47;:::i;:::-;1915:167;;;;:::o;2088:201::-;2174:5;2205:6;2199:13;2190:22;;2221:62;2277:5;2221:62;:::i;:::-;2088:201;;;;:::o;2309:340::-;2365:5;2414:3;2407:4;2399:6;2395:17;2391:27;2381:122;;2422:79;;:::i;:::-;2381:122;2539:6;2526:20;2564:79;2639:3;2631:6;2624:4;2616:6;2612:17;2564:79;:::i;:::-;2555:88;;2371:278;2309:340;;;;:::o;2655:139::-;2701:5;2739:6;2726:20;2717:29;;2755:33;2782:5;2755:33;:::i;:::-;2655:139;;;;:::o;2800:143::-;2857:5;2888:6;2882:13;2873:22;;2904:33;2931:5;2904:33;:::i;:::-;2800:143;;;;:::o;2949:329::-;3008:6;3057:2;3045:9;3036:7;3032:23;3028:32;3025:119;;;3063:79;;:::i;:::-;3025:119;3183:1;3208:53;3253:7;3244:6;3233:9;3229:22;3208:53;:::i;:::-;3198:63;;3154:117;2949:329;;;;:::o;3284:474::-;3352:6;3360;3409:2;3397:9;3388:7;3384:23;3380:32;3377:119;;;3415:79;;:::i;:::-;3377:119;3535:1;3560:53;3605:7;3596:6;3585:9;3581:22;3560:53;:::i;:::-;3550:63;;3506:117;3662:2;3688:53;3733:7;3724:6;3713:9;3709:22;3688:53;:::i;:::-;3678:63;;3633:118;3284:474;;;;;:::o;3764:619::-;3841:6;3849;3857;3906:2;3894:9;3885:7;3881:23;3877:32;3874:119;;;3912:79;;:::i;:::-;3874:119;4032:1;4057:53;4102:7;4093:6;4082:9;4078:22;4057:53;:::i;:::-;4047:63;;4003:117;4159:2;4185:53;4230:7;4221:6;4210:9;4206:22;4185:53;:::i;:::-;4175:63;;4130:118;4287:2;4313:53;4358:7;4349:6;4338:9;4334:22;4313:53;:::i;:::-;4303:63;;4258:118;3764:619;;;;;:::o;4389:943::-;4484:6;4492;4500;4508;4557:3;4545:9;4536:7;4532:23;4528:33;4525:120;;;4564:79;;:::i;:::-;4525:120;4684:1;4709:53;4754:7;4745:6;4734:9;4730:22;4709:53;:::i;:::-;4699:63;;4655:117;4811:2;4837:53;4882:7;4873:6;4862:9;4858:22;4837:53;:::i;:::-;4827:63;;4782:118;4939:2;4965:53;5010:7;5001:6;4990:9;4986:22;4965:53;:::i;:::-;4955:63;;4910:118;5095:2;5084:9;5080:18;5067:32;5126:18;5118:6;5115:30;5112:117;;;5148:79;;:::i;:::-;5112:117;5253:62;5307:7;5298:6;5287:9;5283:22;5253:62;:::i;:::-;5243:72;;5038:287;4389:943;;;;;;;:::o;5338:468::-;5403:6;5411;5460:2;5448:9;5439:7;5435:23;5431:32;5428:119;;;5466:79;;:::i;:::-;5428:119;5586:1;5611:53;5656:7;5647:6;5636:9;5632:22;5611:53;:::i;:::-;5601:63;;5557:117;5713:2;5739:50;5781:7;5772:6;5761:9;5757:22;5739:50;:::i;:::-;5729:60;;5684:115;5338:468;;;;;:::o;5812:474::-;5880:6;5888;5937:2;5925:9;5916:7;5912:23;5908:32;5905:119;;;5943:79;;:::i;:::-;5905:119;6063:1;6088:53;6133:7;6124:6;6113:9;6109:22;6088:53;:::i;:::-;6078:63;;6034:117;6190:2;6216:53;6261:7;6252:6;6241:9;6237:22;6216:53;:::i;:::-;6206:63;;6161:118;5812:474;;;;;:::o;6292:323::-;6348:6;6397:2;6385:9;6376:7;6372:23;6368:32;6365:119;;;6403:79;;:::i;:::-;6365:119;6523:1;6548:50;6590:7;6581:6;6570:9;6566:22;6548:50;:::i;:::-;6538:60;;6494:114;6292:323;;;;:::o;6621:345::-;6688:6;6737:2;6725:9;6716:7;6712:23;6708:32;6705:119;;;6743:79;;:::i;:::-;6705:119;6863:1;6888:61;6941:7;6932:6;6921:9;6917:22;6888:61;:::i;:::-;6878:71;;6834:125;6621:345;;;;:::o;6972:327::-;7030:6;7079:2;7067:9;7058:7;7054:23;7050:32;7047:119;;;7085:79;;:::i;:::-;7047:119;7205:1;7230:52;7274:7;7265:6;7254:9;7250:22;7230:52;:::i;:::-;7220:62;;7176:116;6972:327;;;;:::o;7305:349::-;7374:6;7423:2;7411:9;7402:7;7398:23;7394:32;7391:119;;;7429:79;;:::i;:::-;7391:119;7549:1;7574:63;7629:7;7620:6;7609:9;7605:22;7574:63;:::i;:::-;7564:73;;7520:127;7305:349;;;;:::o;7660:357::-;7733:6;7782:2;7770:9;7761:7;7757:23;7753:32;7750:119;;;7788:79;;:::i;:::-;7750:119;7908:1;7933:67;7992:7;7983:6;7972:9;7968:22;7933:67;:::i;:::-;7923:77;;7879:131;7660:357;;;;:::o;8023:409::-;8122:6;8171:2;8159:9;8150:7;8146:23;8142:32;8139:119;;;8177:79;;:::i;:::-;8139:119;8297:1;8322:93;8407:7;8398:6;8387:9;8383:22;8322:93;:::i;:::-;8312:103;;8268:157;8023:409;;;;:::o;8438:509::-;8507:6;8556:2;8544:9;8535:7;8531:23;8527:32;8524:119;;;8562:79;;:::i;:::-;8524:119;8710:1;8699:9;8695:17;8682:31;8740:18;8732:6;8729:30;8726:117;;;8762:79;;:::i;:::-;8726:117;8867:63;8922:7;8913:6;8902:9;8898:22;8867:63;:::i;:::-;8857:73;;8653:287;8438:509;;;;:::o;8953:329::-;9012:6;9061:2;9049:9;9040:7;9036:23;9032:32;9029:119;;;9067:79;;:::i;:::-;9029:119;9187:1;9212:53;9257:7;9248:6;9237:9;9233:22;9212:53;:::i;:::-;9202:63;;9158:117;8953:329;;;;:::o;9288:351::-;9358:6;9407:2;9395:9;9386:7;9382:23;9378:32;9375:119;;;9413:79;;:::i;:::-;9375:119;9533:1;9558:64;9614:7;9605:6;9594:9;9590:22;9558:64;:::i;:::-;9548:74;;9504:128;9288:351;;;;:::o;9645:474::-;9713:6;9721;9770:2;9758:9;9749:7;9745:23;9741:32;9738:119;;;9776:79;;:::i;:::-;9738:119;9896:1;9921:53;9966:7;9957:6;9946:9;9942:22;9921:53;:::i;:::-;9911:63;;9867:117;10023:2;10049:53;10094:7;10085:6;10074:9;10070:22;10049:53;:::i;:::-;10039:63;;9994:118;9645:474;;;;;:::o;10125:118::-;10212:24;10230:5;10212:24;:::i;:::-;10207:3;10200:37;10125:118;;:::o;10249:109::-;10330:21;10345:5;10330:21;:::i;:::-;10325:3;10318:34;10249:109;;:::o;10364:360::-;10450:3;10478:38;10510:5;10478:38;:::i;:::-;10532:70;10595:6;10590:3;10532:70;:::i;:::-;10525:77;;10611:52;10656:6;10651:3;10644:4;10637:5;10633:16;10611:52;:::i;:::-;10688:29;10710:6;10688:29;:::i;:::-;10683:3;10679:39;10672:46;;10454:270;10364:360;;;;:::o;10730:364::-;10818:3;10846:39;10879:5;10846:39;:::i;:::-;10901:71;10965:6;10960:3;10901:71;:::i;:::-;10894:78;;10981:52;11026:6;11021:3;11014:4;11007:5;11003:16;10981:52;:::i;:::-;11058:29;11080:6;11058:29;:::i;:::-;11053:3;11049:39;11042:46;;10822:272;10730:364;;;;:::o;11100:366::-;11242:3;11263:67;11327:2;11322:3;11263:67;:::i;:::-;11256:74;;11339:93;11428:3;11339:93;:::i;:::-;11457:2;11452:3;11448:12;11441:19;;11100:366;;;:::o;11472:::-;11614:3;11635:67;11699:2;11694:3;11635:67;:::i;:::-;11628:74;;11711:93;11800:3;11711:93;:::i;:::-;11829:2;11824:3;11820:12;11813:19;;11472:366;;;:::o;11844:::-;11986:3;12007:67;12071:2;12066:3;12007:67;:::i;:::-;12000:74;;12083:93;12172:3;12083:93;:::i;:::-;12201:2;12196:3;12192:12;12185:19;;11844:366;;;:::o;12216:::-;12358:3;12379:67;12443:2;12438:3;12379:67;:::i;:::-;12372:74;;12455:93;12544:3;12455:93;:::i;:::-;12573:2;12568:3;12564:12;12557:19;;12216:366;;;:::o;12588:::-;12730:3;12751:67;12815:2;12810:3;12751:67;:::i;:::-;12744:74;;12827:93;12916:3;12827:93;:::i;:::-;12945:2;12940:3;12936:12;12929:19;;12588:366;;;:::o;12960:::-;13102:3;13123:67;13187:2;13182:3;13123:67;:::i;:::-;13116:74;;13199:93;13288:3;13199:93;:::i;:::-;13317:2;13312:3;13308:12;13301:19;;12960:366;;;:::o;13332:::-;13474:3;13495:67;13559:2;13554:3;13495:67;:::i;:::-;13488:74;;13571:93;13660:3;13571:93;:::i;:::-;13689:2;13684:3;13680:12;13673:19;;13332:366;;;:::o;13704:::-;13846:3;13867:67;13931:2;13926:3;13867:67;:::i;:::-;13860:74;;13943:93;14032:3;13943:93;:::i;:::-;14061:2;14056:3;14052:12;14045:19;;13704:366;;;:::o;14076:::-;14218:3;14239:67;14303:2;14298:3;14239:67;:::i;:::-;14232:74;;14315:93;14404:3;14315:93;:::i;:::-;14433:2;14428:3;14424:12;14417:19;;14076:366;;;:::o;14448:::-;14590:3;14611:67;14675:2;14670:3;14611:67;:::i;:::-;14604:74;;14687:93;14776:3;14687:93;:::i;:::-;14805:2;14800:3;14796:12;14789:19;;14448:366;;;:::o;14820:::-;14962:3;14983:67;15047:2;15042:3;14983:67;:::i;:::-;14976:74;;15059:93;15148:3;15059:93;:::i;:::-;15177:2;15172:3;15168:12;15161:19;;14820:366;;;:::o;15192:::-;15334:3;15355:67;15419:2;15414:3;15355:67;:::i;:::-;15348:74;;15431:93;15520:3;15431:93;:::i;:::-;15549:2;15544:3;15540:12;15533:19;;15192:366;;;:::o;15564:::-;15706:3;15727:67;15791:2;15786:3;15727:67;:::i;:::-;15720:74;;15803:93;15892:3;15803:93;:::i;:::-;15921:2;15916:3;15912:12;15905:19;;15564:366;;;:::o;15936:::-;16078:3;16099:67;16163:2;16158:3;16099:67;:::i;:::-;16092:74;;16175:93;16264:3;16175:93;:::i;:::-;16293:2;16288:3;16284:12;16277:19;;15936:366;;;:::o;16308:::-;16450:3;16471:67;16535:2;16530:3;16471:67;:::i;:::-;16464:74;;16547:93;16636:3;16547:93;:::i;:::-;16665:2;16660:3;16656:12;16649:19;;16308:366;;;:::o;16680:::-;16822:3;16843:67;16907:2;16902:3;16843:67;:::i;:::-;16836:74;;16919:93;17008:3;16919:93;:::i;:::-;17037:2;17032:3;17028:12;17021:19;;16680:366;;;:::o;17052:::-;17194:3;17215:67;17279:2;17274:3;17215:67;:::i;:::-;17208:74;;17291:93;17380:3;17291:93;:::i;:::-;17409:2;17404:3;17400:12;17393:19;;17052:366;;;:::o;17424:::-;17566:3;17587:67;17651:2;17646:3;17587:67;:::i;:::-;17580:74;;17663:93;17752:3;17663:93;:::i;:::-;17781:2;17776:3;17772:12;17765:19;;17424:366;;;:::o;17796:::-;17938:3;17959:67;18023:2;18018:3;17959:67;:::i;:::-;17952:74;;18035:93;18124:3;18035:93;:::i;:::-;18153:2;18148:3;18144:12;18137:19;;17796:366;;;:::o;18168:::-;18310:3;18331:67;18395:2;18390:3;18331:67;:::i;:::-;18324:74;;18407:93;18496:3;18407:93;:::i;:::-;18525:2;18520:3;18516:12;18509:19;;18168:366;;;:::o;18540:::-;18682:3;18703:67;18767:2;18762:3;18703:67;:::i;:::-;18696:74;;18779:93;18868:3;18779:93;:::i;:::-;18897:2;18892:3;18888:12;18881:19;;18540:366;;;:::o;18912:::-;19054:3;19075:67;19139:2;19134:3;19075:67;:::i;:::-;19068:74;;19151:93;19240:3;19151:93;:::i;:::-;19269:2;19264:3;19260:12;19253:19;;18912:366;;;:::o;19284:::-;19426:3;19447:67;19511:2;19506:3;19447:67;:::i;:::-;19440:74;;19523:93;19612:3;19523:93;:::i;:::-;19641:2;19636:3;19632:12;19625:19;;19284:366;;;:::o;19656:::-;19798:3;19819:67;19883:2;19878:3;19819:67;:::i;:::-;19812:74;;19895:93;19984:3;19895:93;:::i;:::-;20013:2;20008:3;20004:12;19997:19;;19656:366;;;:::o;20028:::-;20170:3;20191:67;20255:2;20250:3;20191:67;:::i;:::-;20184:74;;20267:93;20356:3;20267:93;:::i;:::-;20385:2;20380:3;20376:12;20369:19;;20028:366;;;:::o;20400:118::-;20487:24;20505:5;20487:24;:::i;:::-;20482:3;20475:37;20400:118;;:::o;20524:222::-;20617:4;20655:2;20644:9;20640:18;20632:26;;20668:71;20736:1;20725:9;20721:17;20712:6;20668:71;:::i;:::-;20524:222;;;;:::o;20752:640::-;20947:4;20985:3;20974:9;20970:19;20962:27;;20999:71;21067:1;21056:9;21052:17;21043:6;20999:71;:::i;:::-;21080:72;21148:2;21137:9;21133:18;21124:6;21080:72;:::i;:::-;21162;21230:2;21219:9;21215:18;21206:6;21162:72;:::i;:::-;21281:9;21275:4;21271:20;21266:2;21255:9;21251:18;21244:48;21309:76;21380:4;21371:6;21309:76;:::i;:::-;21301:84;;20752:640;;;;;;;:::o;21398:332::-;21519:4;21557:2;21546:9;21542:18;21534:26;;21570:71;21638:1;21627:9;21623:17;21614:6;21570:71;:::i;:::-;21651:72;21719:2;21708:9;21704:18;21695:6;21651:72;:::i;:::-;21398:332;;;;;:::o;21736:210::-;21823:4;21861:2;21850:9;21846:18;21838:26;;21874:65;21936:1;21925:9;21921:17;21912:6;21874:65;:::i;:::-;21736:210;;;;:::o;21952:313::-;22065:4;22103:2;22092:9;22088:18;22080:26;;22152:9;22146:4;22142:20;22138:1;22127:9;22123:17;22116:47;22180:78;22253:4;22244:6;22180:78;:::i;:::-;22172:86;;21952:313;;;;:::o;22271:419::-;22437:4;22475:2;22464:9;22460:18;22452:26;;22524:9;22518:4;22514:20;22510:1;22499:9;22495:17;22488:47;22552:131;22678:4;22552:131;:::i;:::-;22544:139;;22271:419;;;:::o;22696:::-;22862:4;22900:2;22889:9;22885:18;22877:26;;22949:9;22943:4;22939:20;22935:1;22924:9;22920:17;22913:47;22977:131;23103:4;22977:131;:::i;:::-;22969:139;;22696:419;;;:::o;23121:::-;23287:4;23325:2;23314:9;23310:18;23302:26;;23374:9;23368:4;23364:20;23360:1;23349:9;23345:17;23338:47;23402:131;23528:4;23402:131;:::i;:::-;23394:139;;23121:419;;;:::o;23546:::-;23712:4;23750:2;23739:9;23735:18;23727:26;;23799:9;23793:4;23789:20;23785:1;23774:9;23770:17;23763:47;23827:131;23953:4;23827:131;:::i;:::-;23819:139;;23546:419;;;:::o;23971:::-;24137:4;24175:2;24164:9;24160:18;24152:26;;24224:9;24218:4;24214:20;24210:1;24199:9;24195:17;24188:47;24252:131;24378:4;24252:131;:::i;:::-;24244:139;;23971:419;;;:::o;24396:::-;24562:4;24600:2;24589:9;24585:18;24577:26;;24649:9;24643:4;24639:20;24635:1;24624:9;24620:17;24613:47;24677:131;24803:4;24677:131;:::i;:::-;24669:139;;24396:419;;;:::o;24821:::-;24987:4;25025:2;25014:9;25010:18;25002:26;;25074:9;25068:4;25064:20;25060:1;25049:9;25045:17;25038:47;25102:131;25228:4;25102:131;:::i;:::-;25094:139;;24821:419;;;:::o;25246:::-;25412:4;25450:2;25439:9;25435:18;25427:26;;25499:9;25493:4;25489:20;25485:1;25474:9;25470:17;25463:47;25527:131;25653:4;25527:131;:::i;:::-;25519:139;;25246:419;;;:::o;25671:::-;25837:4;25875:2;25864:9;25860:18;25852:26;;25924:9;25918:4;25914:20;25910:1;25899:9;25895:17;25888:47;25952:131;26078:4;25952:131;:::i;:::-;25944:139;;25671:419;;;:::o;26096:::-;26262:4;26300:2;26289:9;26285:18;26277:26;;26349:9;26343:4;26339:20;26335:1;26324:9;26320:17;26313:47;26377:131;26503:4;26377:131;:::i;:::-;26369:139;;26096:419;;;:::o;26521:::-;26687:4;26725:2;26714:9;26710:18;26702:26;;26774:9;26768:4;26764:20;26760:1;26749:9;26745:17;26738:47;26802:131;26928:4;26802:131;:::i;:::-;26794:139;;26521:419;;;:::o;26946:::-;27112:4;27150:2;27139:9;27135:18;27127:26;;27199:9;27193:4;27189:20;27185:1;27174:9;27170:17;27163:47;27227:131;27353:4;27227:131;:::i;:::-;27219:139;;26946:419;;;:::o;27371:::-;27537:4;27575:2;27564:9;27560:18;27552:26;;27624:9;27618:4;27614:20;27610:1;27599:9;27595:17;27588:47;27652:131;27778:4;27652:131;:::i;:::-;27644:139;;27371:419;;;:::o;27796:::-;27962:4;28000:2;27989:9;27985:18;27977:26;;28049:9;28043:4;28039:20;28035:1;28024:9;28020:17;28013:47;28077:131;28203:4;28077:131;:::i;:::-;28069:139;;27796:419;;;:::o;28221:::-;28387:4;28425:2;28414:9;28410:18;28402:26;;28474:9;28468:4;28464:20;28460:1;28449:9;28445:17;28438:47;28502:131;28628:4;28502:131;:::i;:::-;28494:139;;28221:419;;;:::o;28646:::-;28812:4;28850:2;28839:9;28835:18;28827:26;;28899:9;28893:4;28889:20;28885:1;28874:9;28870:17;28863:47;28927:131;29053:4;28927:131;:::i;:::-;28919:139;;28646:419;;;:::o;29071:::-;29237:4;29275:2;29264:9;29260:18;29252:26;;29324:9;29318:4;29314:20;29310:1;29299:9;29295:17;29288:47;29352:131;29478:4;29352:131;:::i;:::-;29344:139;;29071:419;;;:::o;29496:::-;29662:4;29700:2;29689:9;29685:18;29677:26;;29749:9;29743:4;29739:20;29735:1;29724:9;29720:17;29713:47;29777:131;29903:4;29777:131;:::i;:::-;29769:139;;29496:419;;;:::o;29921:::-;30087:4;30125:2;30114:9;30110:18;30102:26;;30174:9;30168:4;30164:20;30160:1;30149:9;30145:17;30138:47;30202:131;30328:4;30202:131;:::i;:::-;30194:139;;29921:419;;;:::o;30346:::-;30512:4;30550:2;30539:9;30535:18;30527:26;;30599:9;30593:4;30589:20;30585:1;30574:9;30570:17;30563:47;30627:131;30753:4;30627:131;:::i;:::-;30619:139;;30346:419;;;:::o;30771:::-;30937:4;30975:2;30964:9;30960:18;30952:26;;31024:9;31018:4;31014:20;31010:1;30999:9;30995:17;30988:47;31052:131;31178:4;31052:131;:::i;:::-;31044:139;;30771:419;;;:::o;31196:::-;31362:4;31400:2;31389:9;31385:18;31377:26;;31449:9;31443:4;31439:20;31435:1;31424:9;31420:17;31413:47;31477:131;31603:4;31477:131;:::i;:::-;31469:139;;31196:419;;;:::o;31621:::-;31787:4;31825:2;31814:9;31810:18;31802:26;;31874:9;31868:4;31864:20;31860:1;31849:9;31845:17;31838:47;31902:131;32028:4;31902:131;:::i;:::-;31894:139;;31621:419;;;:::o;32046:::-;32212:4;32250:2;32239:9;32235:18;32227:26;;32299:9;32293:4;32289:20;32285:1;32274:9;32270:17;32263:47;32327:131;32453:4;32327:131;:::i;:::-;32319:139;;32046:419;;;:::o;32471:::-;32637:4;32675:2;32664:9;32660:18;32652:26;;32724:9;32718:4;32714:20;32710:1;32699:9;32695:17;32688:47;32752:131;32878:4;32752:131;:::i;:::-;32744:139;;32471:419;;;:::o;32896:222::-;32989:4;33027:2;33016:9;33012:18;33004:26;;33040:71;33108:1;33097:9;33093:17;33084:6;33040:71;:::i;:::-;32896:222;;;;:::o;33124:129::-;33158:6;33185:20;;:::i;:::-;33175:30;;33214:33;33242:4;33234:6;33214:33;:::i;:::-;33124:129;;;:::o;33259:75::-;33292:6;33325:2;33319:9;33309:19;;33259:75;:::o;33340:307::-;33401:4;33491:18;33483:6;33480:30;33477:56;;;33513:18;;:::i;:::-;33477:56;33551:29;33573:6;33551:29;:::i;:::-;33543:37;;33635:4;33629;33625:15;33617:23;;33340:307;;;:::o;33653:308::-;33715:4;33805:18;33797:6;33794:30;33791:56;;;33827:18;;:::i;:::-;33791:56;33865:29;33887:6;33865:29;:::i;:::-;33857:37;;33949:4;33943;33939:15;33931:23;;33653:308;;;:::o;33967:98::-;34018:6;34052:5;34046:12;34036:22;;33967:98;;;:::o;34071:99::-;34123:6;34157:5;34151:12;34141:22;;34071:99;;;:::o;34176:168::-;34259:11;34293:6;34288:3;34281:19;34333:4;34328:3;34324:14;34309:29;;34176:168;;;;:::o;34350:169::-;34434:11;34468:6;34463:3;34456:19;34508:4;34503:3;34499:14;34484:29;;34350:169;;;;:::o;34525:273::-;34565:3;34584:20;34602:1;34584:20;:::i;:::-;34579:25;;34618:20;34636:1;34618:20;:::i;:::-;34613:25;;34740:1;34704:34;34700:42;34697:1;34694:49;34691:75;;;34746:18;;:::i;:::-;34691:75;34790:1;34787;34783:9;34776:16;;34525:273;;;;:::o;34804:305::-;34844:3;34863:20;34881:1;34863:20;:::i;:::-;34858:25;;34897:20;34915:1;34897:20;:::i;:::-;34892:25;;35051:1;34983:66;34979:74;34976:1;34973:81;34970:107;;;35057:18;;:::i;:::-;34970:107;35101:1;35098;35094:9;35087:16;;34804:305;;;;:::o;35115:185::-;35155:1;35172:20;35190:1;35172:20;:::i;:::-;35167:25;;35206:20;35224:1;35206:20;:::i;:::-;35201:25;;35245:1;35235:35;;35250:18;;:::i;:::-;35235:35;35292:1;35289;35285:9;35280:14;;35115:185;;;;:::o;35306:348::-;35346:7;35369:20;35387:1;35369:20;:::i;:::-;35364:25;;35403:20;35421:1;35403:20;:::i;:::-;35398:25;;35591:1;35523:66;35519:74;35516:1;35513:81;35508:1;35501:9;35494:17;35490:105;35487:131;;;35598:18;;:::i;:::-;35487:131;35646:1;35643;35639:9;35628:20;;35306:348;;;;:::o;35660:191::-;35700:4;35720:20;35738:1;35720:20;:::i;:::-;35715:25;;35754:20;35772:1;35754:20;:::i;:::-;35749:25;;35793:1;35790;35787:8;35784:34;;;35798:18;;:::i;:::-;35784:34;35843:1;35840;35836:9;35828:17;;35660:191;;;;:::o;35857:::-;35897:4;35917:20;35935:1;35917:20;:::i;:::-;35912:25;;35951:20;35969:1;35951:20;:::i;:::-;35946:25;;35990:1;35987;35984:8;35981:34;;;35995:18;;:::i;:::-;35981:34;36040:1;36037;36033:9;36025:17;;35857:191;;;;:::o;36054:96::-;36091:7;36120:24;36138:5;36120:24;:::i;:::-;36109:35;;36054:96;;;:::o;36156:90::-;36190:7;36233:5;36226:13;36219:21;36208:32;;36156:90;;;:::o;36252:149::-;36288:7;36328:66;36321:5;36317:78;36306:89;;36252:149;;;:::o;36407:110::-;36458:7;36487:24;36505:5;36487:24;:::i;:::-;36476:35;;36407:110;;;:::o;36523:125::-;36589:7;36618:24;36636:5;36618:24;:::i;:::-;36607:35;;36523:125;;;:::o;36654:118::-;36691:7;36731:34;36724:5;36720:46;36709:57;;36654:118;;;:::o;36778:126::-;36815:7;36855:42;36848:5;36844:54;36833:65;;36778:126;;;:::o;36910:77::-;36947:7;36976:5;36965:16;;36910:77;;;:::o;36993:154::-;37077:6;37072:3;37067;37054:30;37139:1;37130:6;37125:3;37121:16;37114:27;36993:154;;;:::o;37153:307::-;37221:1;37231:113;37245:6;37242:1;37239:13;37231:113;;;37330:1;37325:3;37321:11;37315:18;37311:1;37306:3;37302:11;37295:39;37267:2;37264:1;37260:10;37255:15;;37231:113;;;37362:6;37359:1;37356:13;37353:101;;;37442:1;37433:6;37428:3;37424:16;37417:27;37353:101;37202:258;37153:307;;;:::o;37466:171::-;37505:3;37528:24;37546:5;37528:24;:::i;:::-;37519:33;;37574:4;37567:5;37564:15;37561:41;;;37582:18;;:::i;:::-;37561:41;37629:1;37622:5;37618:13;37611:20;;37466:171;;;:::o;37643:320::-;37687:6;37724:1;37718:4;37714:12;37704:22;;37771:1;37765:4;37761:12;37792:18;37782:81;;37848:4;37840:6;37836:17;37826:27;;37782:81;37910:2;37902:6;37899:14;37879:18;37876:38;37873:84;;;37929:18;;:::i;:::-;37873:84;37694:269;37643:320;;;:::o;37969:281::-;38052:27;38074:4;38052:27;:::i;:::-;38044:6;38040:40;38182:6;38170:10;38167:22;38146:18;38134:10;38131:34;38128:62;38125:88;;;38193:18;;:::i;:::-;38125:88;38233:10;38229:2;38222:22;38012:238;37969:281;;:::o;38256:233::-;38295:3;38318:24;38336:5;38318:24;:::i;:::-;38309:33;;38364:66;38357:5;38354:77;38351:103;;;38434:18;;:::i;:::-;38351:103;38481:1;38474:5;38470:13;38463:20;;38256:233;;;:::o;38495:180::-;38543:77;38540:1;38533:88;38640:4;38637:1;38630:15;38664:4;38661:1;38654:15;38681:180;38729:77;38726:1;38719:88;38826:4;38823:1;38816:15;38850:4;38847:1;38840:15;38867:180;38915:77;38912:1;38905:88;39012:4;39009:1;39002:15;39036:4;39033:1;39026:15;39053:180;39101:77;39098:1;39091:88;39198:4;39195:1;39188:15;39222:4;39219:1;39212:15;39239:117;39348:1;39345;39338:12;39362:117;39471:1;39468;39461:12;39485:117;39594:1;39591;39584:12;39608:117;39717:1;39714;39707:12;39731:102;39772:6;39823:2;39819:7;39814:2;39807:5;39803:14;39799:28;39789:38;;39731:102;;;:::o;39839:221::-;39979:34;39975:1;39967:6;39963:14;39956:58;40048:4;40043:2;40035:6;40031:15;40024:29;39839:221;:::o;40066:225::-;40206:34;40202:1;40194:6;40190:14;40183:58;40275:8;40270:2;40262:6;40258:15;40251:33;40066:225;:::o;40297:229::-;40437:34;40433:1;40425:6;40421:14;40414:58;40506:12;40501:2;40493:6;40489:15;40482:37;40297:229;:::o;40532:222::-;40672:34;40668:1;40660:6;40656:14;40649:58;40741:5;40736:2;40728:6;40724:15;40717:30;40532:222;:::o;40760:221::-;40900:34;40896:1;40888:6;40884:14;40877:58;40969:4;40964:2;40956:6;40952:15;40945:29;40760:221;:::o;40987:224::-;41127:34;41123:1;41115:6;41111:14;41104:58;41196:7;41191:2;41183:6;41179:15;41172:32;40987:224;:::o;41217:221::-;41357:34;41353:1;41345:6;41341:14;41334:58;41426:4;41421:2;41413:6;41409:15;41402:29;41217:221;:::o;41444:167::-;41584:19;41580:1;41572:6;41568:14;41561:43;41444:167;:::o;41617:244::-;41757:34;41753:1;41745:6;41741:14;41734:58;41826:27;41821:2;41813:6;41809:15;41802:52;41617:244;:::o;41867:230::-;42007:34;42003:1;41995:6;41991:14;41984:58;42076:13;42071:2;42063:6;42059:15;42052:38;41867:230;:::o;42103:225::-;42243:34;42239:1;42231:6;42227:14;42220:58;42312:8;42307:2;42299:6;42295:15;42288:33;42103:225;:::o;42334:182::-;42474:34;42470:1;42462:6;42458:14;42451:58;42334:182;:::o;42522:176::-;42662:28;42658:1;42650:6;42646:14;42639:52;42522:176;:::o;42704:237::-;42844:34;42840:1;42832:6;42828:14;42821:58;42913:20;42908:2;42900:6;42896:15;42889:45;42704:237;:::o;42947:221::-;43087:34;43083:1;43075:6;43071:14;43064:58;43156:4;43151:2;43143:6;43139:15;43132:29;42947:221;:::o;43174:238::-;43314:34;43310:1;43302:6;43298:14;43291:58;43383:21;43378:2;43370:6;43366:15;43359:46;43174:238;:::o;43418:179::-;43558:31;43554:1;43546:6;43542:14;43535:55;43418:179;:::o;43603:220::-;43743:34;43739:1;43731:6;43727:14;43720:58;43812:3;43807:2;43799:6;43795:15;43788:28;43603:220;:::o;43829:174::-;43969:26;43965:1;43957:6;43953:14;43946:50;43829:174;:::o;44009:233::-;44149:34;44145:1;44137:6;44133:14;44126:58;44218:16;44213:2;44205:6;44201:15;44194:41;44009:233;:::o;44248:181::-;44388:33;44384:1;44376:6;44372:14;44365:57;44248:181;:::o;44435:234::-;44575:34;44571:1;44563:6;44559:14;44552:58;44644:17;44639:2;44631:6;44627:15;44620:42;44435:234;:::o;44675:173::-;44815:25;44811:1;44803:6;44799:14;44792:49;44675:173;:::o;44854:232::-;44994:34;44990:1;44982:6;44978:14;44971:58;45063:15;45058:2;45050:6;45046:15;45039:40;44854:232;:::o;45092:221::-;45232:34;45228:1;45220:6;45216:14;45209:58;45301:4;45296:2;45288:6;45284:15;45277:29;45092:221;:::o;45319:122::-;45392:24;45410:5;45392:24;:::i;:::-;45385:5;45382:35;45372:63;;45431:1;45428;45421:12;45372:63;45319:122;:::o;45447:116::-;45517:21;45532:5;45517:21;:::i;:::-;45510:5;45507:32;45497:60;;45553:1;45550;45543:12;45497:60;45447:116;:::o;45569:120::-;45641:23;45658:5;45641:23;:::i;:::-;45634:5;45631:34;45621:62;;45679:1;45676;45669:12;45621:62;45569:120;:::o;45695:150::-;45782:38;45814:5;45782:38;:::i;:::-;45775:5;45772:49;45762:77;;45835:1;45832;45825:12;45762:77;45695:150;:::o;45851:180::-;45953:53;46000:5;45953:53;:::i;:::-;45946:5;45943:64;45933:92;;46021:1;46018;46011:12;45933:92;45851:180;:::o;46037:122::-;46110:24;46128:5;46110:24;:::i;:::-;46103:5;46100:35;46090:63;;46149:1;46146;46139:12;46090:63;46037:122;:::o

Swarm Source

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