ETH Price: $2,513.46 (+2.47%)

Token

Mystery Box For Gamblers Only (Box)
 

Overview

Max Total Supply

555 Box

Holders

170

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
despicably.eth
Balance
1 Box
0x1be3bb226a8b60d101c973ffbeec66b3669de3d4
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:
Box

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: contracts/gamble.sol

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

// File: contracts/gamble.sol

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

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

// File: contracts/gamble.sol

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

// File: contracts/gamble.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/gamble.sol

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

pragma solidity ^0.8.0;









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

    Counters.Counter private tokenCounter;

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

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

    uint256 public constant PUBLIC_SALE_PRICE = 0.08 ether;
    bool public isPublicSaleActive = false;




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

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



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

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

    constructor(
    ) ERC721A("Mystery Box For Gamblers Only", "Box", 100, maxSupply) {
    }

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

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

    function mint(uint256 numberOfTokens)
        external
        payable
        nonReentrant
        publicSaleActive
        isCorrectPayment(PUBLIC_SALE_PRICE, numberOfTokens)
        canMintNFTs(numberOfTokens)
        maxMintsPerTX(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");

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

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

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

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

}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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"}]

60c060405260008055600060075560405180606001604052806035815260200162004ce960359139600b90805190602001906200003e929190620002ad565b5061022b600c556000600d60006101000a81548160ff0219169083151502179055503480156200006d57600080fd5b506040518060400160405280601d81526020017f4d79737465727920426f7820466f722047616d626c657273204f6e6c790000008152506040518060400160405280600381526020017f426f7800000000000000000000000000000000000000000000000000000000008152506064600c546000811162000125576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200011c90620003cd565b60405180910390fd5b600082116200016b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016290620003ab565b60405180910390fd5b836001908051906020019062000183929190620002ad565b5082600290805190602001906200019c929190620002ad565b508160a08181525050806080818152505050505050620001d1620001c5620001df60201b60201c565b620001e760201b60201c565b600160098190555062000503565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002bb9062000400565b90600052602060002090601f016020900481019282620002df57600085556200032b565b82601f10620002fa57805160ff19168380011785556200032b565b828001600101855582156200032b579182015b828111156200032a5782518255916020019190600101906200030d565b5b5090506200033a91906200033e565b5090565b5b80821115620003595760008160009055506001016200033f565b5090565b60006200036c602783620003ef565b9150620003798262000465565b604082019050919050565b600062000393602e83620003ef565b9150620003a082620004b4565b604082019050919050565b60006020820190508181036000830152620003c6816200035d565b9050919050565b60006020820190508181036000830152620003e88162000384565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200041957607f821691505b6020821081141562000430576200042f62000436565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a0516147bc6200052d6000396000818161217f01526121a80152600050506147bc6000f3fe6080604052600436106101d85760003560e01c806355f804b311610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb01146106b0578063d7224ba0146106db578063e985e9c514610706578063f2fde38b14610743576101d8565b8063a22cb465146105f6578063b88d4fde1461061f578063c6a91b4214610648578063c87b56dd14610673576101d8565b8063715018a6116100d1578063715018a61461056d5780638da5cb5b1461058457806395d89b41146105af578063a0712d68146105da576101d8565b806355f804b31461049f5780636352211e146104c857806370a0823114610505578063714c539814610542576101d8565b806323b872dd1161017a5780633ccfd60b116101495780633ccfd60b146103f957806342842e0e1461041057806349df728c146104395780634f6ccce714610462576101d8565b806323b872dd1461032c57806328cad13d146103555780632a55205a1461037e5780632f745c59146103bc576101d8565b8063081812fc116101b6578063081812fc14610270578063095ea7b3146102ad57806318160ddd146102d65780631e84c41314610301576101d8565b806301ffc9a7146101dd57806306fdde031461021a57806307e89ec014610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190613091565b61076c565b60405161021191906137a2565b60405180910390f35b34801561022657600080fd5b5061022f6107e6565b60405161023c91906137bd565b60405180910390f35b34801561025157600080fd5b5061025a610878565b6040516102679190613adf565b60405180910390f35b34801561027c57600080fd5b5061029760048036038101906102929190613161565b610884565b6040516102a49190613712565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf9190612ff7565b610909565b005b3480156102e257600080fd5b506102eb610a22565b6040516102f89190613adf565b60405180910390f35b34801561030d57600080fd5b50610316610a2b565b60405161032391906137a2565b60405180910390f35b34801561033857600080fd5b50610353600480360381019061034e9190612ee1565b610a3e565b005b34801561036157600080fd5b5061037c60048036038101906103779190613037565b610a4e565b005b34801561038a57600080fd5b506103a560048036038101906103a091906131bb565b610ae7565b6040516103b3929190613779565b60405180910390f35b3480156103c857600080fd5b506103e360048036038101906103de9190612ff7565b610b53565b6040516103f09190613adf565b60405180910390f35b34801561040557600080fd5b5061040e610d51565b005b34801561041c57600080fd5b5061043760048036038101906104329190612ee1565b610e1c565b005b34801561044557600080fd5b50610460600480360381019061045b91906130eb565b610e3c565b005b34801561046e57600080fd5b5061048960048036038101906104849190613161565b610fd7565b6040516104969190613adf565b60405180910390f35b3480156104ab57600080fd5b506104c660048036038101906104c19190613118565b61102a565b005b3480156104d457600080fd5b506104ef60048036038101906104ea9190613161565b6110c0565b6040516104fc9190613712565b60405180910390f35b34801561051157600080fd5b5061052c60048036038101906105279190612e74565b6110d6565b6040516105399190613adf565b60405180910390f35b34801561054e57600080fd5b506105576111bf565b60405161056491906137bd565b60405180910390f35b34801561057957600080fd5b50610582611251565b005b34801561059057600080fd5b506105996112d9565b6040516105a69190613712565b60405180910390f35b3480156105bb57600080fd5b506105c4611303565b6040516105d191906137bd565b60405180910390f35b6105f460048036038101906105ef9190613161565b611395565b005b34801561060257600080fd5b5061061d60048036038101906106189190612fb7565b61153f565b005b34801561062b57600080fd5b5061064660048036038101906106419190612f34565b6116c0565b005b34801561065457600080fd5b5061065d61171c565b60405161066a9190613adf565b60405180910390f35b34801561067f57600080fd5b5061069a60048036038101906106959190613161565b611721565b6040516106a791906137bd565b60405180910390f35b3480156106bc57600080fd5b506106c561179d565b6040516106d29190613adf565b60405180910390f35b3480156106e757600080fd5b506106f06117a3565b6040516106fd9190613adf565b60405180910390f35b34801561071257600080fd5b5061072d60048036038101906107289190612ea1565b6117a9565b60405161073a91906137a2565b60405180910390f35b34801561074f57600080fd5b5061076a60048036038101906107659190612e74565b61183d565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107df57506107de82611935565b5b9050919050565b6060600180546107f590613e76565b80601f016020809104026020016040519081016040528092919081815260200182805461082190613e76565b801561086e5780601f106108435761010080835404028352916020019161086e565b820191906000526020600020905b81548152906001019060200180831161085157829003601f168201915b5050505050905090565b67011c37937e08000081565b600061088f82611a7f565b6108ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c590613abf565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610914826110c0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097c9061399f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109a4611a8c565b73ffffffffffffffffffffffffffffffffffffffff1614806109d357506109d2816109cd611a8c565b6117a9565b5b610a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a09906138df565b60405180910390fd5b610a1d838383611a94565b505050565b60008054905090565b600d60009054906101000a900460ff1681565b610a49838383611b46565b505050565b610a56611a8c565b73ffffffffffffffffffffffffffffffffffffffff16610a746112d9565b73ffffffffffffffffffffffffffffffffffffffff1614610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac19061393f565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b600080610af384611a7f565b610b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b29906138bf565b60405180910390fd5b30610b48610b418560056120ff565b6064612115565b915091509250929050565b6000610b5e836110d6565b8210610b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b96906137df565b60405180910390fd5b6000610ba9610a22565b905060008060005b83811015610d0f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ca357806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cfb5786841415610cec578195505050505050610d4b565b8380610cf790613ed9565b9450505b508080610d0790613ed9565b915050610bb1565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4290613a3f565b60405180910390fd5b92915050565b610d59611a8c565b73ffffffffffffffffffffffffffffffffffffffff16610d776112d9565b73ffffffffffffffffffffffffffffffffffffffff1614610dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc49061393f565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e18573d6000803e3d6000fd5b5050565b610e37838383604051806020016040528060008152506116c0565b505050565b610e44611a8c565b73ffffffffffffffffffffffffffffffffffffffff16610e626112d9565b73ffffffffffffffffffffffffffffffffffffffff1614610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf9061393f565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610ef39190613712565b60206040518083038186803b158015610f0b57600080fd5b505afa158015610f1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f43919061318e565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610f80929190613779565b602060405180830381600087803b158015610f9a57600080fd5b505af1158015610fae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd29190613064565b505050565b6000610fe1610a22565b8210611022576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110199061383f565b60405180910390fd5b819050919050565b611032611a8c565b73ffffffffffffffffffffffffffffffffffffffff166110506112d9565b73ffffffffffffffffffffffffffffffffffffffff16146110a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109d9061393f565b60405180910390fd5b80600b90805190602001906110bc929190612c0f565b5050565b60006110cb8261212b565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113e906138ff565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600b80546111ce90613e76565b80601f01602080910402602001604051908101604052809291908181526020018280546111fa90613e76565b80156112475780601f1061121c57610100808354040283529160200191611247565b820191906000526020600020905b81548152906001019060200180831161122a57829003601f168201915b5050505050905090565b611259611a8c565b73ffffffffffffffffffffffffffffffffffffffff166112776112d9565b73ffffffffffffffffffffffffffffffffffffffff16146112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c49061393f565b60405180910390fd5b6112d7600061232e565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461131290613e76565b80601f016020809104026020016040519081016040528092919081815260200182805461133e90613e76565b801561138b5780601f106113605761010080835404028352916020019161138b565b820191906000526020600020905b81548152906001019060200180831161136e57829003601f168201915b5050505050905090565b600260095414156113db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d290613a5f565b60405180910390fd5b6002600981905550600d60009054906101000a900460ff16611432576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142990613a9f565b60405180910390fd5b67011c37937e080000813481836114499190613ca6565b14611489576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148090613a1f565b60405180910390fd5b82600c5481611496610a22565b6114a09190613c1f565b11156114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d89061385f565b60405180910390fd5b836005811115611526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151d9061389f565b60405180910390fd5b61153033866123f4565b50505050600160098190555050565b611547611a8c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ac9061395f565b60405180910390fd5b80600660006115c2611a8c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661166f611a8c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116b491906137a2565b60405180910390a35050565b6116cb848484611b46565b6116d784848484612412565b611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d906139bf565b60405180910390fd5b50505050565b600581565b606061172c82611a7f565b61176b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611762906138bf565b60405180910390fd5b600b611776836125a9565b6040516020016117879291906136d8565b6040516020818303038152906040529050919050565b600c5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611845611a8c565b73ffffffffffffffffffffffffffffffffffffffff166118636112d9565b73ffffffffffffffffffffffffffffffffffffffff16146118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b09061393f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611929576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611920906137ff565b60405180910390fd5b6119328161232e565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a0057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a6857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a785750611a778261270a565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611b518261212b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611b78611a8c565b73ffffffffffffffffffffffffffffffffffffffff161480611bd45750611b9d611a8c565b73ffffffffffffffffffffffffffffffffffffffff16611bbc84610884565b73ffffffffffffffffffffffffffffffffffffffff16145b80611bf05750611bef8260000151611bea611a8c565b6117a9565b5b905080611c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c299061397f565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9b9061391f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0b9061387f565b60405180910390fd5b611d218585856001612774565b611d316000848460000151611a94565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611d9f9190613d00565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611e439190613bd9565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611f499190613c1f565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561208f57611fbf81611a7f565b1561208e576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120f7868686600161277a565b505050505050565b6000818361210d9190613ca6565b905092915050565b600081836121239190613c75565b905092915050565b612133612c95565b61213c82611a7f565b61217b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121729061381f565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106121df5760017f0000000000000000000000000000000000000000000000000000000000000000846121d29190613d34565b6121dc9190613c1f565b90505b60008390505b8181106122ed576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122d957809350505050612329565b5080806122e590613e4c565b9150506121e5565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232090613a7f565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61240e828260405180602001604052806000815250612780565b5050565b60006124338473ffffffffffffffffffffffffffffffffffffffff16612bfc565b1561259c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261245c611a8c565b8786866040518563ffffffff1660e01b815260040161247e949392919061372d565b602060405180830381600087803b15801561249857600080fd5b505af19250505080156124c957506040513d601f19601f820116820180604052508101906124c691906130be565b60015b61254c573d80600081146124f9576040519150601f19603f3d011682016040523d82523d6000602084013e6124fe565b606091505b50600081511415612544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253b906139bf565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125a1565b600190505b949350505050565b606060008214156125f1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612705565b600082905060005b6000821461262357808061260c90613ed9565b915050600a8261261c9190613c75565b91506125f9565b60008167ffffffffffffffff81111561263f5761263e61400f565b5b6040519080825280601f01601f1916602001820160405280156126715781602001600182028036833780820191505090505b5090505b600085146126fe5760018261268a9190613d34565b9150600a856126999190613f22565b60306126a59190613c1f565b60f81b8183815181106126bb576126ba613fe0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126f79190613c75565b9450612675565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156127f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ed906139ff565b60405180910390fd5b6127ff81611a7f565b1561283f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612836906139df565b60405180910390fd5b61284c6000858386612774565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516129499190613bd9565b6fffffffffffffffffffffffffffffffff1681526020018583602001516129709190613bd9565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612bdf57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b7f6000888488612412565b612bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb5906139bf565b60405180910390fd5b8180612bc990613ed9565b9250508080612bd790613ed9565b915050612b0e565b5080600081905550612bf4600087858861277a565b505050505050565b600080823b905060008111915050919050565b828054612c1b90613e76565b90600052602060002090601f016020900481019282612c3d5760008555612c84565b82601f10612c5657805160ff1916838001178555612c84565b82800160010185558215612c84579182015b82811115612c83578251825591602001919060010190612c68565b5b509050612c919190612ccf565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612ce8576000816000905550600101612cd0565b5090565b6000612cff612cfa84613b1f565b613afa565b905082815260208101848484011115612d1b57612d1a614043565b5b612d26848285613e0a565b509392505050565b6000612d41612d3c84613b50565b613afa565b905082815260208101848484011115612d5d57612d5c614043565b5b612d68848285613e0a565b509392505050565b600081359050612d7f81614713565b92915050565b600081359050612d948161472a565b92915050565b600081519050612da98161472a565b92915050565b600081359050612dbe81614741565b92915050565b600081519050612dd381614741565b92915050565b600082601f830112612dee57612ded61403e565b5b8135612dfe848260208601612cec565b91505092915050565b600081359050612e1681614758565b92915050565b600082601f830112612e3157612e3061403e565b5b8135612e41848260208601612d2e565b91505092915050565b600081359050612e598161476f565b92915050565b600081519050612e6e8161476f565b92915050565b600060208284031215612e8a57612e8961404d565b5b6000612e9884828501612d70565b91505092915050565b60008060408385031215612eb857612eb761404d565b5b6000612ec685828601612d70565b9250506020612ed785828601612d70565b9150509250929050565b600080600060608486031215612efa57612ef961404d565b5b6000612f0886828701612d70565b9350506020612f1986828701612d70565b9250506040612f2a86828701612e4a565b9150509250925092565b60008060008060808587031215612f4e57612f4d61404d565b5b6000612f5c87828801612d70565b9450506020612f6d87828801612d70565b9350506040612f7e87828801612e4a565b925050606085013567ffffffffffffffff811115612f9f57612f9e614048565b5b612fab87828801612dd9565b91505092959194509250565b60008060408385031215612fce57612fcd61404d565b5b6000612fdc85828601612d70565b9250506020612fed85828601612d85565b9150509250929050565b6000806040838503121561300e5761300d61404d565b5b600061301c85828601612d70565b925050602061302d85828601612e4a565b9150509250929050565b60006020828403121561304d5761304c61404d565b5b600061305b84828501612d85565b91505092915050565b60006020828403121561307a5761307961404d565b5b600061308884828501612d9a565b91505092915050565b6000602082840312156130a7576130a661404d565b5b60006130b584828501612daf565b91505092915050565b6000602082840312156130d4576130d361404d565b5b60006130e284828501612dc4565b91505092915050565b6000602082840312156131015761310061404d565b5b600061310f84828501612e07565b91505092915050565b60006020828403121561312e5761312d61404d565b5b600082013567ffffffffffffffff81111561314c5761314b614048565b5b61315884828501612e1c565b91505092915050565b6000602082840312156131775761317661404d565b5b600061318584828501612e4a565b91505092915050565b6000602082840312156131a4576131a361404d565b5b60006131b284828501612e5f565b91505092915050565b600080604083850312156131d2576131d161404d565b5b60006131e085828601612e4a565b92505060206131f185828601612e4a565b9150509250929050565b61320481613d68565b82525050565b61321381613d7a565b82525050565b600061322482613b96565b61322e8185613bac565b935061323e818560208601613e19565b61324781614052565b840191505092915050565b600061325d82613ba1565b6132678185613bbd565b9350613277818560208601613e19565b61328081614052565b840191505092915050565b600061329682613ba1565b6132a08185613bce565b93506132b0818560208601613e19565b80840191505092915050565b600081546132c981613e76565b6132d38186613bce565b945060018216600081146132ee57600181146132ff57613332565b60ff19831686528186019350613332565b61330885613b81565b60005b8381101561332a5781548189015260018201915060208101905061330b565b838801955050505b50505092915050565b6000613348602283613bbd565b915061335382614063565b604082019050919050565b600061336b602683613bbd565b9150613376826140b2565b604082019050919050565b600061338e602a83613bbd565b915061339982614101565b604082019050919050565b60006133b1602383613bbd565b91506133bc82614150565b604082019050919050565b60006133d4602283613bbd565b91506133df8261419f565b604082019050919050565b60006133f7602583613bbd565b9150613402826141ee565b604082019050919050565b600061341a602283613bbd565b91506134258261423d565b604082019050919050565b600061343d601183613bbd565b91506134488261428c565b602082019050919050565b6000613460603983613bbd565b915061346b826142b5565b604082019050919050565b6000613483602b83613bbd565b915061348e82614304565b604082019050919050565b60006134a6602683613bbd565b91506134b182614353565b604082019050919050565b60006134c9600583613bce565b91506134d4826143a2565b600582019050919050565b60006134ec602083613bbd565b91506134f7826143cb565b602082019050919050565b600061350f601a83613bbd565b915061351a826143f4565b602082019050919050565b6000613532603283613bbd565b915061353d8261441d565b604082019050919050565b6000613555602283613bbd565b91506135608261446c565b604082019050919050565b6000613578603383613bbd565b9150613583826144bb565b604082019050919050565b600061359b601d83613bbd565b91506135a68261450a565b602082019050919050565b60006135be602183613bbd565b91506135c982614533565b604082019050919050565b60006135e1601883613bbd565b91506135ec82614582565b602082019050919050565b6000613604602e83613bbd565b915061360f826145ab565b604082019050919050565b6000613627601f83613bbd565b9150613632826145fa565b602082019050919050565b600061364a602f83613bbd565b915061365582614623565b604082019050919050565b600061366d601783613bbd565b915061367882614672565b602082019050919050565b6000613690602d83613bbd565b915061369b8261469b565b604082019050919050565b60006136b3600183613bce565b91506136be826146ea565b600182019050919050565b6136d281613e00565b82525050565b60006136e482856132bc565b91506136ef826136a6565b91506136fb828461328b565b9150613706826134bc565b91508190509392505050565b600060208201905061372760008301846131fb565b92915050565b600060808201905061374260008301876131fb565b61374f60208301866131fb565b61375c60408301856136c9565b818103606083015261376e8184613219565b905095945050505050565b600060408201905061378e60008301856131fb565b61379b60208301846136c9565b9392505050565b60006020820190506137b7600083018461320a565b92915050565b600060208201905081810360008301526137d78184613252565b905092915050565b600060208201905081810360008301526137f88161333b565b9050919050565b600060208201905081810360008301526138188161335e565b9050919050565b6000602082019050818103600083015261383881613381565b9050919050565b60006020820190508181036000830152613858816133a4565b9050919050565b60006020820190508181036000830152613878816133c7565b9050919050565b60006020820190508181036000830152613898816133ea565b9050919050565b600060208201905081810360008301526138b88161340d565b9050919050565b600060208201905081810360008301526138d881613430565b9050919050565b600060208201905081810360008301526138f881613453565b9050919050565b6000602082019050818103600083015261391881613476565b9050919050565b6000602082019050818103600083015261393881613499565b9050919050565b60006020820190508181036000830152613958816134df565b9050919050565b6000602082019050818103600083015261397881613502565b9050919050565b6000602082019050818103600083015261399881613525565b9050919050565b600060208201905081810360008301526139b881613548565b9050919050565b600060208201905081810360008301526139d88161356b565b9050919050565b600060208201905081810360008301526139f88161358e565b9050919050565b60006020820190508181036000830152613a18816135b1565b9050919050565b60006020820190508181036000830152613a38816135d4565b9050919050565b60006020820190508181036000830152613a58816135f7565b9050919050565b60006020820190508181036000830152613a788161361a565b9050919050565b60006020820190508181036000830152613a988161363d565b9050919050565b60006020820190508181036000830152613ab881613660565b9050919050565b60006020820190508181036000830152613ad881613683565b9050919050565b6000602082019050613af460008301846136c9565b92915050565b6000613b04613b15565b9050613b108282613ea8565b919050565b6000604051905090565b600067ffffffffffffffff821115613b3a57613b3961400f565b5b613b4382614052565b9050602081019050919050565b600067ffffffffffffffff821115613b6b57613b6a61400f565b5b613b7482614052565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613be482613dc4565b9150613bef83613dc4565b9250826fffffffffffffffffffffffffffffffff03821115613c1457613c13613f53565b5b828201905092915050565b6000613c2a82613e00565b9150613c3583613e00565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c6a57613c69613f53565b5b828201905092915050565b6000613c8082613e00565b9150613c8b83613e00565b925082613c9b57613c9a613f82565b5b828204905092915050565b6000613cb182613e00565b9150613cbc83613e00565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cf557613cf4613f53565b5b828202905092915050565b6000613d0b82613dc4565b9150613d1683613dc4565b925082821015613d2957613d28613f53565b5b828203905092915050565b6000613d3f82613e00565b9150613d4a83613e00565b925082821015613d5d57613d5c613f53565b5b828203905092915050565b6000613d7382613de0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613dbd82613d68565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e37578082015181840152602081019050613e1c565b83811115613e46576000848401525b50505050565b6000613e5782613e00565b91506000821415613e6b57613e6a613f53565b5b600182039050919050565b60006002820490506001821680613e8e57607f821691505b60208210811415613ea257613ea1613fb1565b5b50919050565b613eb182614052565b810181811067ffffffffffffffff82111715613ed057613ecf61400f565b5b80604052505050565b6000613ee482613e00565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f1757613f16613f53565b5b600182019050919050565b6000613f2d82613e00565b9150613f3883613e00565b925082613f4857613f47613f82565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b61471c81613d68565b811461472757600080fd5b50565b61473381613d7a565b811461473e57600080fd5b50565b61474a81613d86565b811461475557600080fd5b50565b61476181613db2565b811461476c57600080fd5b50565b61477881613e00565b811461478357600080fd5b5056fea26469706673582212204c7cb4eacb4e4fc6c067c75cef2563a1e83db0a95cb7b3c631f6b3f0ea0f709364736f6c63430008070033697066733a2f2f516d64786e71466676744a387741524c4d466a31785035466b50725461617a4274596252346d6f6d4d6a56433753

