ETH Price: $2,880.18 (-4.95%)
Gas: 2 Gwei

Token

ETH Force (ETHF)
 

Overview

Max Total Supply

500 ETHF

Holders

68

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
jaeyong.eth
Balance
25 ETHF
0x2d5d08d4359c4005aa3326b49c96fba32dbbbc4e
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:
ETHForce

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-01-29
*/

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

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

// File: contracts/Application.sol

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

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

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


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

pragma solidity ^0.8.0;

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

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

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

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

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

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

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol



pragma solidity ^0.8.0;









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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 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 {}
}
// File: contracts/Application.sol

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

pragma solidity ^0.8.7;

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

    Counters.Counter private tokenCounter;

    string private baseURI = "ipfs://QmeJAGEw33tP8wW5gEWS5tR8WAQqivmvaPNYWEyoniHfkF";

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

    uint256 public constant PUBLIC_SALE_PRICE = 0.02 ether;
    uint256 public constant NUM_FREE_MINTS = 500;
    bool public isPublicSaleActive = true;
    address RESERVE_VAULT_WALLET = 0x120a4A777ba16eBC187587CDd6691425b3339871; 



    // ============ ACCESS CONTROL/SANITY MODIFIERS ============
    constructor(string memory name, string memory symbol) ERC721A(name, symbol, 100, maxSupply) {
    }
    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(uint256 numberOfTokens) {
        require(
            totalSupply() + numberOfTokens <=
                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"
        );
        }
        _;
    }


    

    // ============ 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
    function freeMint(uint256 numberOfTokens)
        external
        nonReentrant
        publicSaleActive
        canMintNFTs(numberOfTokens)
        maxMintsPerTX(numberOfTokens)
        freeMintsAvailable(numberOfTokens)
    {
        _safeMint(msg.sender, numberOfTokens);
    }




    // ============ 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 setIsPublicSaleActive(bool _isPublicSaleActive)
        external
        onlyOwner
    {
        isPublicSaleActive = _isPublicSaleActive;
    }


    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 See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(tokenId), "Nonexistent token");

        //string memory baseURI = _baseURI();
        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,8), 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":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"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":"numberOfTokens","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","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"}]