Deployed Bytecode

0x6080604052600436106101d85760003560e01c806355f804b311610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb01146106b0578063d7224ba0146106db578063e985e9c514610706578063f2fde38b14610743576101d8565b8063a22cb465146105f6578063b88d4fde1461061f578063c6a91b4214610648578063c87b56dd14610673576101d8565b8063715018a6116100d1578063715018a61461056d5780638da5cb5b1461058457806395d89b41146105af578063a0712d68146105da576101d8565b806355f804b31461049f5780636352211e146104c857806370a0823114610505578063714c539814610542576101d8565b806323b872dd1161017a5780633ccfd60b116101495780633ccfd60b146103f957806342842e0e1461041057806349df728c146104395780634f6ccce714610462576101d8565b806323b872dd1461032c57806328cad13d146103555780632a55205a1461037e5780632f745c59146103bc576101d8565b8063081812fc116101b6578063081812fc14610270578063095ea7b3146102ad57806318160ddd146102d65780631e84c41314610301576101d8565b806301ffc9a7146101dd57806306fdde031461021a57806307e89ec014610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190613091565b61076c565b60405161021191906137a2565b60405180910390f35b34801561022657600080fd5b5061022f6107e6565b60405161023c91906137bd565b60405180910390f35b34801561025157600080fd5b5061025a610878565b6040516102679190613adf565b60405180910390f35b34801561027c57600080fd5b5061029760048036038101906102929190613161565b610884565b6040516102a49190613712565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf9190612ff7565b610909565b005b3480156102e257600080fd5b506102eb610a22565b6040516102f89190613adf565b60405180910390f35b34801561030d57600080fd5b50610316610a2b565b60405161032391906137a2565b60405180910390f35b34801561033857600080fd5b50610353600480360381019061034e9190612ee1565b610a3e565b005b34801561036157600080fd5b5061037c60048036038101906103779190613037565b610a4e565b005b34801561038a57600080fd5b506103a560048036038101906103a091906131bb565b610ae7565b6040516103b3929190613779565b60405180910390f35b3480156103c857600080fd5b506103e360048036038101906103de9190612ff7565b610b53565b6040516103f09190613adf565b60405180910390f35b34801561040557600080fd5b5061040e610d51565b005b34801561041c57600080fd5b5061043760048036038101906104329190612ee1565b610e1c565b005b34801561044557600080fd5b50610460600480360381019061045b91906130eb565b610e3c565b005b34801561046e57600080fd5b5061048960048036038101906104849190613161565b610fd7565b6040516104969190613adf565b60405180910390f35b3480156104ab57600080fd5b506104c660048036038101906104c19190613118565b61102a565b005b3480156104d457600080fd5b506104ef60048036038101906104ea9190613161565b6110c0565b6040516104fc9190613712565b60405180910390f35b34801561051157600080fd5b5061052c60048036038101906105279190612e74565b6110d6565b6040516105399190613adf565b60405180910390f35b34801561054e57600080fd5b506105576111bf565b60405161056491906137bd565b60405180910390f35b34801561057957600080fd5b50610582611251565b005b34801561059057600080fd5b506105996112d9565b6040516105a69190613712565b60405180910390f35b3480156105bb57600080fd5b506105c4611303565b6040516105d191906137bd565b60405180910390f35b6105f460048036038101906105ef9190613161565b611395565b005b34801561060257600080fd5b5061061d60048036038101906106189190612fb7565b61153f565b005b34801561062b57600080fd5b5061064660048036038101906106419190612f34565b6116c0565b005b34801561065457600080fd5b5061065d61171c565b60405161066a9190613adf565b60405180910390f35b34801561067f57600080fd5b5061069a60048036038101906106959190613161565b611721565b6040516106a791906137bd565b60405180910390f35b3480156106bc57600080fd5b506106c561179d565b6040516106d29190613adf565b60405180910390f35b3480156106e757600080fd5b506106f06117a3565b6040516106fd9190613adf565b60405180910390f35b34801561071257600080fd5b5061072d60048036038101906107289190612ea1565b6117a9565b60405161073a91906137a2565b60405180910390f35b34801561074f57600080fd5b5061076a60048036038101906107659190612e74565b61183d565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107df57506107de82611935565b5b9050919050565b6060600180546107f590613e76565b80601f016020809104026020016040519081016040528092919081815260200182805461082190613e76565b801561086e5780601f106108435761010080835404028352916020019161086e565b820191906000526020600020905b81548152906001019060200180831161085157829003601f168201915b5050505050905090565b67011c37937e08000081565b600061088f82611a7f565b6108ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c590613abf565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610914826110c0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097c9061399f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109a4611a8c565b73ffffffffffffffffffffffffffffffffffffffff1614806109d357506109d2816109cd611a8c565b6117a9565b5b610a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a09906138df565b60405180910390fd5b610a1d838383611a94565b505050565b60008054905090565b600d60009054906101000a900460ff1681565b610a49838383611b46565b505050565b610a56611a8c565b73ffffffffffffffffffffffffffffffffffffffff16610a746112d9565b73ffffffffffffffffffffffffffffffffffffffff1614610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac19061393f565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b600080610af384611a7f565b610b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b29906138bf565b60405180910390fd5b30610b48610b418560056120ff565b6064612115565b915091509250929050565b6000610b5e836110d6565b8210610b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b96906137df565b60405180910390fd5b6000610ba9610a22565b905060008060005b83811015610d0f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ca357806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cfb5786841415610cec578195505050505050610d4b565b8380610cf790613ed9565b9450505b508080610d0790613ed9565b915050610bb1565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4290613a3f565b60405180910390fd5b92915050565b610d59611a8c565b73ffffffffffffffffffffffffffffffffffffffff16610d776112d9565b73ffffffffffffffffffffffffffffffffffffffff1614610dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc49061393f565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e18573d6000803e3d6000fd5b5050565b610e37838383604051806020016040528060008152506116c0565b505050565b610e44611a8c565b73ffffffffffffffffffffffffffffffffffffffff16610e626112d9565b73ffffffffffffffffffffffffffffffffffffffff1614610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf9061393f565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610ef39190613712565b60206040518083038186803b158015610f0b57600080fd5b505afa158015610f1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f43919061318e565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610f80929190613779565b602060405180830381600087803b158015610f9a57600080fd5b505af1158015610fae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd29190613064565b505050565b6000610fe1610a22565b8210611022576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110199061383f565b60405180910390fd5b819050919050565b611032611a8c565b73ffffffffffffffffffffffffffffffffffffffff166110506112d9565b73ffffffffffffffffffffffffffffffffffffffff16146110a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109d9061393f565b60405180910390fd5b80600b90805190602001906110bc929190612c0f565b5050565b60006110cb8261212b565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113e906138ff565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600b80546111ce90613e76565b80601f01602080910402602001604051908101604052809291908181526020018280546111fa90613e76565b80156112475780601f1061121c57610100808354040283529160200191611247565b820191906000526020600020905b81548152906001019060200180831161122a57829003601f168201915b5050505050905090565b611259611a8c565b73ffffffffffffffffffffffffffffffffffffffff166112776112d9565b73ffffffffffffffffffffffffffffffffffffffff16146112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c49061393f565b60405180910390fd5b6112d7600061232e565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461131290613e76565b80601f016020809104026020016040519081016040528092919081815260200182805461133e90613e76565b801561138b5780601f106113605761010080835404028352916020019161138b565b820191906000526020600020905b81548152906001019060200180831161136e57829003601f168201915b5050505050905090565b600260095414156113db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d290613a5f565b60405180910390fd5b6002600981905550600d60009054906101000a900460ff16611432576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142990613a9f565b60405180910390fd5b67011c37937e080000813481836114499190613ca6565b14611489576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148090613a1f565b60405180910390fd5b82600c5481611496610a22565b6114a09190613c1f565b11156114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d89061385f565b60405180910390fd5b836005811115611526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151d9061389f565b60405180910390fd5b61153033866123f4565b50505050600160098190555050565b611547611a8c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ac9061395f565b60405180910390fd5b80600660006115c2611a8c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661166f611a8c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116b491906137a2565b60405180910390a35050565b6116cb848484611b46565b6116d784848484612412565b611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d906139bf565b60405180910390fd5b50505050565b600581565b606061172c82611a7f565b61176b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611762906138bf565b60405180910390fd5b600b611776836125a9565b6040516020016117879291906136d8565b6040516020818303038152906040529050919050565b600c5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611845611a8c565b73ffffffffffffffffffffffffffffffffffffffff166118636112d9565b73ffffffffffffffffffffffffffffffffffffffff16146118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b09061393f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611929576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611920906137ff565b60405180910390fd5b6119328161232e565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a0057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a6857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a785750611a778261270a565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611b518261212b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611b78611a8c565b73ffffffffffffffffffffffffffffffffffffffff161480611bd45750611b9d611a8c565b73ffffffffffffffffffffffffffffffffffffffff16611bbc84610884565b73ffffffffffffffffffffffffffffffffffffffff16145b80611bf05750611bef8260000151611bea611a8c565b6117a9565b5b905080611c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c299061397f565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9b9061391f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0b9061387f565b60405180910390fd5b611d218585856001612774565b611d316000848460000151611a94565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611d9f9190613d00565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611e439190613bd9565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611f499190613c1f565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561208f57611fbf81611a7f565b1561208e576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120f7868686600161277a565b505050505050565b6000818361210d9190613ca6565b905092915050565b600081836121239190613c75565b905092915050565b612133612c95565b61213c82611a7f565b61217b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121729061381f565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000006483106121df5760017f0000000000000000000000000000000000000000000000000000000000000064846121d29190613d34565b6121dc9190613c1f565b90505b60008390505b8181106122ed576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122d957809350505050612329565b5080806122e590613e4c565b9150506121e5565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232090613a7f565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61240e828260405180602001604052806000815250612780565b5050565b60006124338473ffffffffffffffffffffffffffffffffffffffff16612bfc565b1561259c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261245c611a8c565b8786866040518563ffffffff1660e01b815260040161247e949392919061372d565b602060405180830381600087803b15801561249857600080fd5b505af19250505080156124c957506040513d601f19601f820116820180604052508101906124c691906130be565b60015b61254c573d80600081146124f9576040519150601f19603f3d011682016040523d82523d6000602084013e6124fe565b606091505b50600081511415612544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253b906139bf565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125a1565b600190505b949350505050565b606060008214156125f1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612705565b600082905060005b6000821461262357808061260c90613ed9565b915050600a8261261c9190613c75565b91506125f9565b60008167ffffffffffffffff81111561263f5761263e61400f565b5b6040519080825280601f01601f1916602001820160405280156126715781602001600182028036833780820191505090505b5090505b600085146126fe5760018261268a9190613d34565b9150600a856126999190613f22565b60306126a59190613c1f565b60f81b8183815181106126bb576126ba613fe0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126f79190613c75565b9450612675565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156127f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ed906139ff565b60405180910390fd5b6127ff81611a7f565b1561283f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612836906139df565b60405180910390fd5b61284c6000858386612774565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516129499190613bd9565b6fffffffffffffffffffffffffffffffff1681526020018583602001516129709190613bd9565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612bdf57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b7f6000888488612412565b612bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb5906139bf565b60405180910390fd5b8180612bc990613ed9565b9250508080612bd790613ed9565b915050612b0e565b5080600081905550612bf4600087858861277a565b505050505050565b600080823b905060008111915050919050565b828054612c1b90613e76565b90600052602060002090601f016020900481019282612c3d5760008555612c84565b82601f10612c5657805160ff1916838001178555612c84565b82800160010185558215612c84579182015b82811115612c83578251825591602001919060010190612c68565b5b509050612c919190612ccf565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612ce8576000816000905550600101612cd0565b5090565b6000612cff612cfa84613b1f565b613afa565b905082815260208101848484011115612d1b57612d1a614043565b5b612d26848285613e0a565b509392505050565b6000612d41612d3c84613b50565b613afa565b905082815260208101848484011115612d5d57612d5c614043565b5b612d68848285613e0a565b509392505050565b600081359050612d7f81614713565b92915050565b600081359050612d948161472a565b92915050565b600081519050612da98161472a565b92915050565b600081359050612dbe81614741565b92915050565b600081519050612dd381614741565b92915050565b600082601f830112612dee57612ded61403e565b5b8135612dfe848260208601612cec565b91505092915050565b600081359050612e1681614758565b92915050565b600082601f830112612e3157612e3061403e565b5b8135612e41848260208601612d2e565b91505092915050565b600081359050612e598161476f565b92915050565b600081519050612e6e8161476f565b92915050565b600060208284031215612e8a57612e8961404d565b5b6000612e9884828501612d70565b91505092915050565b60008060408385031215612eb857612eb761404d565b5b6000612ec685828601612d70565b9250506020612ed785828601612d70565b9150509250929050565b600080600060608486031215612efa57612ef961404d565b5b6000612f0886828701612d70565b9350506020612f1986828701612d70565b9250506040612f2a86828701612e4a565b9150509250925092565b60008060008060808587031215612f4e57612f4d61404d565b5b6000612f5c87828801612d70565b9450506020612f6d87828801612d70565b9350506040612f7e87828801612e4a565b925050606085013567ffffffffffffffff811115612f9f57612f9e614048565b5b612fab87828801612dd9565b91505092959194509250565b60008060408385031215612fce57612fcd61404d565b5b6000612fdc85828601612d70565b9250506020612fed85828601612d85565b9150509250929050565b6000806040838503121561300e5761300d61404d565b5b600061301c85828601612d70565b925050602061302d85828601612e4a565b9150509250929050565b60006020828403121561304d5761304c61404d565b5b600061305b84828501612d85565b91505092915050565b60006020828403121561307a5761307961404d565b5b600061308884828501612d9a565b91505092915050565b6000602082840312156130a7576130a661404d565b5b60006130b584828501612daf565b91505092915050565b6000602082840312156130d4576130d361404d565b5b60006130e284828501612dc4565b91505092915050565b6000602082840312156131015761310061404d565b5b600061310f84828501612e07565b91505092915050565b60006020828403121561312e5761312d61404d565b5b600082013567ffffffffffffffff81111561314c5761314b614048565b5b61315884828501612e1c565b91505092915050565b6000602082840312156131775761317661404d565b5b600061318584828501612e4a565b91505092915050565b6000602082840312156131a4576131a361404d565b5b60006131b284828501612e5f565b91505092915050565b600080604083850312156131d2576131d161404d565b5b60006131e085828601612e4a565b92505060206131f185828601612e4a565b9150509250929050565b61320481613d68565b82525050565b61321381613d7a565b82525050565b600061322482613b96565b61322e8185613bac565b935061323e818560208601613e19565b61324781614052565b840191505092915050565b600061325d82613ba1565b6132678185613bbd565b9350613277818560208601613e19565b61328081614052565b840191505092915050565b600061329682613ba1565b6132a08185613bce565b93506132b0818560208601613e19565b80840191505092915050565b600081546132c981613e76565b6132d38186613bce565b945060018216600081146132ee57600181146132ff57613332565b60ff19831686528186019350613332565b61330885613b81565b60005b8381101561332a5781548189015260018201915060208101905061330b565b838801955050505b50505092915050565b6000613348602283613bbd565b915061335382614063565b604082019050919050565b600061336b602683613bbd565b9150613376826140b2565b604082019050919050565b600061338e602a83613bbd565b915061339982614101565b604082019050919050565b60006133b1602383613bbd565b91506133bc82614150565b604082019050919050565b60006133d4602283613bbd565b91506133df8261419f565b604082019050919050565b60006133f7602583613bbd565b9150613402826141ee565b604082019050919050565b600061341a602283613bbd565b91506134258261423d565b604082019050919050565b600061343d601183613bbd565b91506134488261428c565b602082019050919050565b6000613460603983613bbd565b915061346b826142b5565b604082019050919050565b6000613483602b83613bbd565b915061348e82614304565b604082019050919050565b60006134a6602683613bbd565b91506134b182614353565b604082019050919050565b60006134c9600583613bce565b91506134d4826143a2565b600582019050919050565b60006134ec602083613bbd565b91506134f7826143cb565b602082019050919050565b600061350f601a83613bbd565b915061351a826143f4565b602082019050919050565b6000613532603283613bbd565b915061353d8261441d565b604082019050919050565b6000613555602283613bbd565b91506135608261446c565b604082019050919050565b6000613578603383613bbd565b9150613583826144bb565b604082019050919050565b600061359b601d83613bbd565b91506135a68261450a565b602082019050919050565b60006135be602183613bbd565b91506135c982614533565b604082019050919050565b60006135e1601883613bbd565b91506135ec82614582565b602082019050919050565b6000613604602e83613bbd565b915061360f826145ab565b604082019050919050565b6000613627601f83613bbd565b9150613632826145fa565b602082019050919050565b600061364a602f83613bbd565b915061365582614623565b604082019050919050565b600061366d601783613bbd565b915061367882614672565b602082019050919050565b6000613690602d83613bbd565b915061369b8261469b565b604082019050919050565b60006136b3600183613bce565b91506136be826146ea565b600182019050919050565b6136d281613e00565b82525050565b60006136e482856132bc565b91506136ef826136a6565b91506136fb828461328b565b9150613706826134bc565b91508190509392505050565b600060208201905061372760008301846131fb565b92915050565b600060808201905061374260008301876131fb565b61374f60208301866131fb565b61375c60408301856136c9565b818103606083015261376e8184613219565b905095945050505050565b600060408201905061378e60008301856131fb565b61379b60208301846136c9565b9392505050565b60006020820190506137b7600083018461320a565b92915050565b600060208201905081810360008301526137d78184613252565b905092915050565b600060208201905081810360008301526137f88161333b565b9050919050565b600060208201905081810360008301526138188161335e565b9050919050565b6000602082019050818103600083015261383881613381565b9050919050565b60006020820190508181036000830152613858816133a4565b9050919050565b60006020820190508181036000830152613878816133c7565b9050919050565b60006020820190508181036000830152613898816133ea565b9050919050565b600060208201905081810360008301526138b88161340d565b9050919050565b600060208201905081810360008301526138d881613430565b9050919050565b600060208201905081810360008301526138f881613453565b9050919050565b6000602082019050818103600083015261391881613476565b9050919050565b6000602082019050818103600083015261393881613499565b9050919050565b60006020820190508181036000830152613958816134df565b9050919050565b6000602082019050818103600083015261397881613502565b9050919050565b6000602082019050818103600083015261399881613525565b9050919050565b600060208201905081810360008301526139b881613548565b9050919050565b600060208201905081810360008301526139d88161356b565b9050919050565b600060208201905081810360008301526139f88161358e565b9050919050565b60006020820190508181036000830152613a18816135b1565b9050919050565b60006020820190508181036000830152613a38816135d4565b9050919050565b60006020820190508181036000830152613a58816135f7565b9050919050565b60006020820190508181036000830152613a788161361a565b9050919050565b60006020820190508181036000830152613a988161363d565b9050919050565b60006020820190508181036000830152613ab881613660565b9050919050565b60006020820190508181036000830152613ad881613683565b9050919050565b6000602082019050613af460008301846136c9565b92915050565b6000613b04613b15565b9050613b108282613ea8565b919050565b6000604051905090565b600067ffffffffffffffff821115613b3a57613b3961400f565b5b613b4382614052565b9050602081019050919050565b600067ffffffffffffffff821115613b6b57613b6a61400f565b5b613b7482614052565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613be482613dc4565b9150613bef83613dc4565b9250826fffffffffffffffffffffffffffffffff03821115613c1457613c13613f53565b5b828201905092915050565b6000613c2a82613e00565b9150613c3583613e00565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c6a57613c69613f53565b5b828201905092915050565b6000613c8082613e00565b9150613c8b83613e00565b925082613c9b57613c9a613f82565b5b828204905092915050565b6000613cb182613e00565b9150613cbc83613e00565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cf557613cf4613f53565b5b828202905092915050565b6000613d0b82613dc4565b9150613d1683613dc4565b925082821015613d2957613d28613f53565b5b828203905092915050565b6000613d3f82613e00565b9150613d4a83613e00565b925082821015613d5d57613d5c613f53565b5b828203905092915050565b6000613d7382613de0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613dbd82613d68565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e37578082015181840152602081019050613e1c565b83811115613e46576000848401525b50505050565b6000613e5782613e00565b91506000821415613e6b57613e6a613f53565b5b600182039050919050565b60006002820490506001821680613e8e57607f821691505b60208210811415613ea257613ea1613fb1565b5b50919050565b613eb182614052565b810181811067ffffffffffffffff82111715613ed057613ecf61400f565b5b80604052505050565b6000613ee482613e00565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f1757613f16613f53565b5b600182019050919050565b6000613f2d82613e00565b9150613f3883613e00565b925082613f4857613f47613f82565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b61471c81613d68565b811461472757600080fd5b50565b61473381613d7a565b811461473e57600080fd5b50565b61474a81613d86565b811461475557600080fd5b50565b61476181613db2565b811461476c57600080fd5b50565b61477881613e00565b811461478357600080fd5b5056fea26469706673582212204c7cb4eacb4e4fc6c067c75cef2563a1e83db0a95cb7b3c631f6b3f0ea0f709364736f6c63430008070033

Deployed Bytecode Sourcemap

55541:3963:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58449:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44726:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55909:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46251:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45814:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41561:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55970:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47101:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57696:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59183:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;42192:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57866:143;;;;;;;;;;;;;:::i;:::-;;47306:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58017:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41724:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57586:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44549:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43426:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57422:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19584:103;;;;;;;;;;;;;:::i;:::-;;18933:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44881:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57024:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46519:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47526:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55819:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58812:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55870:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51944:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46856:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19842:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58449:292;58597:4;58654:26;58639:41;;;:11;:41;;;;:94;;;;58697:36;58721:11;58697:23;:36::i;:::-;58639:94;58619:114;;58449:292;;;:::o;44726:94::-;44780:13;44809:5;44802:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44726:94;:::o;55909:54::-;55953:10;55909:54;:::o;46251:204::-;46319:7;46343:16;46351:7;46343;:16::i;:::-;46335:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;46425:15;:24;46441:7;46425:24;;;;;;;;;;;;;;;;;;;;;46418:31;;46251:204;;;:::o;45814:379::-;45883:13;45899:24;45915:7;45899:15;:24::i;:::-;45883:40;;45944:5;45938:11;;:2;:11;;;;45930:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;46029:5;46013:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;46038:37;46055:5;46062:12;:10;:12::i;:::-;46038:16;:37::i;:::-;46013:62;45997:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;46159:28;46168:2;46172:7;46181:5;46159:8;:28::i;:::-;45876:317;45814:379;;:::o;41561:94::-;41614:7;41637:12;;41630:19;;41561:94;:::o;55970:38::-;;;;;;;;;;;;;:::o;47101:142::-;47209:28;47219:4;47225:2;47229:7;47209:9;:28::i;:::-;47101:142;;;:::o;57696:158::-;19164:12;:10;:12::i;:::-;19153:23;;:7;:5;:7::i;:::-;:23;;;19145:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57827:19:::1;57806:18;;:40;;;;;;;;;;;;;;;;;;57696:158:::0;:::o;59183:318::-;59308:16;59326:21;59373:16;59381:7;59373;:16::i;:::-;59365:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;59440:4;59447:45;59460:26;59473:9;59484:1;59460:12;:26::i;:::-;59488:3;59447:12;:45::i;:::-;59424:69;;;;59183:318;;;;;:::o;42192:744::-;42301:7;42336:16;42346:5;42336:9;:16::i;:::-;42328:5;:24;42320:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;42398:22;42423:13;:11;:13::i;:::-;42398:38;;42443:19;42473:25;42523:9;42518:350;42542:14;42538:1;:18;42518:350;;;42572:31;42606:11;:14;42618:1;42606:14;;;;;;;;;;;42572:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42659:1;42633:28;;:9;:14;;;:28;;;42629:89;;42694:9;:14;;;42674:34;;42629:89;42751:5;42730:26;;:17;:26;;;42726:135;;;42788:5;42773:11;:20;42769:59;;;42815:1;42808:8;;;;;;;;;42769:59;42838:13;;;;;:::i;:::-;;;;42726:135;42563:305;42558:3;;;;;:::i;:::-;;;;42518:350;;;;42874:56;;;;;;;;;;:::i;:::-;;;;;;;;42192:744;;;;;:::o;57866:143::-;19164:12;:10;:12::i;:::-;19153:23;;:7;:5;:7::i;:::-;:23;;;19145:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57914:15:::1;57932:21;57914:39;;57972:10;57964:28;;:37;57993:7;57964:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;57903:106;57866:143::o:0;47306:157::-;47418:39;47435:4;47441:2;47445:7;47418:39;;;;;;;;;;;;:16;:39::i;:::-;47306:157;;;:::o;58017:168::-;19164:12;:10;:12::i;:::-;19153:23;;:7;:5;:7::i;:::-;:23;;;19145:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58083:15:::1;58101:5;:15;;;58125:4;58101:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58083:48;;58142:5;:14;;;58157:10;58169:7;58142:35;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;58072:113;58017:168:::0;:::o;41724:177::-;41791:7;41823:13;:11;:13::i;:::-;41815:5;:21;41807:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;41890:5;41883:12;;41724:177;;;:::o;57586:100::-;19164:12;:10;:12::i;:::-;19153:23;;:7;:5;:7::i;:::-;:23;;;19145:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57670:8:::1;57660:7;:18;;;;;;;;;;;;:::i;:::-;;57586:100:::0;:::o;44549:118::-;44613:7;44636:20;44648:7;44636:11;:20::i;:::-;:25;;;44629:32;;44549:118;;;:::o;43426:211::-;43490:7;43531:1;43514:19;;:5;:19;;;;43506:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;43603:12;:19;43616:5;43603:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;43595:36;;43588:43;;43426:211;;;:::o;57422:93::-;57467:13;57500:7;57493:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57422:93;:::o;19584:103::-;19164:12;:10;:12::i;:::-;19153:23;;:7;:5;:7::i;:::-;:23;;;19145:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19649:30:::1;19676:1;19649:18;:30::i;:::-;19584:103::o:0;18933:87::-;18979:7;19006:6;;;;;;;;;;;18999:13;;18933:87;:::o;44881:98::-;44937:13;44966:7;44959:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44881:98;:::o;57024:321::-;10862:1;11460:7;;:19;;11452:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10862:1;11593:7;:18;;;;56138::::1;;;;;;;;;;;56130:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;55953:10:::2;57190:14;56870:9;56851:14;56843:5;:22;;;;:::i;:::-;56842:37;56820:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;57227:14:::3;56549:9;;56514:14;56498:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:60;;56476:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;57266:14:::4;55862:1;56296:14;:34;;56274:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;57300:37:::5;57310:10;57322:14;57300:9;:37::i;:::-;56631:1:::4;56942::::3;56195::::2;;10818::::0;11772:7;:22;;;;57024:321;:::o;46519:274::-;46622:12;:10;:12::i;:::-;46610:24;;:8;:24;;;;46602:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;46719:8;46674:18;:32;46693:12;:10;:12::i;:::-;46674:32;;;;;;;;;;;;;;;:42;46707:8;46674:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;46768:8;46739:48;;46754:12;:10;:12::i;:::-;46739:48;;;46778:8;46739:48;;;;;;:::i;:::-;;;;;;;;46519:274;;:::o;47526:311::-;47663:28;47673:4;47679:2;47683:7;47663:9;:28::i;:::-;47714:48;47737:4;47743:2;47747:7;47756:5;47714:22;:48::i;:::-;47698:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;47526:311;;;;:::o;55819:44::-;55862:1;55819:44;:::o;58812:305::-;58930:13;58969:16;58977:7;58969;:16::i;:::-;58961:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;59064:7;59078:20;59079:7;59078:18;:20::i;:::-;59047:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59020:89;;58812:305;;;:::o;55870:30::-;;;;:::o;51944:43::-;;;;:::o;46856:186::-;46978:4;47001:18;:25;47020:5;47001:25;;;;;;;;;;;;;;;:35;47027:8;47001:35;;;;;;;;;;;;;;;;;;;;;;;;;46994:42;;46856:186;;;;:::o;19842:201::-;19164:12;:10;:12::i;:::-;19153:23;;:7;:5;:7::i;:::-;:23;;;19145:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19951:1:::1;19931:22;;:8;:22;;;;19923:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20007:28;20026:8;20007:18;:28::i;:::-;19842:201:::0;:::o;43000:370::-;43127:4;43172:25;43157:40;;;:11;:40;;;;:99;;;;43223:33;43208:48;;;:11;:48;;;;43157:99;:160;;;;43282:35;43267:50;;;:11;:50;;;;43157:160;:207;;;;43328:36;43352:11;43328:23;:36::i;:::-;43157:207;43143:221;;43000:370;;;:::o;48076:105::-;48133:4;48163:12;;48153:7;:22;48146:29;;48076:105;;;:::o;17657:98::-;17710:7;17737:10;17730:17;;17657:98;:::o;51766:172::-;51890:2;51863:15;:24;51879:7;51863:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;51924:7;51920:2;51904:28;;51913:5;51904:28;;;;;;;;;;;;51766:172;;;:::o;50131:1529::-;50228:35;50266:20;50278:7;50266:11;:20::i;:::-;50228:58;;50295:22;50337:13;:18;;;50321:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;50390:12;:10;:12::i;:::-;50366:36;;:20;50378:7;50366:11;:20::i;:::-;:36;;;50321:81;:142;;;;50413:50;50430:13;:18;;;50450:12;:10;:12::i;:::-;50413:16;:50::i;:::-;50321:142;50295:169;;50489:17;50473:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;50621:4;50599:26;;:13;:18;;;:26;;;50583:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;50710:1;50696:16;;:2;:16;;;;50688:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;50763:43;50785:4;50791:2;50795:7;50804:1;50763:21;:43::i;:::-;50863:49;50880:1;50884:7;50893:13;:18;;;50863:8;:49::i;:::-;50951:1;50921:12;:18;50934:4;50921:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50987:1;50959:12;:16;50972:2;50959:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;51018:43;;;;;;;;51033:2;51018:43;;;;;;51044:15;51018:43;;;;;50995:11;:20;51007:7;50995:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51289:19;51321:1;51311:7;:11;;;;:::i;:::-;51289:33;;51374:1;51333:43;;:11;:24;51345:11;51333:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;51329:236;;;51391:20;51399:11;51391:7;:20::i;:::-;51387:171;;;51451:97;;;;;;;;51478:13;:18;;;51451:97;;;;;;51509:13;:28;;;51451:97;;;;;51424:11;:24;51436:11;51424:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51387:171;51329:236;51597:7;51593:2;51578:27;;51587:4;51578:27;;;;;;;;;;;;51612:42;51633:4;51639:2;51643:7;51652:1;51612:20;:42::i;:::-;50221:1439;;;50131:1529;;;:::o;4158:98::-;4216:7;4247:1;4243;:5;;;;:::i;:::-;4236:12;;4158:98;;;;:::o;4557:::-;4615:7;4646:1;4642;:5;;;;:::i;:::-;4635:12;;4557:98;;;;:::o;43889:606::-;43965:21;;:::i;:::-;44006:16;44014:7;44006;:16::i;:::-;43998:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;44078:26;44126:12;44115:7;:23;44111:93;;44195:1;44180:12;44170:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;44149:47;;44111:93;44217:12;44232:7;44217:22;;44212:212;44249:18;44241:4;:26;44212:212;;44286:31;44320:11;:17;44332:4;44320:17;;;;;;;;;;;44286:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44376:1;44350:28;;:9;:14;;;:28;;;44346:71;;44398:9;44391:16;;;;;;;44346:71;44277:147;44269:6;;;;;:::i;:::-;;;;44212:212;;;;44432:57;;;;;;;;;;:::i;:::-;;;;;;;;43889:606;;;;:::o;20203:191::-;20277:16;20296:6;;;;;;;;;;;20277:25;;20322:8;20313:6;;:17;;;;;;;;;;;;;;;;;;20377:8;20346:40;;20367:8;20346:40;;;;;;;;;;;;20266:128;20203:191;:::o;48187:98::-;48252:27;48262:2;48266:8;48252:27;;;;;;;;;;;;:9;:27::i;:::-;48187:98;;:::o;53481:690::-;53618:4;53635:15;:2;:13;;;:15::i;:::-;53631:535;;;53690:2;53674:36;;;53711:12;:10;:12::i;:::-;53725:4;53731:7;53740:5;53674:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53661:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53922:1;53905:6;:13;:18;53901:215;;;53938:61;;;;;;;;;;:::i;:::-;;;;;;;;53901:215;54084:6;54078:13;54069:6;54065:2;54061:15;54054:38;53661:464;53806:45;;;53796:55;;;:6;:55;;;;53789:62;;;;;53631:535;54154:4;54147:11;;53481:690;;;;;;;:::o;15219:723::-;15275:13;15505:1;15496:5;:10;15492:53;;;15523:10;;;;;;;;;;;;;;;;;;;;;15492:53;15555:12;15570:5;15555:20;;15586:14;15611:78;15626:1;15618:4;:9;15611:78;;15644:8;;;;;:::i;:::-;;;;15675:2;15667:10;;;;;:::i;:::-;;;15611:78;;;15699:19;15731:6;15721:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15699:39;;15749:154;15765:1;15756:5;:10;15749:154;;15793:1;15783:11;;;;;:::i;:::-;;;15860:2;15852:5;:10;;;;:::i;:::-;15839:2;:24;;;;:::i;:::-;15826:39;;15809:6;15816;15809:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;15889:2;15880:11;;;;;:::i;:::-;;;15749:154;;;15927:6;15913:21;;;;;15219:723;;;;:::o;32333:157::-;32418:4;32457:25;32442:40;;;:11;:40;;;;32435:47;;32333:157;;;:::o;54633:141::-;;;;;:::o;55160:140::-;;;;;:::o;48624:1275::-;48729:20;48752:12;;48729:35;;48793:1;48779:16;;:2;:16;;;;48771:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48970:21;48978:12;48970:7;:21::i;:::-;48969:22;48961:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;49115:61;49145:1;49149:2;49153:12;49167:8;49115:21;:61::i;:::-;49185:30;49218:12;:16;49231:2;49218:16;;;;;;;;;;;;;;;49185:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49260:119;;;;;;;;49310:8;49280:11;:19;;;:39;;;;:::i;:::-;49260:119;;;;;;49363:8;49328:11;:24;;;:44;;;;:::i;:::-;49260:119;;;;;49241:12;:16;49254:2;49241:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49414:43;;;;;;;;49429:2;49414:43;;;;;;49440:15;49414:43;;;;;49386:11;:25;49398:12;49386:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49466:20;49489:12;49466:35;;49515:9;49510:281;49534:8;49530:1;:12;49510:281;;;49588:12;49584:2;49563:38;;49580:1;49563:38;;;;;;;;;;;;49628:59;49659:1;49663:2;49667:12;49681:5;49628:22;:59::i;:::-;49610:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;49769:14;;;;;:::i;:::-;;;;49544:3;;;;;:::i;:::-;;;;49510:281;;;;49814:12;49799;:27;;;;49833:60;49862:1;49866:2;49870:12;49884:8;49833:20;:60::i;:::-;48722:1177;;;48624:1275;;;:::o;21221:387::-;21281:4;21489:12;21556:7;21544:20;21536:28;;21599:1;21592:4;:8;21585:15;;;21221: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:377::-;10584:3;10612:39;10645:5;10612:39;:::i;:::-;10667:89;10749:6;10744:3;10667:89;:::i;:::-;10660:96;;10765:52;10810:6;10805:3;10798:4;10791:5;10787:16;10765:52;:::i;:::-;10842:6;10837:3;10833:16;10826:23;;10588:267;10478:377;;;;:::o;10885:845::-;10988:3;11025:5;11019:12;11054:36;11080:9;11054:36;:::i;:::-;11106:89;11188:6;11183:3;11106:89;:::i;:::-;11099:96;;11226:1;11215:9;11211:17;11242:1;11237:137;;;;11388:1;11383:341;;;;11204:520;;11237:137;11321:4;11317:9;11306;11302:25;11297:3;11290:38;11357:6;11352:3;11348:16;11341:23;;11237:137;;11383:341;11450:38;11482:5;11450:38;:::i;:::-;11510:1;11524:154;11538:6;11535:1;11532:13;11524:154;;;11612:7;11606:14;11602:1;11597:3;11593:11;11586:35;11662:1;11653:7;11649:15;11638:26;;11560:4;11557:1;11553:12;11548:17;;11524:154;;;11707:6;11702:3;11698:16;11691:23;;11390:334;;11204:520;;10992:738;;10885:845;;;;:::o;11736:366::-;11878:3;11899:67;11963:2;11958:3;11899:67;:::i;:::-;11892:74;;11975:93;12064:3;11975:93;:::i;:::-;12093:2;12088:3;12084:12;12077:19;;11736:366;;;:::o;12108:::-;12250:3;12271:67;12335:2;12330:3;12271:67;:::i;:::-;12264:74;;12347:93;12436:3;12347:93;:::i;:::-;12465:2;12460:3;12456:12;12449:19;;12108:366;;;:::o;12480:::-;12622:3;12643:67;12707:2;12702:3;12643:67;:::i;:::-;12636:74;;12719:93;12808:3;12719:93;:::i;:::-;12837:2;12832:3;12828:12;12821:19;;12480:366;;;:::o;12852:::-;12994:3;13015:67;13079:2;13074:3;13015:67;:::i;:::-;13008:74;;13091:93;13180:3;13091:93;:::i;:::-;13209:2;13204:3;13200:12;13193:19;;12852:366;;;:::o;13224:::-;13366:3;13387:67;13451:2;13446:3;13387:67;:::i;:::-;13380:74;;13463:93;13552:3;13463:93;:::i;:::-;13581:2;13576:3;13572:12;13565:19;;13224:366;;;:::o;13596:::-;13738:3;13759:67;13823:2;13818:3;13759:67;:::i;:::-;13752:74;;13835:93;13924:3;13835:93;:::i;:::-;13953:2;13948:3;13944:12;13937:19;;13596:366;;;:::o;13968:::-;14110:3;14131:67;14195:2;14190:3;14131:67;:::i;:::-;14124:74;;14207:93;14296:3;14207:93;:::i;:::-;14325:2;14320:3;14316:12;14309:19;;13968:366;;;:::o;14340:::-;14482:3;14503:67;14567:2;14562:3;14503:67;:::i;:::-;14496:74;;14579:93;14668:3;14579:93;:::i;:::-;14697:2;14692:3;14688:12;14681:19;;14340:366;;;:::o;14712:::-;14854:3;14875:67;14939:2;14934:3;14875:67;:::i;:::-;14868:74;;14951:93;15040:3;14951:93;:::i;:::-;15069:2;15064:3;15060:12;15053:19;;14712:366;;;:::o;15084:::-;15226:3;15247:67;15311:2;15306:3;15247:67;:::i;:::-;15240:74;;15323:93;15412:3;15323:93;:::i;:::-;15441:2;15436:3;15432:12;15425:19;;15084:366;;;:::o;15456:::-;15598:3;15619:67;15683:2;15678:3;15619:67;:::i;:::-;15612:74;;15695:93;15784:3;15695:93;:::i;:::-;15813:2;15808:3;15804:12;15797:19;;15456:366;;;:::o;15828:400::-;15988:3;16009:84;16091:1;16086:3;16009:84;:::i;:::-;16002:91;;16102:93;16191:3;16102:93;:::i;:::-;16220:1;16215:3;16211:11;16204:18;;15828:400;;;:::o;16234:366::-;16376:3;16397:67;16461:2;16456:3;16397:67;:::i;:::-;16390:74;;16473:93;16562:3;16473:93;:::i;:::-;16591:2;16586:3;16582:12;16575:19;;16234:366;;;:::o;16606:::-;16748:3;16769:67;16833:2;16828:3;16769:67;:::i;:::-;16762:74;;16845:93;16934:3;16845:93;:::i;:::-;16963:2;16958:3;16954:12;16947:19;;16606:366;;;:::o;16978:::-;17120:3;17141:67;17205:2;17200:3;17141:67;:::i;:::-;17134:74;;17217:93;17306:3;17217:93;:::i;:::-;17335:2;17330:3;17326:12;17319:19;;16978:366;;;:::o;17350:::-;17492:3;17513:67;17577:2;17572:3;17513:67;:::i;:::-;17506:74;;17589:93;17678:3;17589:93;:::i;:::-;17707:2;17702:3;17698:12;17691:19;;17350:366;;;:::o;17722:::-;17864:3;17885:67;17949:2;17944:3;17885:67;:::i;:::-;17878:74;;17961:93;18050:3;17961:93;:::i;:::-;18079:2;18074:3;18070:12;18063:19;;17722:366;;;:::o;18094:::-;18236:3;18257:67;18321:2;18316:3;18257:67;:::i;:::-;18250:74;;18333:93;18422:3;18333:93;:::i;:::-;18451:2;18446:3;18442:12;18435:19;;18094:366;;;:::o;18466:::-;18608:3;18629:67;18693:2;18688:3;18629:67;:::i;:::-;18622:74;;18705:93;18794:3;18705:93;:::i;:::-;18823:2;18818:3;18814:12;18807:19;;18466:366;;;:::o;18838:::-;18980:3;19001:67;19065:2;19060:3;19001:67;:::i;:::-;18994:74;;19077:93;19166:3;19077:93;:::i;:::-;19195:2;19190:3;19186:12;19179:19;;18838:366;;;:::o;19210:::-;19352:3;19373:67;19437:2;19432:3;19373:67;:::i;:::-;19366:74;;19449:93;19538:3;19449:93;:::i;:::-;19567:2;19562:3;19558:12;19551:19;;19210:366;;;:::o;19582:::-;19724:3;19745:67;19809:2;19804:3;19745:67;:::i;:::-;19738:74;;19821:93;19910:3;19821:93;:::i;:::-;19939:2;19934:3;19930:12;19923:19;;19582:366;;;:::o;19954:::-;20096:3;20117:67;20181:2;20176:3;20117:67;:::i;:::-;20110:74;;20193:93;20282:3;20193:93;:::i;:::-;20311:2;20306:3;20302:12;20295:19;;19954:366;;;:::o;20326:::-;20468:3;20489:67;20553:2;20548:3;20489:67;:::i;:::-;20482:74;;20565:93;20654:3;20565:93;:::i;:::-;20683:2;20678:3;20674:12;20667:19;;20326:366;;;:::o;20698:::-;20840:3;20861:67;20925:2;20920:3;20861:67;:::i;:::-;20854:74;;20937:93;21026:3;20937:93;:::i;:::-;21055:2;21050:3;21046:12;21039:19;;20698:366;;;:::o;21070:400::-;21230:3;21251:84;21333:1;21328:3;21251:84;:::i;:::-;21244:91;;21344:93;21433:3;21344:93;:::i;:::-;21462:1;21457:3;21453:11;21446:18;;21070:400;;;:::o;21476:118::-;21563:24;21581:5;21563:24;:::i;:::-;21558:3;21551:37;21476:118;;:::o;21600:961::-;21979:3;22001:92;22089:3;22080:6;22001:92;:::i;:::-;21994:99;;22110:148;22254:3;22110:148;:::i;:::-;22103:155;;22275:95;22366:3;22357:6;22275:95;:::i;:::-;22268:102;;22387:148;22531:3;22387:148;:::i;:::-;22380:155;;22552:3;22545:10;;21600:961;;;;;:::o;22567:222::-;22660:4;22698:2;22687:9;22683:18;22675:26;;22711:71;22779:1;22768:9;22764:17;22755:6;22711:71;:::i;:::-;22567:222;;;;:::o;22795:640::-;22990:4;23028:3;23017:9;23013:19;23005:27;;23042:71;23110:1;23099:9;23095:17;23086:6;23042:71;:::i;:::-;23123:72;23191:2;23180:9;23176:18;23167:6;23123:72;:::i;:::-;23205;23273:2;23262:9;23258:18;23249:6;23205:72;:::i;:::-;23324:9;23318:4;23314:20;23309:2;23298:9;23294:18;23287:48;23352:76;23423:4;23414:6;23352:76;:::i;:::-;23344:84;;22795:640;;;;;;;:::o;23441:332::-;23562:4;23600:2;23589:9;23585:18;23577:26;;23613:71;23681:1;23670:9;23666:17;23657:6;23613:71;:::i;:::-;23694:72;23762:2;23751:9;23747:18;23738:6;23694:72;:::i;:::-;23441:332;;;;;:::o;23779:210::-;23866:4;23904:2;23893:9;23889:18;23881:26;;23917:65;23979:1;23968:9;23964:17;23955:6;23917:65;:::i;:::-;23779:210;;;;:::o;23995:313::-;24108:4;24146:2;24135:9;24131:18;24123:26;;24195:9;24189:4;24185:20;24181:1;24170:9;24166:17;24159:47;24223:78;24296:4;24287:6;24223:78;:::i;:::-;24215:86;;23995:313;;;;:::o;24314:419::-;24480:4;24518:2;24507:9;24503:18;24495:26;;24567:9;24561:4;24557:20;24553:1;24542:9;24538:17;24531:47;24595:131;24721:4;24595:131;:::i;:::-;24587:139;;24314:419;;;:::o;24739:::-;24905:4;24943:2;24932:9;24928:18;24920:26;;24992:9;24986:4;24982:20;24978:1;24967:9;24963:17;24956:47;25020:131;25146:4;25020:131;:::i;:::-;25012:139;;24739:419;;;:::o;25164:::-;25330:4;25368:2;25357:9;25353:18;25345:26;;25417:9;25411:4;25407:20;25403:1;25392:9;25388:17;25381:47;25445:131;25571:4;25445:131;:::i;:::-;25437:139;;25164:419;;;:::o;25589:::-;25755:4;25793:2;25782:9;25778:18;25770:26;;25842:9;25836:4;25832:20;25828:1;25817:9;25813:17;25806:47;25870:131;25996:4;25870:131;:::i;:::-;25862:139;;25589:419;;;:::o;26014:::-;26180:4;26218:2;26207:9;26203:18;26195:26;;26267:9;26261:4;26257:20;26253:1;26242:9;26238:17;26231:47;26295:131;26421:4;26295:131;:::i;:::-;26287:139;;26014:419;;;:::o;26439:::-;26605:4;26643:2;26632:9;26628:18;26620:26;;26692:9;26686:4;26682:20;26678:1;26667:9;26663:17;26656:47;26720:131;26846:4;26720:131;:::i;:::-;26712:139;;26439:419;;;:::o;26864:::-;27030:4;27068:2;27057:9;27053:18;27045:26;;27117:9;27111:4;27107:20;27103:1;27092:9;27088:17;27081:47;27145:131;27271:4;27145:131;:::i;:::-;27137:139;;26864:419;;;:::o;27289:::-;27455:4;27493:2;27482:9;27478:18;27470:26;;27542:9;27536:4;27532:20;27528:1;27517:9;27513:17;27506:47;27570:131;27696:4;27570:131;:::i;:::-;27562:139;;27289:419;;;:::o;27714:::-;27880:4;27918:2;27907:9;27903:18;27895:26;;27967:9;27961:4;27957:20;27953:1;27942:9;27938:17;27931:47;27995:131;28121:4;27995:131;:::i;:::-;27987:139;;27714:419;;;:::o;28139:::-;28305:4;28343:2;28332:9;28328:18;28320:26;;28392:9;28386:4;28382:20;28378:1;28367:9;28363:17;28356:47;28420:131;28546:4;28420:131;:::i;:::-;28412:139;;28139:419;;;:::o;28564:::-;28730:4;28768:2;28757:9;28753:18;28745:26;;28817:9;28811:4;28807:20;28803:1;28792:9;28788:17;28781:47;28845:131;28971:4;28845:131;:::i;:::-;28837:139;;28564:419;;;:::o;28989:::-;29155:4;29193:2;29182:9;29178:18;29170:26;;29242:9;29236:4;29232:20;29228:1;29217:9;29213:17;29206:47;29270:131;29396:4;29270:131;:::i;:::-;29262:139;;28989:419;;;:::o;29414:::-;29580:4;29618:2;29607:9;29603:18;29595:26;;29667:9;29661:4;29657:20;29653:1;29642:9;29638:17;29631:47;29695:131;29821:4;29695:131;:::i;:::-;29687:139;;29414:419;;;:::o;29839:::-;30005:4;30043:2;30032:9;30028:18;30020:26;;30092:9;30086:4;30082:20;30078:1;30067:9;30063:17;30056:47;30120:131;30246:4;30120:131;:::i;:::-;30112:139;;29839:419;;;:::o;30264:::-;30430:4;30468:2;30457:9;30453:18;30445:26;;30517:9;30511:4;30507:20;30503:1;30492:9;30488:17;30481:47;30545:131;30671:4;30545:131;:::i;:::-;30537:139;;30264:419;;;:::o;30689:::-;30855:4;30893:2;30882:9;30878:18;30870:26;;30942:9;30936:4;30932:20;30928:1;30917:9;30913:17;30906:47;30970:131;31096:4;30970:131;:::i;:::-;30962:139;;30689:419;;;:::o;31114:::-;31280:4;31318:2;31307:9;31303:18;31295:26;;31367:9;31361:4;31357:20;31353:1;31342:9;31338:17;31331:47;31395:131;31521:4;31395:131;:::i;:::-;31387:139;;31114:419;;;:::o;31539:::-;31705:4;31743:2;31732:9;31728:18;31720:26;;31792:9;31786:4;31782:20;31778:1;31767:9;31763:17;31756:47;31820:131;31946:4;31820:131;:::i;:::-;31812:139;;31539:419;;;:::o;31964:::-;32130:4;32168:2;32157:9;32153:18;32145:26;;32217:9;32211:4;32207:20;32203:1;32192:9;32188:17;32181:47;32245:131;32371:4;32245:131;:::i;:::-;32237:139;;31964:419;;;:::o;32389:::-;32555:4;32593:2;32582:9;32578:18;32570:26;;32642:9;32636:4;32632:20;32628:1;32617:9;32613:17;32606:47;32670:131;32796:4;32670:131;:::i;:::-;32662:139;;32389:419;;;:::o;32814:::-;32980:4;33018:2;33007:9;33003:18;32995:26;;33067:9;33061:4;33057:20;33053:1;33042:9;33038:17;33031:47;33095:131;33221:4;33095:131;:::i;:::-;33087:139;;32814:419;;;:::o;33239:::-;33405:4;33443:2;33432:9;33428:18;33420:26;;33492:9;33486:4;33482:20;33478:1;33467:9;33463:17;33456:47;33520:131;33646:4;33520:131;:::i;:::-;33512:139;;33239:419;;;:::o;33664:::-;33830:4;33868:2;33857:9;33853:18;33845:26;;33917:9;33911:4;33907:20;33903:1;33892:9;33888:17;33881:47;33945:131;34071:4;33945:131;:::i;:::-;33937:139;;33664:419;;;:::o;34089:::-;34255:4;34293:2;34282:9;34278:18;34270:26;;34342:9;34336:4;34332:20;34328:1;34317:9;34313:17;34306:47;34370:131;34496:4;34370:131;:::i;:::-;34362:139;;34089:419;;;:::o;34514:222::-;34607:4;34645:2;34634:9;34630:18;34622:26;;34658:71;34726:1;34715:9;34711:17;34702:6;34658:71;:::i;:::-;34514:222;;;;:::o;34742:129::-;34776:6;34803:20;;:::i;:::-;34793:30;;34832:33;34860:4;34852:6;34832:33;:::i;:::-;34742:129;;;:::o;34877:75::-;34910:6;34943:2;34937:9;34927:19;;34877:75;:::o;34958:307::-;35019:4;35109:18;35101:6;35098:30;35095:56;;;35131:18;;:::i;:::-;35095:56;35169:29;35191:6;35169:29;:::i;:::-;35161:37;;35253:4;35247;35243:15;35235:23;;34958:307;;;:::o;35271:308::-;35333:4;35423:18;35415:6;35412:30;35409:56;;;35445:18;;:::i;:::-;35409:56;35483:29;35505:6;35483:29;:::i;:::-;35475:37;;35567:4;35561;35557:15;35549:23;;35271:308;;;:::o;35585:141::-;35634:4;35657:3;35649:11;;35680:3;35677:1;35670:14;35714:4;35711:1;35701:18;35693:26;;35585:141;;;:::o;35732:98::-;35783:6;35817:5;35811:12;35801:22;;35732:98;;;:::o;35836:99::-;35888:6;35922:5;35916:12;35906:22;;35836:99;;;:::o;35941:168::-;36024:11;36058:6;36053:3;36046:19;36098:4;36093:3;36089:14;36074:29;;35941:168;;;;:::o;36115:169::-;36199:11;36233:6;36228:3;36221:19;36273:4;36268:3;36264:14;36249:29;;36115:169;;;;:::o;36290:148::-;36392:11;36429:3;36414:18;;36290:148;;;;:::o;36444:273::-;36484:3;36503:20;36521:1;36503:20;:::i;:::-;36498:25;;36537:20;36555:1;36537:20;:::i;:::-;36532:25;;36659:1;36623:34;36619:42;36616:1;36613:49;36610:75;;;36665:18;;:::i;:::-;36610:75;36709:1;36706;36702:9;36695:16;;36444:273;;;;:::o;36723:305::-;36763:3;36782:20;36800:1;36782:20;:::i;:::-;36777:25;;36816:20;36834:1;36816:20;:::i;:::-;36811:25;;36970:1;36902:66;36898:74;36895:1;36892:81;36889:107;;;36976:18;;:::i;:::-;36889:107;37020:1;37017;37013:9;37006:16;;36723:305;;;;:::o;37034:185::-;37074:1;37091:20;37109:1;37091:20;:::i;:::-;37086:25;;37125:20;37143:1;37125:20;:::i;:::-;37120:25;;37164:1;37154:35;;37169:18;;:::i;:::-;37154:35;37211:1;37208;37204:9;37199:14;;37034:185;;;;:::o;37225:348::-;37265:7;37288:20;37306:1;37288:20;:::i;:::-;37283:25;;37322:20;37340:1;37322:20;:::i;:::-;37317:25;;37510:1;37442:66;37438:74;37435:1;37432:81;37427:1;37420:9;37413:17;37409:105;37406:131;;;37517:18;;:::i;:::-;37406:131;37565:1;37562;37558:9;37547:20;;37225:348;;;;:::o;37579:191::-;37619:4;37639:20;37657:1;37639:20;:::i;:::-;37634:25;;37673:20;37691:1;37673:20;:::i;:::-;37668:25;;37712:1;37709;37706:8;37703:34;;;37717:18;;:::i;:::-;37703:34;37762:1;37759;37755:9;37747:17;;37579:191;;;;:::o;37776:::-;37816:4;37836:20;37854:1;37836:20;:::i;:::-;37831:25;;37870:20;37888:1;37870:20;:::i;:::-;37865:25;;37909:1;37906;37903:8;37900:34;;;37914:18;;:::i;:::-;37900:34;37959:1;37956;37952:9;37944:17;;37776:191;;;;:::o;37973:96::-;38010:7;38039:24;38057:5;38039:24;:::i;:::-;38028:35;;37973:96;;;:::o;38075:90::-;38109:7;38152:5;38145:13;38138:21;38127:32;;38075:90;;;:::o;38171:149::-;38207:7;38247:66;38240:5;38236:78;38225:89;;38171:149;;;:::o;38326:110::-;38377:7;38406:24;38424:5;38406:24;:::i;:::-;38395:35;;38326:110;;;:::o;38442:118::-;38479:7;38519:34;38512:5;38508:46;38497:57;;38442:118;;;:::o;38566:126::-;38603:7;38643:42;38636:5;38632:54;38621:65;;38566:126;;;:::o;38698:77::-;38735:7;38764:5;38753:16;;38698:77;;;:::o;38781:154::-;38865:6;38860:3;38855;38842:30;38927:1;38918:6;38913:3;38909:16;38902:27;38781:154;;;:::o;38941:307::-;39009:1;39019:113;39033:6;39030:1;39027:13;39019:113;;;39118:1;39113:3;39109:11;39103:18;39099:1;39094:3;39090:11;39083:39;39055:2;39052:1;39048:10;39043:15;;39019:113;;;39150:6;39147:1;39144:13;39141:101;;;39230:1;39221:6;39216:3;39212:16;39205:27;39141:101;38990:258;38941:307;;;:::o;39254:171::-;39293:3;39316:24;39334:5;39316:24;:::i;:::-;39307:33;;39362:4;39355:5;39352:15;39349:41;;;39370:18;;:::i;:::-;39349:41;39417:1;39410:5;39406:13;39399:20;;39254:171;;;:::o;39431:320::-;39475:6;39512:1;39506:4;39502:12;39492:22;;39559:1;39553:4;39549:12;39580:18;39570:81;;39636:4;39628:6;39624:17;39614:27;;39570:81;39698:2;39690:6;39687:14;39667:18;39664:38;39661:84;;;39717:18;;:::i;:::-;39661:84;39482:269;39431:320;;;:::o;39757:281::-;39840:27;39862:4;39840:27;:::i;:::-;39832:6;39828:40;39970:6;39958:10;39955:22;39934:18;39922:10;39919:34;39916:62;39913:88;;;39981:18;;:::i;:::-;39913:88;40021:10;40017:2;40010:22;39800:238;39757:281;;:::o;40044:233::-;40083:3;40106:24;40124:5;40106:24;:::i;:::-;40097:33;;40152:66;40145:5;40142:77;40139:103;;;40222:18;;:::i;:::-;40139:103;40269:1;40262:5;40258:13;40251:20;;40044:233;;;:::o;40283:176::-;40315:1;40332:20;40350:1;40332:20;:::i;:::-;40327:25;;40366:20;40384:1;40366:20;:::i;:::-;40361:25;;40405:1;40395:35;;40410:18;;:::i;:::-;40395:35;40451:1;40448;40444:9;40439:14;;40283:176;;;;:::o;40465:180::-;40513:77;40510:1;40503:88;40610:4;40607:1;40600:15;40634:4;40631:1;40624:15;40651:180;40699:77;40696:1;40689:88;40796:4;40793:1;40786:15;40820:4;40817:1;40810:15;40837:180;40885:77;40882:1;40875:88;40982:4;40979:1;40972:15;41006:4;41003:1;40996:15;41023:180;41071:77;41068:1;41061:88;41168:4;41165:1;41158:15;41192:4;41189:1;41182:15;41209:180;41257:77;41254:1;41247:88;41354:4;41351:1;41344:15;41378:4;41375:1;41368:15;41395:117;41504:1;41501;41494:12;41518:117;41627:1;41624;41617:12;41641:117;41750:1;41747;41740:12;41764:117;41873:1;41870;41863:12;41887:102;41928:6;41979:2;41975:7;41970:2;41963:5;41959:14;41955:28;41945:38;;41887:102;;;:::o;41995:221::-;42135:34;42131:1;42123:6;42119:14;42112:58;42204:4;42199:2;42191:6;42187:15;42180:29;41995:221;:::o;42222:225::-;42362:34;42358:1;42350:6;42346:14;42339:58;42431:8;42426:2;42418:6;42414:15;42407:33;42222:225;:::o;42453:229::-;42593:34;42589:1;42581:6;42577:14;42570:58;42662:12;42657:2;42649:6;42645:15;42638:37;42453:229;:::o;42688:222::-;42828:34;42824:1;42816:6;42812:14;42805:58;42897:5;42892:2;42884:6;42880:15;42873:30;42688:222;:::o;42916:221::-;43056:34;43052:1;43044:6;43040:14;43033:58;43125:4;43120:2;43112:6;43108:15;43101:29;42916:221;:::o;43143:224::-;43283:34;43279:1;43271:6;43267:14;43260:58;43352:7;43347:2;43339:6;43335:15;43328:32;43143:224;:::o;43373:221::-;43513:34;43509:1;43501:6;43497:14;43490:58;43582:4;43577:2;43569:6;43565:15;43558:29;43373:221;:::o;43600:167::-;43740:19;43736:1;43728:6;43724:14;43717:43;43600:167;:::o;43773:244::-;43913:34;43909:1;43901:6;43897:14;43890:58;43982:27;43977:2;43969:6;43965:15;43958:52;43773:244;:::o;44023:230::-;44163:34;44159:1;44151:6;44147:14;44140:58;44232:13;44227:2;44219:6;44215:15;44208:38;44023:230;:::o;44259:225::-;44399:34;44395:1;44387:6;44383:14;44376:58;44468:8;44463:2;44455:6;44451:15;44444:33;44259:225;:::o;44490:155::-;44630:7;44626:1;44618:6;44614:14;44607:31;44490:155;:::o;44651:182::-;44791:34;44787:1;44779:6;44775:14;44768:58;44651:182;:::o;44839:176::-;44979:28;44975:1;44967:6;44963:14;44956:52;44839:176;:::o;45021:237::-;45161:34;45157:1;45149:6;45145:14;45138:58;45230:20;45225:2;45217:6;45213:15;45206:45;45021:237;:::o;45264:221::-;45404:34;45400:1;45392:6;45388:14;45381:58;45473:4;45468:2;45460:6;45456:15;45449:29;45264:221;:::o;45491:238::-;45631:34;45627:1;45619:6;45615:14;45608:58;45700:21;45695:2;45687:6;45683:15;45676:46;45491:238;:::o;45735:179::-;45875:31;45871:1;45863:6;45859:14;45852:55;45735:179;:::o;45920:220::-;46060:34;46056:1;46048:6;46044:14;46037:58;46129:3;46124:2;46116:6;46112:15;46105:28;45920:220;:::o;46146:174::-;46286:26;46282:1;46274:6;46270:14;46263:50;46146:174;:::o;46326:233::-;46466:34;46462:1;46454:6;46450:14;46443:58;46535:16;46530:2;46522:6;46518:15;46511:41;46326:233;:::o;46565:181::-;46705:33;46701:1;46693:6;46689:14;46682:57;46565:181;:::o;46752:234::-;46892:34;46888:1;46880:6;46876:14;46869:58;46961:17;46956:2;46948:6;46944:15;46937:42;46752:234;:::o;46992:173::-;47132:25;47128:1;47120:6;47116:14;47109:49;46992:173;:::o;47171:232::-;47311:34;47307:1;47299:6;47295:14;47288:58;47380:15;47375:2;47367:6;47363:15;47356:40;47171:232;:::o;47409:151::-;47549:3;47545:1;47537:6;47533:14;47526:27;47409:151;:::o;47566:122::-;47639:24;47657:5;47639:24;:::i;:::-;47632:5;47629:35;47619:63;;47678:1;47675;47668:12;47619:63;47566:122;:::o;47694:116::-;47764:21;47779:5;47764:21;:::i;:::-;47757:5;47754:32;47744:60;;47800:1;47797;47790:12;47744:60;47694:116;:::o;47816:120::-;47888:23;47905:5;47888:23;:::i;:::-;47881:5;47878:34;47868:62;;47926:1;47923;47916:12;47868:62;47816:120;:::o;47942:150::-;48029:38;48061:5;48029:38;:::i;:::-;48022:5;48019:49;48009:77;;48082:1;48079;48072:12;48009:77;47942:150;:::o;48098:122::-;48171:24;48189:5;48171:24;:::i;:::-;48164:5;48161:35;48151:63;;48210:1;48207;48200:12;48151:63;48098:122;:::o

Swarm Source

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