60c060405260008055600060075560405180606001604052806035815260200162004fa660359139600b90805190602001906200003e929190620002b9565b506001600c60006101000a81548160ff02191690831515021790555073120a4a777ba16ebc187587cdd6691425b3339871600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000bc57600080fd5b5060405162004fdb38038062004fdb8339818101604052810190620000e29190620003e7565b818160646103e8600081116200012f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200012690620004dc565b60405180910390fd5b6000821162000175576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016c90620004ba565b60405180910390fd5b83600190805190602001906200018d929190620002b9565b508260029080519060200190620001a6929190620002b9565b508160a08181525050806080818152505050505050620001db620001cf620001eb60201b60201c565b620001f360201b60201c565b6001600981905550505062000731565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002c790620005a4565b90600052602060002090601f016020900481019282620002eb576000855562000337565b82601f106200030657805160ff191683800117855562000337565b8280016001018555821562000337579182015b828111156200033657825182559160200191906001019062000319565b5b5090506200034691906200034a565b5090565b5b80821115620003655760008160009055506001016200034b565b5090565b6000620003806200037a8462000527565b620004fe565b9050828152602081018484840111156200039f576200039e62000673565b5b620003ac8482856200056e565b509392505050565b600082601f830112620003cc57620003cb6200066e565b5b8151620003de84826020860162000369565b91505092915050565b600080604083850312156200040157620004006200067d565b5b600083015167ffffffffffffffff81111562000422576200042162000678565b5b6200043085828601620003b4565b925050602083015167ffffffffffffffff81111562000454576200045362000678565b5b6200046285828601620003b4565b9150509250929050565b60006200047b6027836200055d565b9150620004888262000693565b604082019050919050565b6000620004a2602e836200055d565b9150620004af82620006e2565b604082019050919050565b60006020820190508181036000830152620004d5816200046c565b9050919050565b60006020820190508181036000830152620004f78162000493565b9050919050565b60006200050a6200051d565b9050620005188282620005da565b919050565b6000604051905090565b600067ffffffffffffffff8211156200054557620005446200063f565b5b620005508262000682565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200058e57808201518184015260208101905062000571565b838111156200059e576000848401525b50505050565b60006002820490506001821680620005bd57607f821691505b60208210811415620005d457620005d362000610565b5b50919050565b620005e58262000682565b810181811067ffffffffffffffff821117156200060757620006066200063f565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a051614844620007626000396000818161240901528181612432015261296a0152600050506148446000f3fe6080604052600436106101ee5760003560e01c80636352211e1161010d578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd146106dd578063d5abeb011461071a578063d7224ba014610745578063e985e9c514610770578063f2fde38b146107ad576101ee565b8063a0712d6814610644578063a22cb46514610660578063b88d4fde14610689578063c6a91b42146106b2576101ee565b80637c928fe9116100dc5780637c928fe91461059a5780638da5cb5b146105c357806395d89b41146105ee578063982d669e14610619576101ee565b80636352211e146104de57806370a082311461051b578063714c539814610558578063715018a614610583576101ee565b806328cad13d1161018557806342842e0e1161015457806342842e0e1461042657806349df728c1461044f5780634f6ccce71461047857806355f804b3146104b5576101ee565b806328cad13d1461036b5780632a55205a146103945780632f745c59146103d25780633ccfd60b1461040f576101ee565b8063095ea7b3116101c1578063095ea7b3146102c357806318160ddd146102ec5780631e84c4131461031757806323b872dd14610342576101ee565b806301ffc9a7146101f357806306fdde031461023057806307e89ec01461025b578063081812fc14610286575b600080fd5b3480156101ff57600080fd5b5061021a6004803603810190610215919061321d565b6107d6565b6040516102279190613844565b60405180910390f35b34801561023c57600080fd5b50610245610850565b604051610252919061385f565b60405180910390f35b34801561026757600080fd5b506102706108e2565b60405161027d9190613bc1565b60405180910390f35b34801561029257600080fd5b506102ad60048036038101906102a891906132ed565b6108ed565b6040516102ba91906137b4565b60405180910390f35b3480156102cf57600080fd5b506102ea60048036038101906102e59190613183565b610972565b005b3480156102f857600080fd5b50610301610a8b565b60405161030e9190613bc1565b60405180910390f35b34801561032357600080fd5b5061032c610a94565b6040516103399190613844565b60405180910390f35b34801561034e57600080fd5b506103696004803603810190610364919061306d565b610aa7565b005b34801561037757600080fd5b50610392600480360381019061038d91906131c3565b610ab7565b005b3480156103a057600080fd5b506103bb60048036038101906103b69190613347565b610b50565b6040516103c992919061381b565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f49190613183565b610bbc565b6040516104069190613bc1565b60405180910390f35b34801561041b57600080fd5b50610424610dba565b005b34801561043257600080fd5b5061044d6004803603810190610448919061306d565b610e85565b005b34801561045b57600080fd5b5061047660048036038101906104719190613277565b610ea5565b005b34801561048457600080fd5b5061049f600480360381019061049a91906132ed565b611040565b6040516104ac9190613bc1565b60405180910390f35b3480156104c157600080fd5b506104dc60048036038101906104d791906132a4565b611093565b005b3480156104ea57600080fd5b50610505600480360381019061050091906132ed565b611129565b60405161051291906137b4565b60405180910390f35b34801561052757600080fd5b50610542600480360381019061053d9190613000565b61113f565b60405161054f9190613bc1565b60405180910390f35b34801561056457600080fd5b5061056d611228565b60405161057a919061385f565b60405180910390f35b34801561058f57600080fd5b506105986112ba565b005b3480156105a657600080fd5b506105c160048036038101906105bc91906132ed565b611342565b005b3480156105cf57600080fd5b506105d86114ec565b6040516105e591906137b4565b60405180910390f35b3480156105fa57600080fd5b50610603611516565b604051610610919061385f565b60405180910390f35b34801561062557600080fd5b5061062e6115a8565b60405161063b9190613bc1565b60405180910390f35b61065e600480360381019061065991906132ed565b6115ae565b005b34801561066c57600080fd5b5061068760048036038101906106829190613143565b611769565b005b34801561069557600080fd5b506106b060048036038101906106ab91906130c0565b6118ea565b005b3480156106be57600080fd5b506106c7611946565b6040516106d49190613bc1565b60405180910390f35b3480156106e957600080fd5b5061070460048036038101906106ff91906132ed565b61194b565b604051610711919061385f565b60405180910390f35b34801561072657600080fd5b5061072f611a27565b60405161073c9190613bc1565b60405180910390f35b34801561075157600080fd5b5061075a611a2d565b6040516107679190613bc1565b60405180910390f35b34801561077c57600080fd5b506107976004803603810190610792919061302d565b611a33565b6040516107a49190613844565b60405180910390f35b3480156107b957600080fd5b506107d460048036038101906107cf9190613000565b611ac7565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610849575061084882611bbf565b5b9050919050565b60606001805461085f90613f38565b80601f016020809104026020016040519081016040528092919081815260200182805461088b90613f38565b80156108d85780601f106108ad576101008083540402835291602001916108d8565b820191906000526020600020905b8154815290600101906020018083116108bb57829003601f168201915b5050505050905090565b66470de4df82000081565b60006108f882611d09565b610937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092e90613b81565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097d82611129565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e590613a41565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a0d611d16565b73ffffffffffffffffffffffffffffffffffffffff161480610a3c5750610a3b81610a36611d16565b611a33565b5b610a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7290613981565b60405180910390fd5b610a86838383611d1e565b505050565b60008054905090565b600c60009054906101000a900460ff1681565b610ab2838383611dd0565b505050565b610abf611d16565b73ffffffffffffffffffffffffffffffffffffffff16610add6114ec565b73ffffffffffffffffffffffffffffffffffffffff1614610b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2a906139e1565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b600080610b5c84611d09565b610b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9290613961565b60405180910390fd5b30610bb1610baa856008612389565b606461239f565b915091509250929050565b6000610bc78361113f565b8210610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff90613881565b60405180910390fd5b6000610c12610a8b565b905060008060005b83811015610d78576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d0c57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d645786841415610d55578195505050505050610db4565b8380610d6090613f9b565b9450505b508080610d7090613f9b565b915050610c1a565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab90613b01565b60405180910390fd5b92915050565b610dc2611d16565b73ffffffffffffffffffffffffffffffffffffffff16610de06114ec565b73ffffffffffffffffffffffffffffffffffffffff1614610e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2d906139e1565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e81573d6000803e3d6000fd5b5050565b610ea0838383604051806020016040528060008152506118ea565b505050565b610ead611d16565b73ffffffffffffffffffffffffffffffffffffffff16610ecb6114ec565b73ffffffffffffffffffffffffffffffffffffffff1614610f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f18906139e1565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f5c91906137b4565b60206040518083038186803b158015610f7457600080fd5b505afa158015610f88573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fac919061331a565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610fe992919061381b565b602060405180830381600087803b15801561100357600080fd5b505af1158015611017573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061103b91906131f0565b505050565b600061104a610a8b565b821061108b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611082906138e1565b60405180910390fd5b819050919050565b61109b611d16565b73ffffffffffffffffffffffffffffffffffffffff166110b96114ec565b73ffffffffffffffffffffffffffffffffffffffff161461110f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611106906139e1565b60405180910390fd5b80600b9080519060200190611125929190612d9b565b5050565b6000611134826123b5565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a7906139a1565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600b805461123790613f38565b80601f016020809104026020016040519081016040528092919081815260200182805461126390613f38565b80156112b05780601f10611285576101008083540402835291602001916112b0565b820191906000526020600020905b81548152906001019060200180831161129357829003601f168201915b5050505050905090565b6112c2611d16565b73ffffffffffffffffffffffffffffffffffffffff166112e06114ec565b73ffffffffffffffffffffffffffffffffffffffff1614611336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132d906139e1565b60405180910390fd5b61134060006125b8565b565b60026009541415611388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137f90613b21565b60405180910390fd5b6002600981905550600c60009054906101000a900460ff166113df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d690613b61565b60405180910390fd5b806103e8816113ec610a8b565b6113f69190613ce1565b1115611437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142e90613901565b60405180910390fd5b81600581111561147c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147390613941565b60405180910390fd5b826101f481611489610a8b565b6114939190613ce1565b11156114d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cb90613ac1565b60405180910390fd5b6114de338561267e565b505050600160098190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461152590613f38565b80601f016020809104026020016040519081016040528092919081815260200182805461155190613f38565b801561159e5780601f106115735761010080835404028352916020019161159e565b820191906000526020600020905b81548152906001019060200180831161158157829003601f168201915b5050505050905090565b6101f481565b600260095414156115f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115eb90613b21565b60405180910390fd5b600260098190555066470de4df820000816101f4611610610a8b565b1115611664573481836116239190613d68565b14611663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165a90613ae1565b60405180910390fd5b5b600c60009054906101000a900460ff166116b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116aa90613b61565b60405180910390fd5b826103e8816116c0610a8b565b6116ca9190613ce1565b111561170b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170290613901565b60405180910390fd5b836005811115611750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174790613941565b60405180910390fd5b61175a338661267e565b50505050600160098190555050565b611771611d16565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d690613a01565b60405180910390fd5b80600660006117ec611d16565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611899611d16565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118de9190613844565b60405180910390a35050565b6118f5848484611dd0565b6119018484848461269c565b611940576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193790613a61565b60405180910390fd5b50505050565b600581565b606061195682611d09565b611995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198c90613961565b60405180910390fd5b600b80546119a290613f38565b80601f01602080910402602001604051908101604052809291908181526020018280546119ce90613f38565b8015611a1b5780601f106119f057610100808354040283529160200191611a1b565b820191906000526020600020905b8154815290600101906020018083116119fe57829003601f168201915b50505050509050919050565b6103e881565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611acf611d16565b73ffffffffffffffffffffffffffffffffffffffff16611aed6114ec565b73ffffffffffffffffffffffffffffffffffffffff1614611b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3a906139e1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baa906138a1565b60405180910390fd5b611bbc816125b8565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c8a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611cf257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611d025750611d0182612833565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611ddb826123b5565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611e02611d16565b73ffffffffffffffffffffffffffffffffffffffff161480611e5e5750611e27611d16565b73ffffffffffffffffffffffffffffffffffffffff16611e46846108ed565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e7a5750611e798260000151611e74611d16565b611a33565b5b905080611ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb390613a21565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f25906139c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9590613921565b60405180910390fd5b611fab858585600161289d565b611fbb6000848460000151611d1e565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166120299190613dc2565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166120cd9190613c9b565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846121d39190613ce1565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156123195761224981611d09565b15612318576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461238186868660016128a3565b505050505050565b600081836123979190613d68565b905092915050565b600081836123ad9190613d37565b905092915050565b6123bd612e21565b6123c682611d09565b612405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fc906138c1565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106124695760017f00000000000000000000000000000000000000000000000000000000000000008461245c9190613df6565b6124669190613ce1565b90505b60008390505b818110612577576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612563578093505050506125b3565b50808061256f90613f0e565b91505061246f565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125aa90613b41565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126988282604051806020016040528060008152506128a9565b5050565b60006126bd8473ffffffffffffffffffffffffffffffffffffffff16612d88565b15612826578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126e6611d16565b8786866040518563ffffffff1660e01b815260040161270894939291906137cf565b602060405180830381600087803b15801561272257600080fd5b505af192505050801561275357506040513d601f19601f82011682018060405250810190612750919061324a565b60015b6127d6573d8060008114612783576040519150601f19603f3d011682016040523d82523d6000602084013e612788565b606091505b506000815114156127ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c590613a61565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061282b565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561291f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291690613aa1565b60405180910390fd5b61292881611d09565b15612968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295f90613a81565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008311156129cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c290613ba1565b60405180910390fd5b6129d8600085838661289d565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612ad59190613c9b565b6fffffffffffffffffffffffffffffffff168152602001858360200151612afc9190613c9b565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612d6b57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d0b600088848861269c565b612d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4190613a61565b60405180910390fd5b8180612d5590613f9b565b9250508080612d6390613f9b565b915050612c9a565b5080600081905550612d8060008785886128a3565b505050505050565b600080823b905060008111915050919050565b828054612da790613f38565b90600052602060002090601f016020900481019282612dc95760008555612e10565b82601f10612de257805160ff1916838001178555612e10565b82800160010185558215612e10579182015b82811115612e0f578251825591602001919060010190612df4565b5b509050612e1d9190612e5b565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612e74576000816000905550600101612e5c565b5090565b6000612e8b612e8684613c01565b613bdc565b905082815260208101848484011115612ea757612ea66140a5565b5b612eb2848285613ecc565b509392505050565b6000612ecd612ec884613c32565b613bdc565b905082815260208101848484011115612ee957612ee86140a5565b5b612ef4848285613ecc565b509392505050565b600081359050612f0b8161479b565b92915050565b600081359050612f20816147b2565b92915050565b600081519050612f35816147b2565b92915050565b600081359050612f4a816147c9565b92915050565b600081519050612f5f816147c9565b92915050565b600082601f830112612f7a57612f796140a0565b5b8135612f8a848260208601612e78565b91505092915050565b600081359050612fa2816147e0565b92915050565b600082601f830112612fbd57612fbc6140a0565b5b8135612fcd848260208601612eba565b91505092915050565b600081359050612fe5816147f7565b92915050565b600081519050612ffa816147f7565b92915050565b600060208284031215613016576130156140af565b5b600061302484828501612efc565b91505092915050565b60008060408385031215613044576130436140af565b5b600061305285828601612efc565b925050602061306385828601612efc565b9150509250929050565b600080600060608486031215613086576130856140af565b5b600061309486828701612efc565b93505060206130a586828701612efc565b92505060406130b686828701612fd6565b9150509250925092565b600080600080608085870312156130da576130d96140af565b5b60006130e887828801612efc565b94505060206130f987828801612efc565b935050604061310a87828801612fd6565b925050606085013567ffffffffffffffff81111561312b5761312a6140aa565b5b61313787828801612f65565b91505092959194509250565b6000806040838503121561315a576131596140af565b5b600061316885828601612efc565b925050602061317985828601612f11565b9150509250929050565b6000806040838503121561319a576131996140af565b5b60006131a885828601612efc565b92505060206131b985828601612fd6565b9150509250929050565b6000602082840312156131d9576131d86140af565b5b60006131e784828501612f11565b91505092915050565b600060208284031215613206576132056140af565b5b600061321484828501612f26565b91505092915050565b600060208284031215613233576132326140af565b5b600061324184828501612f3b565b91505092915050565b6000602082840312156132605761325f6140af565b5b600061326e84828501612f50565b91505092915050565b60006020828403121561328d5761328c6140af565b5b600061329b84828501612f93565b91505092915050565b6000602082840312156132ba576132b96140af565b5b600082013567ffffffffffffffff8111156132d8576132d76140aa565b5b6132e484828501612fa8565b91505092915050565b600060208284031215613303576133026140af565b5b600061331184828501612fd6565b91505092915050565b6000602082840312156133305761332f6140af565b5b600061333e84828501612feb565b91505092915050565b6000806040838503121561335e5761335d6140af565b5b600061336c85828601612fd6565b925050602061337d85828601612fd6565b9150509250929050565b61339081613e2a565b82525050565b61339f81613e3c565b82525050565b60006133b082613c63565b6133ba8185613c79565b93506133ca818560208601613edb565b6133d3816140b4565b840191505092915050565b60006133e982613c6e565b6133f38185613c8a565b9350613403818560208601613edb565b61340c816140b4565b840191505092915050565b6000613424602283613c8a565b915061342f826140c5565b604082019050919050565b6000613447602683613c8a565b915061345282614114565b604082019050919050565b600061346a602a83613c8a565b915061347582614163565b604082019050919050565b600061348d602383613c8a565b9150613498826141b2565b604082019050919050565b60006134b0602283613c8a565b91506134bb82614201565b604082019050919050565b60006134d3602583613c8a565b91506134de82614250565b604082019050919050565b60006134f6602283613c8a565b91506135018261429f565b604082019050919050565b6000613519601183613c8a565b9150613524826142ee565b602082019050919050565b600061353c603983613c8a565b915061354782614317565b604082019050919050565b600061355f602b83613c8a565b915061356a82614366565b604082019050919050565b6000613582602683613c8a565b915061358d826143b5565b604082019050919050565b60006135a5602083613c8a565b91506135b082614404565b602082019050919050565b60006135c8601a83613c8a565b91506135d38261442d565b602082019050919050565b60006135eb603283613c8a565b91506135f682614456565b604082019050919050565b600061360e602283613c8a565b9150613619826144a5565b604082019050919050565b6000613631603383613c8a565b915061363c826144f4565b604082019050919050565b6000613654601d83613c8a565b915061365f82614543565b602082019050919050565b6000613677602183613c8a565b91506136828261456c565b604082019050919050565b600061369a601c83613c8a565b91506136a5826145bb565b602082019050919050565b60006136bd601883613c8a565b91506136c8826145e4565b602082019050919050565b60006136e0602e83613c8a565b91506136eb8261460d565b604082019050919050565b6000613703601f83613c8a565b915061370e8261465c565b602082019050919050565b6000613726602f83613c8a565b915061373182614685565b604082019050919050565b6000613749601783613c8a565b9150613754826146d4565b602082019050919050565b600061376c602d83613c8a565b9150613777826146fd565b604082019050919050565b600061378f602283613c8a565b915061379a8261474c565b604082019050919050565b6137ae81613ec2565b82525050565b60006020820190506137c96000830184613387565b92915050565b60006080820190506137e46000830187613387565b6137f16020830186613387565b6137fe60408301856137a5565b818103606083015261381081846133a5565b905095945050505050565b60006040820190506138306000830185613387565b61383d60208301846137a5565b9392505050565b60006020820190506138596000830184613396565b92915050565b6000602082019050818103600083015261387981846133de565b905092915050565b6000602082019050818103600083015261389a81613417565b9050919050565b600060208201905081810360008301526138ba8161343a565b9050919050565b600060208201905081810360008301526138da8161345d565b9050919050565b600060208201905081810360008301526138fa81613480565b9050919050565b6000602082019050818103600083015261391a816134a3565b9050919050565b6000602082019050818103600083015261393a816134c6565b9050919050565b6000602082019050818103600083015261395a816134e9565b9050919050565b6000602082019050818103600083015261397a8161350c565b9050919050565b6000602082019050818103600083015261399a8161352f565b9050919050565b600060208201905081810360008301526139ba81613552565b9050919050565b600060208201905081810360008301526139da81613575565b9050919050565b600060208201905081810360008301526139fa81613598565b9050919050565b60006020820190508181036000830152613a1a816135bb565b9050919050565b60006020820190508181036000830152613a3a816135de565b9050919050565b60006020820190508181036000830152613a5a81613601565b9050919050565b60006020820190508181036000830152613a7a81613624565b9050919050565b60006020820190508181036000830152613a9a81613647565b9050919050565b60006020820190508181036000830152613aba8161366a565b9050919050565b60006020820190508181036000830152613ada8161368d565b9050919050565b60006020820190508181036000830152613afa816136b0565b9050919050565b60006020820190508181036000830152613b1a816136d3565b9050919050565b60006020820190508181036000830152613b3a816136f6565b9050919050565b60006020820190508181036000830152613b5a81613719565b9050919050565b60006020820190508181036000830152613b7a8161373c565b9050919050565b60006020820190508181036000830152613b9a8161375f565b9050919050565b60006020820190508181036000830152613bba81613782565b9050919050565b6000602082019050613bd660008301846137a5565b92915050565b6000613be6613bf7565b9050613bf28282613f6a565b919050565b6000604051905090565b600067ffffffffffffffff821115613c1c57613c1b614071565b5b613c25826140b4565b9050602081019050919050565b600067ffffffffffffffff821115613c4d57613c4c614071565b5b613c56826140b4565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613ca682613e86565b9150613cb183613e86565b9250826fffffffffffffffffffffffffffffffff03821115613cd657613cd5613fe4565b5b828201905092915050565b6000613cec82613ec2565b9150613cf783613ec2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d2c57613d2b613fe4565b5b828201905092915050565b6000613d4282613ec2565b9150613d4d83613ec2565b925082613d5d57613d5c614013565b5b828204905092915050565b6000613d7382613ec2565b9150613d7e83613ec2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613db757613db6613fe4565b5b828202905092915050565b6000613dcd82613e86565b9150613dd883613e86565b925082821015613deb57613dea613fe4565b5b828203905092915050565b6000613e0182613ec2565b9150613e0c83613ec2565b925082821015613e1f57613e1e613fe4565b5b828203905092915050565b6000613e3582613ea2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613e7f82613e2a565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ef9578082015181840152602081019050613ede565b83811115613f08576000848401525b50505050565b6000613f1982613ec2565b91506000821415613f2d57613f2c613fe4565b5b600182039050919050565b60006002820490506001821680613f5057607f821691505b60208210811415613f6457613f63614042565b5b50919050565b613f73826140b4565b810181811067ffffffffffffffff82111715613f9257613f91614071565b5b80604052505050565b6000613fa682613ec2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fd957613fd8613fe4565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682066726565206d696e74732072656d61696e00000000600082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6147a481613e2a565b81146147af57600080fd5b50565b6147bb81613e3c565b81146147c657600080fd5b50565b6147d281613e48565b81146147dd57600080fd5b50565b6147e981613e74565b81146147f457600080fd5b50565b61480081613ec2565b811461480b57600080fd5b5056fea264697066735822122096a6a8d7d36180669995fdf379840593f99a86a6395d25f79f567a79ad909f2264736f6c63430008070033697066733a2f2f516d654a41474577333374503877573567455753357452385741517169766d7661504e595745796f6e6948666b4600000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000945544820466f726365000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044554484600000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80636352211e1161010d578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd146106dd578063d5abeb011461071a578063d7224ba014610745578063e985e9c514610770578063f2fde38b146107ad576101ee565b8063a0712d6814610644578063a22cb46514610660578063b88d4fde14610689578063c6a91b42146106b2576101ee565b80637c928fe9116100dc5780637c928fe91461059a5780638da5cb5b146105c357806395d89b41146105ee578063982d669e14610619576101ee565b80636352211e146104de57806370a082311461051b578063714c539814610558578063715018a614610583576101ee565b806328cad13d1161018557806342842e0e1161015457806342842e0e1461042657806349df728c1461044f5780634f6ccce71461047857806355f804b3146104b5576101ee565b806328cad13d1461036b5780632a55205a146103945780632f745c59146103d25780633ccfd60b1461040f576101ee565b8063095ea7b3116101c1578063095ea7b3146102c357806318160ddd146102ec5780631e84c4131461031757806323b872dd14610342576101ee565b806301ffc9a7146101f357806306fdde031461023057806307e89ec01461025b578063081812fc14610286575b600080fd5b3480156101ff57600080fd5b5061021a6004803603810190610215919061321d565b6107d6565b6040516102279190613844565b60405180910390f35b34801561023c57600080fd5b50610245610850565b604051610252919061385f565b60405180910390f35b34801561026757600080fd5b506102706108e2565b60405161027d9190613bc1565b60405180910390f35b34801561029257600080fd5b506102ad60048036038101906102a891906132ed565b6108ed565b6040516102ba91906137b4565b60405180910390f35b3480156102cf57600080fd5b506102ea60048036038101906102e59190613183565b610972565b005b3480156102f857600080fd5b50610301610a8b565b60405161030e9190613bc1565b60405180910390f35b34801561032357600080fd5b5061032c610a94565b6040516103399190613844565b60405180910390f35b34801561034e57600080fd5b506103696004803603810190610364919061306d565b610aa7565b005b34801561037757600080fd5b50610392600480360381019061038d91906131c3565b610ab7565b005b3480156103a057600080fd5b506103bb60048036038101906103b69190613347565b610b50565b6040516103c992919061381b565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f49190613183565b610bbc565b6040516104069190613bc1565b60405180910390f35b34801561041b57600080fd5b50610424610dba565b005b34801561043257600080fd5b5061044d6004803603810190610448919061306d565b610e85565b005b34801561045b57600080fd5b5061047660048036038101906104719190613277565b610ea5565b005b34801561048457600080fd5b5061049f600480360381019061049a91906132ed565b611040565b6040516104ac9190613bc1565b60405180910390f35b3480156104c157600080fd5b506104dc60048036038101906104d791906132a4565b611093565b005b3480156104ea57600080fd5b50610505600480360381019061050091906132ed565b611129565b60405161051291906137b4565b60405180910390f35b34801561052757600080fd5b50610542600480360381019061053d9190613000565b61113f565b60405161054f9190613bc1565b60405180910390f35b34801561056457600080fd5b5061056d611228565b60405161057a919061385f565b60405180910390f35b34801561058f57600080fd5b506105986112ba565b005b3480156105a657600080fd5b506105c160048036038101906105bc91906132ed565b611342565b005b3480156105cf57600080fd5b506105d86114ec565b6040516105e591906137b4565b60405180910390f35b3480156105fa57600080fd5b50610603611516565b604051610610919061385f565b60405180910390f35b34801561062557600080fd5b5061062e6115a8565b60405161063b9190613bc1565b60405180910390f35b61065e600480360381019061065991906132ed565b6115ae565b005b34801561066c57600080fd5b5061068760048036038101906106829190613143565b611769565b005b34801561069557600080fd5b506106b060048036038101906106ab91906130c0565b6118ea565b005b3480156106be57600080fd5b506106c7611946565b6040516106d49190613bc1565b60405180910390f35b3480156106e957600080fd5b5061070460048036038101906106ff91906132ed565b61194b565b604051610711919061385f565b60405180910390f35b34801561072657600080fd5b5061072f611a27565b60405161073c9190613bc1565b60405180910390f35b34801561075157600080fd5b5061075a611a2d565b6040516107679190613bc1565b60405180910390f35b34801561077c57600080fd5b506107976004803603810190610792919061302d565b611a33565b6040516107a49190613844565b60405180910390f35b3480156107b957600080fd5b506107d460048036038101906107cf9190613000565b611ac7565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610849575061084882611bbf565b5b9050919050565b60606001805461085f90613f38565b80601f016020809104026020016040519081016040528092919081815260200182805461088b90613f38565b80156108d85780601f106108ad576101008083540402835291602001916108d8565b820191906000526020600020905b8154815290600101906020018083116108bb57829003601f168201915b5050505050905090565b66470de4df82000081565b60006108f882611d09565b610937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092e90613b81565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097d82611129565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e590613a41565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a0d611d16565b73ffffffffffffffffffffffffffffffffffffffff161480610a3c5750610a3b81610a36611d16565b611a33565b5b610a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7290613981565b60405180910390fd5b610a86838383611d1e565b505050565b60008054905090565b600c60009054906101000a900460ff1681565b610ab2838383611dd0565b505050565b610abf611d16565b73ffffffffffffffffffffffffffffffffffffffff16610add6114ec565b73ffffffffffffffffffffffffffffffffffffffff1614610b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2a906139e1565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b600080610b5c84611d09565b610b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9290613961565b60405180910390fd5b30610bb1610baa856008612389565b606461239f565b915091509250929050565b6000610bc78361113f565b8210610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff90613881565b60405180910390fd5b6000610c12610a8b565b905060008060005b83811015610d78576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d0c57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d645786841415610d55578195505050505050610db4565b8380610d6090613f9b565b9450505b508080610d7090613f9b565b915050610c1a565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab90613b01565b60405180910390fd5b92915050565b610dc2611d16565b73ffffffffffffffffffffffffffffffffffffffff16610de06114ec565b73ffffffffffffffffffffffffffffffffffffffff1614610e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2d906139e1565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e81573d6000803e3d6000fd5b5050565b610ea0838383604051806020016040528060008152506118ea565b505050565b610ead611d16565b73ffffffffffffffffffffffffffffffffffffffff16610ecb6114ec565b73ffffffffffffffffffffffffffffffffffffffff1614610f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f18906139e1565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f5c91906137b4565b60206040518083038186803b158015610f7457600080fd5b505afa158015610f88573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fac919061331a565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610fe992919061381b565b602060405180830381600087803b15801561100357600080fd5b505af1158015611017573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061103b91906131f0565b505050565b600061104a610a8b565b821061108b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611082906138e1565b60405180910390fd5b819050919050565b61109b611d16565b73ffffffffffffffffffffffffffffffffffffffff166110b96114ec565b73ffffffffffffffffffffffffffffffffffffffff161461110f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611106906139e1565b60405180910390fd5b80600b9080519060200190611125929190612d9b565b5050565b6000611134826123b5565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a7906139a1565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600b805461123790613f38565b80601f016020809104026020016040519081016040528092919081815260200182805461126390613f38565b80156112b05780601f10611285576101008083540402835291602001916112b0565b820191906000526020600020905b81548152906001019060200180831161129357829003601f168201915b5050505050905090565b6112c2611d16565b73ffffffffffffffffffffffffffffffffffffffff166112e06114ec565b73ffffffffffffffffffffffffffffffffffffffff1614611336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132d906139e1565b60405180910390fd5b61134060006125b8565b565b60026009541415611388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137f90613b21565b60405180910390fd5b6002600981905550600c60009054906101000a900460ff166113df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d690613b61565b60405180910390fd5b806103e8816113ec610a8b565b6113f69190613ce1565b1115611437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142e90613901565b60405180910390fd5b81600581111561147c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147390613941565b60405180910390fd5b826101f481611489610a8b565b6114939190613ce1565b11156114d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cb90613ac1565b60405180910390fd5b6114de338561267e565b505050600160098190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461152590613f38565b80601f016020809104026020016040519081016040528092919081815260200182805461155190613f38565b801561159e5780601f106115735761010080835404028352916020019161159e565b820191906000526020600020905b81548152906001019060200180831161158157829003601f168201915b5050505050905090565b6101f481565b600260095414156115f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115eb90613b21565b60405180910390fd5b600260098190555066470de4df820000816101f4611610610a8b565b1115611664573481836116239190613d68565b14611663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165a90613ae1565b60405180910390fd5b5b600c60009054906101000a900460ff166116b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116aa90613b61565b60405180910390fd5b826103e8816116c0610a8b565b6116ca9190613ce1565b111561170b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170290613901565b60405180910390fd5b836005811115611750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174790613941565b60405180910390fd5b61175a338661267e565b50505050600160098190555050565b611771611d16565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d690613a01565b60405180910390fd5b80600660006117ec611d16565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611899611d16565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118de9190613844565b60405180910390a35050565b6118f5848484611dd0565b6119018484848461269c565b611940576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193790613a61565b60405180910390fd5b50505050565b600581565b606061195682611d09565b611995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198c90613961565b60405180910390fd5b600b80546119a290613f38565b80601f01602080910402602001604051908101604052809291908181526020018280546119ce90613f38565b8015611a1b5780601f106119f057610100808354040283529160200191611a1b565b820191906000526020600020905b8154815290600101906020018083116119fe57829003601f168201915b50505050509050919050565b6103e881565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611acf611d16565b73ffffffffffffffffffffffffffffffffffffffff16611aed6114ec565b73ffffffffffffffffffffffffffffffffffffffff1614611b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3a906139e1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baa906138a1565b60405180910390fd5b611bbc816125b8565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c8a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611cf257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611d025750611d0182612833565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611ddb826123b5565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611e02611d16565b73ffffffffffffffffffffffffffffffffffffffff161480611e5e5750611e27611d16565b73ffffffffffffffffffffffffffffffffffffffff16611e46846108ed565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e7a5750611e798260000151611e74611d16565b611a33565b5b905080611ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb390613a21565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f25906139c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9590613921565b60405180910390fd5b611fab858585600161289d565b611fbb6000848460000151611d1e565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166120299190613dc2565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166120cd9190613c9b565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846121d39190613ce1565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156123195761224981611d09565b15612318576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461238186868660016128a3565b505050505050565b600081836123979190613d68565b905092915050565b600081836123ad9190613d37565b905092915050565b6123bd612e21565b6123c682611d09565b612405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fc906138c1565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000006483106124695760017f00000000000000000000000000000000000000000000000000000000000000648461245c9190613df6565b6124669190613ce1565b90505b60008390505b818110612577576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612563578093505050506125b3565b50808061256f90613f0e565b91505061246f565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125aa90613b41565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126988282604051806020016040528060008152506128a9565b5050565b60006126bd8473ffffffffffffffffffffffffffffffffffffffff16612d88565b15612826578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126e6611d16565b8786866040518563ffffffff1660e01b815260040161270894939291906137cf565b602060405180830381600087803b15801561272257600080fd5b505af192505050801561275357506040513d601f19601f82011682018060405250810190612750919061324a565b60015b6127d6573d8060008114612783576040519150601f19603f3d011682016040523d82523d6000602084013e612788565b606091505b506000815114156127ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c590613a61565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061282b565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561291f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291690613aa1565b60405180910390fd5b61292881611d09565b15612968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295f90613a81565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000648311156129cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c290613ba1565b60405180910390fd5b6129d8600085838661289d565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612ad59190613c9b565b6fffffffffffffffffffffffffffffffff168152602001858360200151612afc9190613c9b565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612d6b57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d0b600088848861269c565b612d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4190613a61565b60405180910390fd5b8180612d5590613f9b565b9250508080612d6390613f9b565b915050612c9a565b5080600081905550612d8060008785886128a3565b505050505050565b600080823b905060008111915050919050565b828054612da790613f38565b90600052602060002090601f016020900481019282612dc95760008555612e10565b82601f10612de257805160ff1916838001178555612e10565b82800160010185558215612e10579182015b82811115612e0f578251825591602001919060010190612df4565b5b509050612e1d9190612e5b565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612e74576000816000905550600101612e5c565b5090565b6000612e8b612e8684613c01565b613bdc565b905082815260208101848484011115612ea757612ea66140a5565b5b612eb2848285613ecc565b509392505050565b6000612ecd612ec884613c32565b613bdc565b905082815260208101848484011115612ee957612ee86140a5565b5b612ef4848285613ecc565b509392505050565b600081359050612f0b8161479b565b92915050565b600081359050612f20816147b2565b92915050565b600081519050612f35816147b2565b92915050565b600081359050612f4a816147c9565b92915050565b600081519050612f5f816147c9565b92915050565b600082601f830112612f7a57612f796140a0565b5b8135612f8a848260208601612e78565b91505092915050565b600081359050612fa2816147e0565b92915050565b600082601f830112612fbd57612fbc6140a0565b5b8135612fcd848260208601612eba565b91505092915050565b600081359050612fe5816147f7565b92915050565b600081519050612ffa816147f7565b92915050565b600060208284031215613016576130156140af565b5b600061302484828501612efc565b91505092915050565b60008060408385031215613044576130436140af565b5b600061305285828601612efc565b925050602061306385828601612efc565b9150509250929050565b600080600060608486031215613086576130856140af565b5b600061309486828701612efc565b93505060206130a586828701612efc565b92505060406130b686828701612fd6565b9150509250925092565b600080600080608085870312156130da576130d96140af565b5b60006130e887828801612efc565b94505060206130f987828801612efc565b935050604061310a87828801612fd6565b925050606085013567ffffffffffffffff81111561312b5761312a6140aa565b5b61313787828801612f65565b91505092959194509250565b6000806040838503121561315a576131596140af565b5b600061316885828601612efc565b925050602061317985828601612f11565b9150509250929050565b6000806040838503121561319a576131996140af565b5b60006131a885828601612efc565b92505060206131b985828601612fd6565b9150509250929050565b6000602082840312156131d9576131d86140af565b5b60006131e784828501612f11565b91505092915050565b600060208284031215613206576132056140af565b5b600061321484828501612f26565b91505092915050565b600060208284031215613233576132326140af565b5b600061324184828501612f3b565b91505092915050565b6000602082840312156132605761325f6140af565b5b600061326e84828501612f50565b91505092915050565b60006020828403121561328d5761328c6140af565b5b600061329b84828501612f93565b91505092915050565b6000602082840312156132ba576132b96140af565b5b600082013567ffffffffffffffff8111156132d8576132d76140aa565b5b6132e484828501612fa8565b91505092915050565b600060208284031215613303576133026140af565b5b600061331184828501612fd6565b91505092915050565b6000602082840312156133305761332f6140af565b5b600061333e84828501612feb565b91505092915050565b6000806040838503121561335e5761335d6140af565b5b600061336c85828601612fd6565b925050602061337d85828601612fd6565b9150509250929050565b61339081613e2a565b82525050565b61339f81613e3c565b82525050565b60006133b082613c63565b6133ba8185613c79565b93506133ca818560208601613edb565b6133d3816140b4565b840191505092915050565b60006133e982613c6e565b6133f38185613c8a565b9350613403818560208601613edb565b61340c816140b4565b840191505092915050565b6000613424602283613c8a565b915061342f826140c5565b604082019050919050565b6000613447602683613c8a565b915061345282614114565b604082019050919050565b600061346a602a83613c8a565b915061347582614163565b604082019050919050565b600061348d602383613c8a565b9150613498826141b2565b604082019050919050565b60006134b0602283613c8a565b91506134bb82614201565b604082019050919050565b60006134d3602583613c8a565b91506134de82614250565b604082019050919050565b60006134f6602283613c8a565b91506135018261429f565b604082019050919050565b6000613519601183613c8a565b9150613524826142ee565b602082019050919050565b600061353c603983613c8a565b915061354782614317565b604082019050919050565b600061355f602b83613c8a565b915061356a82614366565b604082019050919050565b6000613582602683613c8a565b915061358d826143b5565b604082019050919050565b60006135a5602083613c8a565b91506135b082614404565b602082019050919050565b60006135c8601a83613c8a565b91506135d38261442d565b602082019050919050565b60006135eb603283613c8a565b91506135f682614456565b604082019050919050565b600061360e602283613c8a565b9150613619826144a5565b604082019050919050565b6000613631603383613c8a565b915061363c826144f4565b604082019050919050565b6000613654601d83613c8a565b915061365f82614543565b602082019050919050565b6000613677602183613c8a565b91506136828261456c565b604082019050919050565b600061369a601c83613c8a565b91506136a5826145bb565b602082019050919050565b60006136bd601883613c8a565b91506136c8826145e4565b602082019050919050565b60006136e0602e83613c8a565b91506136eb8261460d565b604082019050919050565b6000613703601f83613c8a565b915061370e8261465c565b602082019050919050565b6000613726602f83613c8a565b915061373182614685565b604082019050919050565b6000613749601783613c8a565b9150613754826146d4565b602082019050919050565b600061376c602d83613c8a565b9150613777826146fd565b604082019050919050565b600061378f602283613c8a565b915061379a8261474c565b604082019050919050565b6137ae81613ec2565b82525050565b60006020820190506137c96000830184613387565b92915050565b60006080820190506137e46000830187613387565b6137f16020830186613387565b6137fe60408301856137a5565b818103606083015261381081846133a5565b905095945050505050565b60006040820190506138306000830185613387565b61383d60208301846137a5565b9392505050565b60006020820190506138596000830184613396565b92915050565b6000602082019050818103600083015261387981846133de565b905092915050565b6000602082019050818103600083015261389a81613417565b9050919050565b600060208201905081810360008301526138ba8161343a565b9050919050565b600060208201905081810360008301526138da8161345d565b9050919050565b600060208201905081810360008301526138fa81613480565b9050919050565b6000602082019050818103600083015261391a816134a3565b9050919050565b6000602082019050818103600083015261393a816134c6565b9050919050565b6000602082019050818103600083015261395a816134e9565b9050919050565b6000602082019050818103600083015261397a8161350c565b9050919050565b6000602082019050818103600083015261399a8161352f565b9050919050565b600060208201905081810360008301526139ba81613552565b9050919050565b600060208201905081810360008301526139da81613575565b9050919050565b600060208201905081810360008301526139fa81613598565b9050919050565b60006020820190508181036000830152613a1a816135bb565b9050919050565b60006020820190508181036000830152613a3a816135de565b9050919050565b60006020820190508181036000830152613a5a81613601565b9050919050565b60006020820190508181036000830152613a7a81613624565b9050919050565b60006020820190508181036000830152613a9a81613647565b9050919050565b60006020820190508181036000830152613aba8161366a565b9050919050565b60006020820190508181036000830152613ada8161368d565b9050919050565b60006020820190508181036000830152613afa816136b0565b9050919050565b60006020820190508181036000830152613b1a816136d3565b9050919050565b60006020820190508181036000830152613b3a816136f6565b9050919050565b60006020820190508181036000830152613b5a81613719565b9050919050565b60006020820190508181036000830152613b7a8161373c565b9050919050565b60006020820190508181036000830152613b9a8161375f565b9050919050565b60006020820190508181036000830152613bba81613782565b9050919050565b6000602082019050613bd660008301846137a5565b92915050565b6000613be6613bf7565b9050613bf28282613f6a565b919050565b6000604051905090565b600067ffffffffffffffff821115613c1c57613c1b614071565b5b613c25826140b4565b9050602081019050919050565b600067ffffffffffffffff821115613c4d57613c4c614071565b5b613c56826140b4565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613ca682613e86565b9150613cb183613e86565b9250826fffffffffffffffffffffffffffffffff03821115613cd657613cd5613fe4565b5b828201905092915050565b6000613cec82613ec2565b9150613cf783613ec2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d2c57613d2b613fe4565b5b828201905092915050565b6000613d4282613ec2565b9150613d4d83613ec2565b925082613d5d57613d5c614013565b5b828204905092915050565b6000613d7382613ec2565b9150613d7e83613ec2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613db757613db6613fe4565b5b828202905092915050565b6000613dcd82613e86565b9150613dd883613e86565b925082821015613deb57613dea613fe4565b5b828203905092915050565b6000613e0182613ec2565b9150613e0c83613ec2565b925082821015613e1f57613e1e613fe4565b5b828203905092915050565b6000613e3582613ea2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613e7f82613e2a565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ef9578082015181840152602081019050613ede565b83811115613f08576000848401525b50505050565b6000613f1982613ec2565b91506000821415613f2d57613f2c613fe4565b5b600182039050919050565b60006002820490506001821680613f5057607f821691505b60208210811415613f6457613f63614042565b5b50919050565b613f73826140b4565b810181811067ffffffffffffffff82111715613f9257613f91614071565b5b80604052505050565b6000613fa682613ec2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fd957613fd8613fe4565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682066726565206d696e74732072656d61696e00000000600082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6147a481613e2a565b81146147af57600080fd5b50565b6147bb81613e3c565b81146147c657600080fd5b50565b6147d281613e48565b81146147dd57600080fd5b50565b6147e981613e74565b81146147f457600080fd5b50565b61480081613ec2565b811461480b57600080fd5b5056fea264697066735822122096a6a8d7d36180669995fdf379840593f99a86a6395d25f79f567a79ad909f2264736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000945544820466f726365000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044554484600000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): ETH Force
Arg [1] : symbol (string): ETHF

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 45544820466f7263650000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 4554484600000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

55291:4800:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59064:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44490:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55674:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46015:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45578:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41325:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55786:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46865:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58317:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59771:317;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;41956:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58485:143;;;;;;;;;;;;;:::i;:::-;;47070:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58636:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41488:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58207:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44313:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43190:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58043:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19348:103;;;;;;;;;;;;;:::i;:::-;;57677:289;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18697:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44645:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55735:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57226:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46283:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47290:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55574:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59427:278;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55625:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51705:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46620:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19606:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59064:292;59212:4;59269:26;59254:41;;;:11;:41;;;;:94;;;;59312:36;59336:11;59312:23;:36::i;:::-;59254:94;59234:114;;59064:292;;;:::o;44490:94::-;44544:13;44573:5;44566:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44490:94;:::o;55674:54::-;55718:10;55674:54;:::o;46015:204::-;46083:7;46107:16;46115:7;46107;:16::i;:::-;46099:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;46189:15;:24;46205:7;46189:24;;;;;;;;;;;;;;;;;;;;;46182:31;;46015:204;;;:::o;45578:379::-;45647:13;45663:24;45679:7;45663:15;:24::i;:::-;45647:40;;45708:5;45702:11;;:2;:11;;;;45694:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;45793:5;45777:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;45802:37;45819:5;45826:12;:10;:12::i;:::-;45802:16;:37::i;:::-;45777:62;45761:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;45923:28;45932:2;45936:7;45945:5;45923:8;:28::i;:::-;45640:317;45578:379;;:::o;41325:94::-;41378:7;41401:12;;41394:19;;41325:94;:::o;55786:37::-;;;;;;;;;;;;;:::o;46865:142::-;46973:28;46983:4;46989:2;46993:7;46973:9;:28::i;:::-;46865:142;;;:::o;58317:158::-;18928:12;:10;:12::i;:::-;18917:23;;:7;:5;:7::i;:::-;:23;;;18909:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58448:19:::1;58427:18;;:40;;;;;;;;;;;;;;;;;;58317:158:::0;:::o;59771:317::-;59896:16;59914:21;59961:16;59969:7;59961;:16::i;:::-;59953:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;60028:4;60035:44;60048:25;60061:9;60071:1;60048:12;:25::i;:::-;60075:3;60035:12;:44::i;:::-;60012:68;;;;59771:317;;;;;:::o;41956:744::-;42065:7;42100:16;42110:5;42100:9;:16::i;:::-;42092:5;:24;42084:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;42162:22;42187:13;:11;:13::i;:::-;42162:38;;42207:19;42237:25;42287:9;42282:350;42306:14;42302:1;:18;42282:350;;;42336:31;42370:11;:14;42382:1;42370:14;;;;;;;;;;;42336:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42423:1;42397:28;;:9;:14;;;:28;;;42393:89;;42458:9;:14;;;42438:34;;42393:89;42515:5;42494:26;;:17;:26;;;42490:135;;;42552:5;42537:11;:20;42533:59;;;42579:1;42572:8;;;;;;;;;42533:59;42602:13;;;;;:::i;:::-;;;;42490:135;42327:305;42322:3;;;;;:::i;:::-;;;;42282:350;;;;42638:56;;;;;;;;;;:::i;:::-;;;;;;;;41956:744;;;;;:::o;58485:143::-;18928:12;:10;:12::i;:::-;18917:23;;:7;:5;:7::i;:::-;:23;;;18909:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58533:15:::1;58551:21;58533:39;;58591:10;58583:28;;:37;58612:7;58583:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;58522:106;58485:143::o:0;47070:157::-;47182:39;47199:4;47205:2;47209:7;47182:39;;;;;;;;;;;;:16;:39::i;:::-;47070:157;;;:::o;58636:168::-;18928:12;:10;:12::i;:::-;18917:23;;:7;:5;:7::i;:::-;:23;;;18909:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58702:15:::1;58720:5;:15;;;58744:4;58720:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58702:48;;58761:5;:14;;;58776:10;58788:7;58761:35;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;58691:113;58636:168:::0;:::o;41488:177::-;41555:7;41587:13;:11;:13::i;:::-;41579:5;:21;41571:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;41654:5;41647:12;;41488:177;;;:::o;58207:100::-;18928:12;:10;:12::i;:::-;18917:23;;:7;:5;:7::i;:::-;:23;;;18909:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58291:8:::1;58281:7;:18;;;;;;;;;;;;:::i;:::-;;58207:100:::0;:::o;44313:118::-;44377:7;44400:20;44412:7;44400:11;:20::i;:::-;:25;;;44393:32;;44313:118;;;:::o;43190:211::-;43254:7;43295:1;43278:19;;:5;:19;;;;43270:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;43367:12;:19;43380:5;43367:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;43359:36;;43352:43;;43190:211;;;:::o;58043:93::-;58088:13;58121:7;58114:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58043:93;:::o;19348:103::-;18928:12;:10;:12::i;:::-;18917:23;;:7;:5;:7::i;:::-;:23;;;18909:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19413:30:::1;19440:1;19413:18;:30::i;:::-;19348:103::o:0;57677:289::-;10626:1;11224:7;;:19;;11216:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10626:1;11357:7;:18;;;;56136::::1;;;;;;;;;;;56128:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;57806:14:::2;55661:4;56510:14;56494:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:60;;56472:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;57845:14:::3;55617:1;56294:14;:34;;56272:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;57889:14:::4;55776:3;56745:14;56729:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:65;;56707:143;;;;;;;;;;;;:::i;:::-;;;;;;;;;57921:37:::5;57931:10;57943:14;57921:9;:37::i;:::-;56401:1:::4;56627::::3;56193::::2;10582::::0;11536:7;:22;;;;57677:289;:::o;18697:87::-;18743:7;18770:6;;;;;;;;;;;18763:13;;18697:87;:::o;44645:98::-;44701:13;44730:7;44723:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44645:98;:::o;55735:44::-;55776:3;55735:44;:::o;57226:321::-;10626:1;11224:7;;:19;;11216:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10626:1;11357:7;:18;;;;55718:10:::1;57366:14;55776:3;56961:13;:11;:13::i;:::-;:28;56958:166;;;57051:9;57032:14;57024:5;:22;;;;:::i;:::-;57023:37;57001:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;56958:166;56136:18:::2;;;;;;;;;;;56128:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;57429:14:::3;55661:4;56510:14;56494:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:60;;56472:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;57468:14:::4;55617:1;56294:14;:34;;56272:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;57502:37:::5;57512:10;57524:14;57502:9;:37::i;:::-;56627:1:::4;56193::::3;11388::::1;;10582::::0;11536:7;:22;;;;57226:321;:::o;46283:274::-;46386:12;:10;:12::i;:::-;46374:24;;:8;:24;;;;46366:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;46483:8;46438:18;:32;46457:12;:10;:12::i;:::-;46438:32;;;;;;;;;;;;;;;:42;46471:8;46438:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;46532:8;46503:48;;46518:12;:10;:12::i;:::-;46503:48;;;46542:8;46503:48;;;;;;:::i;:::-;;;;;;;;46283:274;;:::o;47290:311::-;47427:28;47437:4;47443:2;47447:7;47427:9;:28::i;:::-;47478:48;47501:4;47507:2;47511:7;47520:5;47478:22;:48::i;:::-;47462:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;47290:311;;;;:::o;55574:44::-;55617:1;55574:44;:::o;59427:278::-;59545:13;59584:16;59592:7;59584;:16::i;:::-;59576:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;59689:7;59682:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59427:278;;;:::o;55625:40::-;55661:4;55625:40;:::o;51705:43::-;;;;:::o;46620:186::-;46742:4;46765:18;:25;46784:5;46765:25;;;;;;;;;;;;;;;:35;46791:8;46765:35;;;;;;;;;;;;;;;;;;;;;;;;;46758:42;;46620:186;;;;:::o;19606:201::-;18928:12;:10;:12::i;:::-;18917:23;;:7;:5;:7::i;:::-;:23;;;18909:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19715:1:::1;19695:22;;:8;:22;;;;19687:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;19771:28;19790:8;19771:18;:28::i;:::-;19606:201:::0;:::o;42764:370::-;42891:4;42936:25;42921:40;;;:11;:40;;;;:99;;;;42987:33;42972:48;;;:11;:48;;;;42921:99;:160;;;;43046:35;43031:50;;;:11;:50;;;;42921:160;:207;;;;43092:36;43116:11;43092:23;:36::i;:::-;42921:207;42907:221;;42764:370;;;:::o;47840:105::-;47897:4;47927:12;;47917:7;:22;47910:29;;47840:105;;;:::o;17421:98::-;17474:7;17501:10;17494:17;;17421:98;:::o;51527:172::-;51651:2;51624:15;:24;51640:7;51624:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;51685:7;51681:2;51665:28;;51674:5;51665:28;;;;;;;;;;;;51527:172;;;:::o;49892:1529::-;49989:35;50027:20;50039:7;50027:11;:20::i;:::-;49989:58;;50056:22;50098:13;:18;;;50082:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;50151:12;:10;:12::i;:::-;50127:36;;:20;50139:7;50127:11;:20::i;:::-;:36;;;50082:81;:142;;;;50174:50;50191:13;:18;;;50211:12;:10;:12::i;:::-;50174:16;:50::i;:::-;50082:142;50056:169;;50250:17;50234:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;50382:4;50360:26;;:13;:18;;;:26;;;50344:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;50471:1;50457:16;;:2;:16;;;;50449:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;50524:43;50546:4;50552:2;50556:7;50565:1;50524:21;:43::i;:::-;50624:49;50641:1;50645:7;50654:13;:18;;;50624:8;:49::i;:::-;50712:1;50682:12;:18;50695:4;50682:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50748:1;50720:12;:16;50733:2;50720:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50779:43;;;;;;;;50794:2;50779:43;;;;;;50805:15;50779:43;;;;;50756:11;:20;50768:7;50756:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51050:19;51082:1;51072:7;:11;;;;:::i;:::-;51050:33;;51135:1;51094:43;;:11;:24;51106:11;51094:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;51090:236;;;51152:20;51160:11;51152:7;:20::i;:::-;51148:171;;;51212:97;;;;;;;;51239:13;:18;;;51212:97;;;;;;51270:13;:28;;;51212:97;;;;;51185:11;:24;51197:11;51185:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51148:171;51090:236;51358:7;51354:2;51339:27;;51348:4;51339:27;;;;;;;;;;;;51373:42;51394:4;51400:2;51404:7;51413:1;51373:20;:42::i;:::-;49982:1439;;;49892:1529;;;:::o;3922:98::-;3980:7;4011:1;4007;:5;;;;:::i;:::-;4000:12;;3922:98;;;;:::o;4321:::-;4379:7;4410:1;4406;:5;;;;:::i;:::-;4399:12;;4321:98;;;;:::o;43653:606::-;43729:21;;:::i;:::-;43770:16;43778:7;43770;:16::i;:::-;43762:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;43842:26;43890:12;43879:7;:23;43875:93;;43959:1;43944:12;43934:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;43913:47;;43875:93;43981:12;43996:7;43981:22;;43976:212;44013:18;44005:4;:26;43976:212;;44050:31;44084:11;:17;44096:4;44084:17;;;;;;;;;;;44050:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44140:1;44114:28;;:9;:14;;;:28;;;44110:71;;44162:9;44155:16;;;;;;;44110:71;44041:147;44033:6;;;;;:::i;:::-;;;;43976:212;;;;44196:57;;;;;;;;;;:::i;:::-;;;;;;;;43653:606;;;;:::o;19967:191::-;20041:16;20060:6;;;;;;;;;;;20041:25;;20086:8;20077:6;;:17;;;;;;;;;;;;;;;;;;20141:8;20110:40;;20131:8;20110:40;;;;;;;;;;;;20030:128;19967:191;:::o;47951:98::-;48016:27;48026:2;48030:8;48016:27;;;;;;;;;;;;:9;:27::i;:::-;47951:98;;:::o;53242:690::-;53379:4;53396:15;:2;:13;;;:15::i;:::-;53392:535;;;53451:2;53435:36;;;53472:12;:10;:12::i;:::-;53486:4;53492:7;53501:5;53435:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53422:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53683:1;53666:6;:13;:18;53662:215;;;53699:61;;;;;;;;;;:::i;:::-;;;;;;;;53662:215;53845:6;53839:13;53830:6;53826:2;53822:15;53815:38;53422:464;53567:45;;;53557:55;;;:6;:55;;;;53550:62;;;;;53392:535;53915:4;53908:11;;53242:690;;;;;;;:::o;32097:157::-;32182:4;32221:25;32206:40;;;:11;:40;;;;32199:47;;32097:157;;;:::o;54394:141::-;;;;;:::o;54921:140::-;;;;;:::o;48388:1272::-;48493:20;48516:12;;48493:35;;48557:1;48543:16;;:2;:16;;;;48535:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48734:21;48742:12;48734:7;:21::i;:::-;48733:22;48725:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;48816:12;48804:8;:24;;48796:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;48876:61;48906:1;48910:2;48914:12;48928:8;48876:21;:61::i;:::-;48946:30;48979:12;:16;48992:2;48979:16;;;;;;;;;;;;;;;48946:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49021:119;;;;;;;;49071:8;49041:11;:19;;;:39;;;;:::i;:::-;49021:119;;;;;;49124:8;49089:11;:24;;;:44;;;;:::i;:::-;49021:119;;;;;49002:12;:16;49015:2;49002:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49175:43;;;;;;;;49190:2;49175:43;;;;;;49201:15;49175:43;;;;;49147:11;:25;49159:12;49147:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49227:20;49250:12;49227:35;;49276:9;49271:281;49295:8;49291:1;:12;49271:281;;;49349:12;49345:2;49324:38;;49341:1;49324:38;;;;;;;;;;;;49389:59;49420:1;49424:2;49428:12;49442:5;49389:22;:59::i;:::-;49371:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;49530:14;;;;;:::i;:::-;;;;49305:3;;;;;:::i;:::-;;;;49271:281;;;;49575:12;49560;:27;;;;49594:60;49623:1;49627:2;49631:12;49645:8;49594:20;:60::i;:::-;48486:1174;;;48388:1272;;;:::o;20985:387::-;21045:4;21253:12;21320:7;21308:20;21300:28;;21363:1;21356:4;:8;21349:15;;;20985: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;2102:340::-;2158:5;2207:3;2200:4;2192:6;2188:17;2184:27;2174:122;;2215:79;;:::i;:::-;2174:122;2332:6;2319:20;2357:79;2432:3;2424:6;2417:4;2409:6;2405:17;2357:79;:::i;:::-;2348:88;;2164:278;2102:340;;;;:::o;2448:139::-;2494:5;2532:6;2519:20;2510:29;;2548:33;2575:5;2548:33;:::i;:::-;2448:139;;;;:::o;2593:143::-;2650:5;2681:6;2675:13;2666:22;;2697:33;2724:5;2697:33;:::i;:::-;2593:143;;;;:::o;2742:329::-;2801:6;2850:2;2838:9;2829:7;2825:23;2821:32;2818:119;;;2856:79;;:::i;:::-;2818:119;2976:1;3001:53;3046:7;3037:6;3026:9;3022:22;3001:53;:::i;:::-;2991:63;;2947:117;2742:329;;;;:::o;3077:474::-;3145:6;3153;3202:2;3190:9;3181:7;3177:23;3173:32;3170:119;;;3208:79;;:::i;:::-;3170:119;3328:1;3353:53;3398:7;3389:6;3378:9;3374:22;3353:53;:::i;:::-;3343:63;;3299:117;3455:2;3481:53;3526:7;3517:6;3506:9;3502:22;3481:53;:::i;:::-;3471:63;;3426:118;3077:474;;;;;:::o;3557:619::-;3634:6;3642;3650;3699:2;3687:9;3678:7;3674:23;3670:32;3667:119;;;3705:79;;:::i;:::-;3667:119;3825:1;3850:53;3895:7;3886:6;3875:9;3871:22;3850:53;:::i;:::-;3840:63;;3796:117;3952:2;3978:53;4023:7;4014:6;4003:9;3999:22;3978:53;:::i;:::-;3968:63;;3923:118;4080:2;4106:53;4151:7;4142:6;4131:9;4127:22;4106:53;:::i;:::-;4096:63;;4051:118;3557:619;;;;;:::o;4182:943::-;4277:6;4285;4293;4301;4350:3;4338:9;4329:7;4325:23;4321:33;4318:120;;;4357:79;;:::i;:::-;4318:120;4477:1;4502:53;4547:7;4538:6;4527:9;4523:22;4502:53;:::i;:::-;4492:63;;4448:117;4604:2;4630:53;4675:7;4666:6;4655:9;4651:22;4630:53;:::i;:::-;4620:63;;4575:118;4732:2;4758:53;4803:7;4794:6;4783:9;4779:22;4758:53;:::i;:::-;4748:63;;4703:118;4888:2;4877:9;4873:18;4860:32;4919:18;4911:6;4908:30;4905:117;;;4941:79;;:::i;:::-;4905:117;5046:62;5100:7;5091:6;5080:9;5076:22;5046:62;:::i;:::-;5036:72;;4831:287;4182:943;;;;;;;:::o;5131:468::-;5196:6;5204;5253:2;5241:9;5232:7;5228:23;5224:32;5221:119;;;5259:79;;:::i;:::-;5221:119;5379:1;5404:53;5449:7;5440:6;5429:9;5425:22;5404:53;:::i;:::-;5394:63;;5350:117;5506:2;5532:50;5574:7;5565:6;5554:9;5550:22;5532:50;:::i;:::-;5522:60;;5477:115;5131:468;;;;;:::o;5605:474::-;5673:6;5681;5730:2;5718:9;5709:7;5705:23;5701:32;5698:119;;;5736:79;;:::i;:::-;5698:119;5856:1;5881:53;5926:7;5917:6;5906:9;5902:22;5881:53;:::i;:::-;5871:63;;5827:117;5983:2;6009:53;6054:7;6045:6;6034:9;6030:22;6009:53;:::i;:::-;5999:63;;5954:118;5605:474;;;;;:::o;6085:323::-;6141:6;6190:2;6178:9;6169:7;6165:23;6161:32;6158:119;;;6196:79;;:::i;:::-;6158:119;6316:1;6341:50;6383:7;6374:6;6363:9;6359:22;6341:50;:::i;:::-;6331:60;;6287:114;6085:323;;;;:::o;6414:345::-;6481:6;6530:2;6518:9;6509:7;6505:23;6501:32;6498:119;;;6536:79;;:::i;:::-;6498:119;6656:1;6681:61;6734:7;6725:6;6714:9;6710:22;6681:61;:::i;:::-;6671:71;;6627:125;6414:345;;;;:::o;6765:327::-;6823:6;6872:2;6860:9;6851:7;6847:23;6843:32;6840:119;;;6878:79;;:::i;:::-;6840:119;6998:1;7023:52;7067:7;7058:6;7047:9;7043:22;7023:52;:::i;:::-;7013:62;;6969:116;6765:327;;;;:::o;7098:349::-;7167:6;7216:2;7204:9;7195:7;7191:23;7187:32;7184:119;;;7222:79;;:::i;:::-;7184:119;7342:1;7367:63;7422:7;7413:6;7402:9;7398:22;7367:63;:::i;:::-;7357:73;;7313:127;7098:349;;;;:::o;7453:357::-;7526:6;7575:2;7563:9;7554:7;7550:23;7546:32;7543:119;;;7581:79;;:::i;:::-;7543:119;7701:1;7726:67;7785:7;7776:6;7765:9;7761:22;7726:67;:::i;:::-;7716:77;;7672:131;7453:357;;;;:::o;7816:509::-;7885:6;7934:2;7922:9;7913:7;7909:23;7905:32;7902:119;;;7940:79;;:::i;:::-;7902:119;8088:1;8077:9;8073:17;8060:31;8118:18;8110:6;8107:30;8104:117;;;8140:79;;:::i;:::-;8104:117;8245:63;8300:7;8291:6;8280:9;8276:22;8245:63;:::i;:::-;8235:73;;8031:287;7816:509;;;;:::o;8331:329::-;8390:6;8439:2;8427:9;8418:7;8414:23;8410:32;8407:119;;;8445:79;;:::i;:::-;8407:119;8565:1;8590:53;8635:7;8626:6;8615:9;8611:22;8590:53;:::i;:::-;8580:63;;8536:117;8331:329;;;;:::o;8666:351::-;8736:6;8785:2;8773:9;8764:7;8760:23;8756:32;8753:119;;;8791:79;;:::i;:::-;8753:119;8911:1;8936:64;8992:7;8983:6;8972:9;8968:22;8936:64;:::i;:::-;8926:74;;8882:128;8666:351;;;;:::o;9023:474::-;9091:6;9099;9148:2;9136:9;9127:7;9123:23;9119:32;9116:119;;;9154:79;;:::i;:::-;9116:119;9274:1;9299:53;9344:7;9335:6;9324:9;9320:22;9299:53;:::i;:::-;9289:63;;9245:117;9401:2;9427:53;9472:7;9463:6;9452:9;9448:22;9427:53;:::i;:::-;9417:63;;9372:118;9023:474;;;;;:::o;9503:118::-;9590:24;9608:5;9590:24;:::i;:::-;9585:3;9578:37;9503:118;;:::o;9627:109::-;9708:21;9723:5;9708:21;:::i;:::-;9703:3;9696:34;9627:109;;:::o;9742:360::-;9828:3;9856:38;9888:5;9856:38;:::i;:::-;9910:70;9973:6;9968:3;9910:70;:::i;:::-;9903:77;;9989:52;10034:6;10029:3;10022:4;10015:5;10011:16;9989:52;:::i;:::-;10066:29;10088:6;10066:29;:::i;:::-;10061:3;10057:39;10050:46;;9832:270;9742:360;;;;:::o;10108:364::-;10196:3;10224:39;10257:5;10224:39;:::i;:::-;10279:71;10343:6;10338:3;10279:71;:::i;:::-;10272:78;;10359:52;10404:6;10399:3;10392:4;10385:5;10381:16;10359:52;:::i;:::-;10436:29;10458:6;10436:29;:::i;:::-;10431:3;10427:39;10420:46;;10200:272;10108:364;;;;:::o;10478:366::-;10620:3;10641:67;10705:2;10700:3;10641:67;:::i;:::-;10634:74;;10717:93;10806:3;10717:93;:::i;:::-;10835:2;10830:3;10826:12;10819:19;;10478:366;;;:::o;10850:::-;10992:3;11013:67;11077:2;11072:3;11013:67;:::i;:::-;11006:74;;11089:93;11178:3;11089:93;:::i;:::-;11207:2;11202:3;11198:12;11191:19;;10850:366;;;:::o;11222:::-;11364:3;11385:67;11449:2;11444:3;11385:67;:::i;:::-;11378:74;;11461:93;11550:3;11461:93;:::i;:::-;11579:2;11574:3;11570:12;11563:19;;11222:366;;;:::o;11594:::-;11736:3;11757:67;11821:2;11816:3;11757:67;:::i;:::-;11750:74;;11833:93;11922:3;11833:93;:::i;:::-;11951:2;11946:3;11942:12;11935:19;;11594:366;;;:::o;11966:::-;12108:3;12129:67;12193:2;12188:3;12129:67;:::i;:::-;12122:74;;12205:93;12294:3;12205:93;:::i;:::-;12323:2;12318:3;12314:12;12307:19;;11966:366;;;:::o;12338:::-;12480:3;12501:67;12565:2;12560:3;12501:67;:::i;:::-;12494:74;;12577:93;12666:3;12577:93;:::i;:::-;12695:2;12690:3;12686:12;12679:19;;12338:366;;;:::o;12710:::-;12852:3;12873:67;12937:2;12932:3;12873:67;:::i;:::-;12866:74;;12949:93;13038:3;12949:93;:::i;:::-;13067:2;13062:3;13058:12;13051:19;;12710:366;;;:::o;13082:::-;13224:3;13245:67;13309:2;13304:3;13245:67;:::i;:::-;13238:74;;13321:93;13410:3;13321:93;:::i;:::-;13439:2;13434:3;13430:12;13423:19;;13082:366;;;:::o;13454:::-;13596:3;13617:67;13681:2;13676:3;13617:67;:::i;:::-;13610:74;;13693:93;13782:3;13693:93;:::i;:::-;13811:2;13806:3;13802:12;13795:19;;13454:366;;;:::o;13826:::-;13968:3;13989:67;14053:2;14048:3;13989:67;:::i;:::-;13982:74;;14065:93;14154:3;14065:93;:::i;:::-;14183:2;14178:3;14174:12;14167:19;;13826:366;;;:::o;14198:::-;14340:3;14361:67;14425:2;14420:3;14361:67;:::i;:::-;14354:74;;14437:93;14526:3;14437:93;:::i;:::-;14555:2;14550:3;14546:12;14539:19;;14198:366;;;:::o;14570:::-;14712:3;14733:67;14797:2;14792:3;14733:67;:::i;:::-;14726:74;;14809:93;14898:3;14809:93;:::i;:::-;14927:2;14922:3;14918:12;14911:19;;14570:366;;;:::o;14942:::-;15084:3;15105:67;15169:2;15164:3;15105:67;:::i;:::-;15098:74;;15181:93;15270:3;15181:93;:::i;:::-;15299:2;15294:3;15290:12;15283:19;;14942:366;;;:::o;15314:::-;15456:3;15477:67;15541:2;15536:3;15477:67;:::i;:::-;15470:74;;15553:93;15642:3;15553:93;:::i;:::-;15671:2;15666:3;15662:12;15655:19;;15314:366;;;:::o;15686:::-;15828:3;15849:67;15913:2;15908:3;15849:67;:::i;:::-;15842:74;;15925:93;16014:3;15925:93;:::i;:::-;16043:2;16038:3;16034:12;16027:19;;15686:366;;;:::o;16058:::-;16200:3;16221:67;16285:2;16280:3;16221:67;:::i;:::-;16214:74;;16297:93;16386:3;16297:93;:::i;:::-;16415:2;16410:3;16406:12;16399:19;;16058:366;;;:::o;16430:::-;16572:3;16593:67;16657:2;16652:3;16593:67;:::i;:::-;16586:74;;16669:93;16758:3;16669:93;:::i;:::-;16787:2;16782:3;16778:12;16771:19;;16430:366;;;:::o;16802:::-;16944:3;16965:67;17029:2;17024:3;16965:67;:::i;:::-;16958:74;;17041:93;17130:3;17041:93;:::i;:::-;17159:2;17154:3;17150:12;17143:19;;16802:366;;;:::o;17174:::-;17316:3;17337:67;17401:2;17396:3;17337:67;:::i;:::-;17330:74;;17413:93;17502:3;17413:93;:::i;:::-;17531:2;17526:3;17522:12;17515:19;;17174:366;;;:::o;17546:::-;17688:3;17709:67;17773:2;17768:3;17709:67;:::i;:::-;17702:74;;17785:93;17874:3;17785:93;:::i;:::-;17903:2;17898:3;17894:12;17887:19;;17546:366;;;:::o;17918:::-;18060:3;18081:67;18145:2;18140:3;18081:67;:::i;:::-;18074:74;;18157:93;18246:3;18157:93;:::i;:::-;18275:2;18270:3;18266:12;18259:19;;17918:366;;;:::o;18290:::-;18432:3;18453:67;18517:2;18512:3;18453:67;:::i;:::-;18446:74;;18529:93;18618:3;18529:93;:::i;:::-;18647:2;18642:3;18638:12;18631:19;;18290:366;;;:::o;18662:::-;18804:3;18825:67;18889:2;18884:3;18825:67;:::i;:::-;18818:74;;18901:93;18990:3;18901:93;:::i;:::-;19019:2;19014:3;19010:12;19003:19;;18662:366;;;:::o;19034:::-;19176:3;19197:67;19261:2;19256:3;19197:67;:::i;:::-;19190:74;;19273:93;19362:3;19273:93;:::i;:::-;19391:2;19386:3;19382:12;19375:19;;19034:366;;;:::o;19406:::-;19548:3;19569:67;19633:2;19628:3;19569:67;:::i;:::-;19562:74;;19645:93;19734:3;19645:93;:::i;:::-;19763:2;19758:3;19754:12;19747:19;;19406:366;;;:::o;19778:::-;19920:3;19941:67;20005:2;20000:3;19941:67;:::i;:::-;19934:74;;20017:93;20106:3;20017:93;:::i;:::-;20135:2;20130:3;20126:12;20119:19;;19778:366;;;:::o;20150:118::-;20237:24;20255:5;20237:24;:::i;:::-;20232:3;20225:37;20150:118;;:::o;20274:222::-;20367:4;20405:2;20394:9;20390:18;20382:26;;20418:71;20486:1;20475:9;20471:17;20462:6;20418:71;:::i;:::-;20274:222;;;;:::o;20502:640::-;20697:4;20735:3;20724:9;20720:19;20712:27;;20749:71;20817:1;20806:9;20802:17;20793:6;20749:71;:::i;:::-;20830:72;20898:2;20887:9;20883:18;20874:6;20830:72;:::i;:::-;20912;20980:2;20969:9;20965:18;20956:6;20912:72;:::i;:::-;21031:9;21025:4;21021:20;21016:2;21005:9;21001:18;20994:48;21059:76;21130:4;21121:6;21059:76;:::i;:::-;21051:84;;20502:640;;;;;;;:::o;21148:332::-;21269:4;21307:2;21296:9;21292:18;21284:26;;21320:71;21388:1;21377:9;21373:17;21364:6;21320:71;:::i;:::-;21401:72;21469:2;21458:9;21454:18;21445:6;21401:72;:::i;:::-;21148:332;;;;;:::o;21486:210::-;21573:4;21611:2;21600:9;21596:18;21588:26;;21624:65;21686:1;21675:9;21671:17;21662:6;21624:65;:::i;:::-;21486:210;;;;:::o;21702:313::-;21815:4;21853:2;21842:9;21838:18;21830:26;;21902:9;21896:4;21892:20;21888:1;21877:9;21873:17;21866:47;21930:78;22003:4;21994:6;21930:78;:::i;:::-;21922:86;;21702:313;;;;:::o;22021:419::-;22187:4;22225:2;22214:9;22210:18;22202:26;;22274:9;22268:4;22264:20;22260:1;22249:9;22245:17;22238:47;22302:131;22428:4;22302:131;:::i;:::-;22294:139;;22021:419;;;:::o;22446:::-;22612:4;22650:2;22639:9;22635:18;22627:26;;22699:9;22693:4;22689:20;22685:1;22674:9;22670:17;22663:47;22727:131;22853:4;22727:131;:::i;:::-;22719:139;;22446:419;;;:::o;22871:::-;23037:4;23075:2;23064:9;23060:18;23052:26;;23124:9;23118:4;23114:20;23110:1;23099:9;23095:17;23088:47;23152:131;23278:4;23152:131;:::i;:::-;23144:139;;22871:419;;;:::o;23296:::-;23462:4;23500:2;23489:9;23485:18;23477:26;;23549:9;23543:4;23539:20;23535:1;23524:9;23520:17;23513:47;23577:131;23703:4;23577:131;:::i;:::-;23569:139;;23296:419;;;:::o;23721:::-;23887:4;23925:2;23914:9;23910:18;23902:26;;23974:9;23968:4;23964:20;23960:1;23949:9;23945:17;23938:47;24002:131;24128:4;24002:131;:::i;:::-;23994:139;;23721:419;;;:::o;24146:::-;24312:4;24350:2;24339:9;24335:18;24327:26;;24399:9;24393:4;24389:20;24385:1;24374:9;24370:17;24363:47;24427:131;24553:4;24427:131;:::i;:::-;24419:139;;24146:419;;;:::o;24571:::-;24737:4;24775:2;24764:9;24760:18;24752:26;;24824:9;24818:4;24814:20;24810:1;24799:9;24795:17;24788:47;24852:131;24978:4;24852:131;:::i;:::-;24844:139;;24571:419;;;:::o;24996:::-;25162:4;25200:2;25189:9;25185:18;25177:26;;25249:9;25243:4;25239:20;25235:1;25224:9;25220:17;25213:47;25277:131;25403:4;25277:131;:::i;:::-;25269:139;;24996:419;;;:::o;25421:::-;25587:4;25625:2;25614:9;25610:18;25602:26;;25674:9;25668:4;25664:20;25660:1;25649:9;25645:17;25638:47;25702:131;25828:4;25702:131;:::i;:::-;25694:139;;25421:419;;;:::o;25846:::-;26012:4;26050:2;26039:9;26035:18;26027:26;;26099:9;26093:4;26089:20;26085:1;26074:9;26070:17;26063:47;26127:131;26253:4;26127:131;:::i;:::-;26119:139;;25846:419;;;:::o;26271:::-;26437:4;26475:2;26464:9;26460:18;26452:26;;26524:9;26518:4;26514:20;26510:1;26499:9;26495:17;26488:47;26552:131;26678:4;26552:131;:::i;:::-;26544:139;;26271:419;;;:::o;26696:::-;26862:4;26900:2;26889:9;26885:18;26877:26;;26949:9;26943:4;26939:20;26935:1;26924:9;26920:17;26913:47;26977:131;27103:4;26977:131;:::i;:::-;26969:139;;26696:419;;;:::o;27121:::-;27287:4;27325:2;27314:9;27310:18;27302:26;;27374:9;27368:4;27364:20;27360:1;27349:9;27345:17;27338:47;27402:131;27528:4;27402:131;:::i;:::-;27394:139;;27121:419;;;:::o;27546:::-;27712:4;27750:2;27739:9;27735:18;27727:26;;27799:9;27793:4;27789:20;27785:1;27774:9;27770:17;27763:47;27827:131;27953:4;27827:131;:::i;:::-;27819:139;;27546:419;;;:::o;27971:::-;28137:4;28175:2;28164:9;28160:18;28152:26;;28224:9;28218:4;28214:20;28210:1;28199:9;28195:17;28188:47;28252:131;28378:4;28252:131;:::i;:::-;28244:139;;27971:419;;;:::o;28396:::-;28562:4;28600:2;28589:9;28585:18;28577:26;;28649:9;28643:4;28639:20;28635:1;28624:9;28620:17;28613:47;28677:131;28803:4;28677:131;:::i;:::-;28669:139;;28396:419;;;:::o;28821:::-;28987:4;29025:2;29014:9;29010:18;29002:26;;29074:9;29068:4;29064:20;29060:1;29049:9;29045:17;29038:47;29102:131;29228:4;29102:131;:::i;:::-;29094:139;;28821:419;;;:::o;29246:::-;29412:4;29450:2;29439:9;29435:18;29427:26;;29499:9;29493:4;29489:20;29485:1;29474:9;29470:17;29463:47;29527:131;29653:4;29527:131;:::i;:::-;29519:139;;29246:419;;;:::o;29671:::-;29837:4;29875:2;29864:9;29860:18;29852:26;;29924:9;29918:4;29914:20;29910:1;29899:9;29895:17;29888:47;29952:131;30078:4;29952:131;:::i;:::-;29944:139;;29671:419;;;:::o;30096:::-;30262:4;30300:2;30289:9;30285:18;30277:26;;30349:9;30343:4;30339:20;30335:1;30324:9;30320:17;30313:47;30377:131;30503:4;30377:131;:::i;:::-;30369:139;;30096:419;;;:::o;30521:::-;30687:4;30725:2;30714:9;30710:18;30702:26;;30774:9;30768:4;30764:20;30760:1;30749:9;30745:17;30738:47;30802:131;30928:4;30802:131;:::i;:::-;30794:139;;30521:419;;;:::o;30946:::-;31112:4;31150:2;31139:9;31135:18;31127:26;;31199:9;31193:4;31189:20;31185:1;31174:9;31170:17;31163:47;31227:131;31353:4;31227:131;:::i;:::-;31219:139;;30946:419;;;:::o;31371:::-;31537:4;31575:2;31564:9;31560:18;31552:26;;31624:9;31618:4;31614:20;31610:1;31599:9;31595:17;31588:47;31652:131;31778:4;31652:131;:::i;:::-;31644:139;;31371:419;;;:::o;31796:::-;31962:4;32000:2;31989:9;31985:18;31977:26;;32049:9;32043:4;32039:20;32035:1;32024:9;32020:17;32013:47;32077:131;32203:4;32077:131;:::i;:::-;32069:139;;31796:419;;;:::o;32221:::-;32387:4;32425:2;32414:9;32410:18;32402:26;;32474:9;32468:4;32464:20;32460:1;32449:9;32445:17;32438:47;32502:131;32628:4;32502:131;:::i;:::-;32494:139;;32221:419;;;:::o;32646:::-;32812:4;32850:2;32839:9;32835:18;32827:26;;32899:9;32893:4;32889:20;32885:1;32874:9;32870:17;32863:47;32927:131;33053:4;32927:131;:::i;:::-;32919:139;;32646:419;;;:::o;33071:222::-;33164:4;33202:2;33191:9;33187:18;33179:26;;33215:71;33283:1;33272:9;33268:17;33259:6;33215:71;:::i;:::-;33071:222;;;;:::o;33299:129::-;33333:6;33360:20;;:::i;:::-;33350:30;;33389:33;33417:4;33409:6;33389:33;:::i;:::-;33299:129;;;:::o;33434:75::-;33467:6;33500:2;33494:9;33484:19;;33434:75;:::o;33515:307::-;33576:4;33666:18;33658:6;33655:30;33652:56;;;33688:18;;:::i;:::-;33652:56;33726:29;33748:6;33726:29;:::i;:::-;33718:37;;33810:4;33804;33800:15;33792:23;;33515:307;;;:::o;33828:308::-;33890:4;33980:18;33972:6;33969:30;33966:56;;;34002:18;;:::i;:::-;33966:56;34040:29;34062:6;34040:29;:::i;:::-;34032:37;;34124:4;34118;34114:15;34106:23;;33828:308;;;:::o;34142:98::-;34193:6;34227:5;34221:12;34211:22;;34142:98;;;:::o;34246:99::-;34298:6;34332:5;34326:12;34316:22;;34246:99;;;:::o;34351:168::-;34434:11;34468:6;34463:3;34456:19;34508:4;34503:3;34499:14;34484:29;;34351:168;;;;:::o;34525:169::-;34609:11;34643:6;34638:3;34631:19;34683:4;34678:3;34674:14;34659:29;;34525:169;;;;:::o;34700:273::-;34740:3;34759:20;34777:1;34759:20;:::i;:::-;34754:25;;34793:20;34811:1;34793:20;:::i;:::-;34788:25;;34915:1;34879:34;34875:42;34872:1;34869:49;34866:75;;;34921:18;;:::i;:::-;34866:75;34965:1;34962;34958:9;34951:16;;34700:273;;;;:::o;34979:305::-;35019:3;35038:20;35056:1;35038:20;:::i;:::-;35033:25;;35072:20;35090:1;35072:20;:::i;:::-;35067:25;;35226:1;35158:66;35154:74;35151:1;35148:81;35145:107;;;35232:18;;:::i;:::-;35145:107;35276:1;35273;35269:9;35262:16;;34979:305;;;;:::o;35290:185::-;35330:1;35347:20;35365:1;35347:20;:::i;:::-;35342:25;;35381:20;35399:1;35381:20;:::i;:::-;35376:25;;35420:1;35410:35;;35425:18;;:::i;:::-;35410:35;35467:1;35464;35460:9;35455:14;;35290:185;;;;:::o;35481:348::-;35521:7;35544:20;35562:1;35544:20;:::i;:::-;35539:25;;35578:20;35596:1;35578:20;:::i;:::-;35573:25;;35766:1;35698:66;35694:74;35691:1;35688:81;35683:1;35676:9;35669:17;35665:105;35662:131;;;35773:18;;:::i;:::-;35662:131;35821:1;35818;35814:9;35803:20;;35481:348;;;;:::o;35835:191::-;35875:4;35895:20;35913:1;35895:20;:::i;:::-;35890:25;;35929:20;35947:1;35929:20;:::i;:::-;35924:25;;35968:1;35965;35962:8;35959:34;;;35973:18;;:::i;:::-;35959:34;36018:1;36015;36011:9;36003:17;;35835:191;;;;:::o;36032:::-;36072:4;36092:20;36110:1;36092:20;:::i;:::-;36087:25;;36126:20;36144:1;36126:20;:::i;:::-;36121:25;;36165:1;36162;36159:8;36156:34;;;36170:18;;:::i;:::-;36156:34;36215:1;36212;36208:9;36200:17;;36032:191;;;;:::o;36229:96::-;36266:7;36295:24;36313:5;36295:24;:::i;:::-;36284:35;;36229:96;;;:::o;36331:90::-;36365:7;36408:5;36401:13;36394:21;36383:32;;36331:90;;;:::o;36427:149::-;36463:7;36503:66;36496:5;36492:78;36481:89;;36427:149;;;:::o;36582:110::-;36633:7;36662:24;36680:5;36662:24;:::i;:::-;36651:35;;36582:110;;;:::o;36698:118::-;36735:7;36775:34;36768:5;36764:46;36753:57;;36698:118;;;:::o;36822:126::-;36859:7;36899:42;36892:5;36888:54;36877:65;;36822:126;;;:::o;36954:77::-;36991:7;37020:5;37009:16;;36954:77;;;:::o;37037:154::-;37121:6;37116:3;37111;37098:30;37183:1;37174:6;37169:3;37165:16;37158:27;37037:154;;;:::o;37197:307::-;37265:1;37275:113;37289:6;37286:1;37283:13;37275:113;;;37374:1;37369:3;37365:11;37359:18;37355:1;37350:3;37346:11;37339:39;37311:2;37308:1;37304:10;37299:15;;37275:113;;;37406:6;37403:1;37400:13;37397:101;;;37486:1;37477:6;37472:3;37468:16;37461:27;37397:101;37246:258;37197:307;;;:::o;37510:171::-;37549:3;37572:24;37590:5;37572:24;:::i;:::-;37563:33;;37618:4;37611:5;37608:15;37605:41;;;37626:18;;:::i;:::-;37605:41;37673:1;37666:5;37662:13;37655:20;;37510:171;;;:::o;37687:320::-;37731:6;37768:1;37762:4;37758:12;37748:22;;37815:1;37809:4;37805:12;37836:18;37826:81;;37892:4;37884:6;37880:17;37870:27;;37826:81;37954:2;37946:6;37943:14;37923:18;37920:38;37917:84;;;37973:18;;:::i;:::-;37917:84;37738:269;37687:320;;;:::o;38013:281::-;38096:27;38118:4;38096:27;:::i;:::-;38088:6;38084:40;38226:6;38214:10;38211:22;38190:18;38178:10;38175:34;38172:62;38169:88;;;38237:18;;:::i;:::-;38169:88;38277:10;38273:2;38266:22;38056:238;38013:281;;:::o;38300:233::-;38339:3;38362:24;38380:5;38362:24;:::i;:::-;38353:33;;38408:66;38401:5;38398:77;38395:103;;;38478:18;;:::i;:::-;38395:103;38525:1;38518:5;38514:13;38507:20;;38300:233;;;:::o;38539:180::-;38587:77;38584:1;38577:88;38684:4;38681:1;38674:15;38708:4;38705:1;38698:15;38725:180;38773:77;38770:1;38763:88;38870:4;38867:1;38860:15;38894:4;38891:1;38884:15;38911:180;38959:77;38956:1;38949:88;39056:4;39053:1;39046:15;39080:4;39077:1;39070:15;39097:180;39145:77;39142:1;39135:88;39242:4;39239:1;39232:15;39266:4;39263:1;39256:15;39283:117;39392:1;39389;39382:12;39406:117;39515:1;39512;39505:12;39529:117;39638:1;39635;39628:12;39652:117;39761:1;39758;39751:12;39775:102;39816:6;39867:2;39863:7;39858:2;39851:5;39847:14;39843:28;39833:38;;39775:102;;;:::o;39883:221::-;40023:34;40019:1;40011:6;40007:14;40000:58;40092:4;40087:2;40079:6;40075:15;40068:29;39883:221;:::o;40110:225::-;40250:34;40246:1;40238:6;40234:14;40227:58;40319:8;40314:2;40306:6;40302:15;40295:33;40110:225;:::o;40341:229::-;40481:34;40477:1;40469:6;40465:14;40458:58;40550:12;40545:2;40537:6;40533:15;40526:37;40341:229;:::o;40576:222::-;40716:34;40712:1;40704:6;40700:14;40693:58;40785:5;40780:2;40772:6;40768:15;40761:30;40576:222;:::o;40804:221::-;40944:34;40940:1;40932:6;40928:14;40921:58;41013:4;41008:2;41000:6;40996:15;40989:29;40804:221;:::o;41031:224::-;41171:34;41167:1;41159:6;41155:14;41148:58;41240:7;41235:2;41227:6;41223:15;41216:32;41031:224;:::o;41261:221::-;41401:34;41397:1;41389:6;41385:14;41378:58;41470:4;41465:2;41457:6;41453:15;41446:29;41261:221;:::o;41488:167::-;41628:19;41624:1;41616:6;41612:14;41605:43;41488:167;:::o;41661:244::-;41801:34;41797:1;41789:6;41785:14;41778:58;41870:27;41865:2;41857:6;41853:15;41846:52;41661:244;:::o;41911:230::-;42051:34;42047:1;42039:6;42035:14;42028:58;42120:13;42115:2;42107:6;42103:15;42096:38;41911:230;:::o;42147:225::-;42287:34;42283:1;42275:6;42271:14;42264:58;42356:8;42351:2;42343:6;42339:15;42332:33;42147:225;:::o;42378:182::-;42518:34;42514:1;42506:6;42502:14;42495:58;42378:182;:::o;42566:176::-;42706:28;42702:1;42694:6;42690:14;42683:52;42566:176;:::o;42748:237::-;42888:34;42884:1;42876:6;42872:14;42865:58;42957:20;42952:2;42944:6;42940:15;42933:45;42748:237;:::o;42991:221::-;43131:34;43127:1;43119:6;43115:14;43108:58;43200:4;43195:2;43187:6;43183:15;43176:29;42991:221;:::o;43218:238::-;43358:34;43354:1;43346:6;43342:14;43335:58;43427:21;43422:2;43414:6;43410:15;43403:46;43218:238;:::o;43462:179::-;43602:31;43598:1;43590:6;43586:14;43579:55;43462:179;:::o;43647:220::-;43787:34;43783:1;43775:6;43771:14;43764:58;43856:3;43851:2;43843:6;43839:15;43832:28;43647:220;:::o;43873:178::-;44013:30;44009:1;44001:6;43997:14;43990:54;43873:178;:::o;44057:174::-;44197:26;44193:1;44185:6;44181:14;44174:50;44057:174;:::o;44237:233::-;44377:34;44373:1;44365:6;44361:14;44354:58;44446:16;44441:2;44433:6;44429:15;44422:41;44237:233;:::o;44476:181::-;44616:33;44612:1;44604:6;44600:14;44593:57;44476:181;:::o;44663:234::-;44803:34;44799:1;44791:6;44787:14;44780:58;44872:17;44867:2;44859:6;44855:15;44848:42;44663:234;:::o;44903:173::-;45043:25;45039:1;45031:6;45027:14;45020:49;44903:173;:::o;45082:232::-;45222:34;45218:1;45210:6;45206:14;45199:58;45291:15;45286:2;45278:6;45274:15;45267:40;45082:232;:::o;45320:221::-;45460:34;45456:1;45448:6;45444:14;45437:58;45529:4;45524:2;45516:6;45512:15;45505:29;45320:221;:::o;45547:122::-;45620:24;45638:5;45620:24;:::i;:::-;45613:5;45610:35;45600:63;;45659:1;45656;45649:12;45600:63;45547:122;:::o;45675:116::-;45745:21;45760:5;45745:21;:::i;:::-;45738:5;45735:32;45725:60;;45781:1;45778;45771:12;45725:60;45675:116;:::o;45797:120::-;45869:23;45886:5;45869:23;:::i;:::-;45862:5;45859:34;45849:62;;45907:1;45904;45897:12;45849:62;45797:120;:::o;45923:150::-;46010:38;46042:5;46010:38;:::i;:::-;46003:5;46000:49;45990:77;;46063:1;46060;46053:12;45990:77;45923:150;:::o;46079:122::-;46152:24;46170:5;46152:24;:::i;:::-;46145:5;46142:35;46132:63;;46191:1;46188;46181:12;46132:63;46079:122;:::o

Swarm Source

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