ETH Price: $3,071.90 (+0.76%)
Gas: 4 Gwei

Token

McdonalsApplication (MCJOB)
 

Overview

Max Total Supply

1,111 MCJOB

Holders

567

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MCJOB
0xaea6bdf19a5df265af8972aef23b6b2fe518b320
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:
McdonalsApplication

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

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

// File: contracts/Application.sol

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol



pragma solidity ^0.8.0;









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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    string memory baseURI = _baseURI();
    return
      bytes(baseURI).length > 0
        ? string(abi.encodePacked(baseURI, tokenId.toString()))
        : "";
  }

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: transfer to non ERC721Receiver implementer"
    );
  }

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `tokenId` token must be owned by `from`.
   *
   * Emits a {Transfer} event.
   */
  function _transfer(
    address from,
    address to,
    uint256 tokenId
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

  /**
   * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
   * The call is not executed if the target address is not a contract.
   *
   * @param from address representing the previous owner of the given token ID
   * @param to target address that will receive the tokens
   * @param tokenId uint256 ID of the token to be transferred
   * @param _data bytes optional data to send along with the call
   * @return bool whether the call correctly returned the expected magic value
   */
  function _checkOnERC721Received(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) private returns (bool) {
    if (to.isContract()) {
      try
        IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data)
      returns (bytes4 retval) {
        return retval == IERC721Receiver(to).onERC721Received.selector;
      } catch (bytes memory reason) {
        if (reason.length == 0) {
          revert("ERC721A: transfer to non ERC721Receiver implementer");
        } else {
          assembly {
            revert(add(32, reason), mload(reason))
          }
        }
      }
    } else {
      return true;
    }
  }

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
   * transferred to `to`.
   * - When `from` is zero, `tokenId` will be minted for `to`.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

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

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

pragma solidity ^0.8.0;









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

    Counters.Counter private tokenCounter;

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

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

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




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

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



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

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

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



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


    constructor(
    ) ERC721A("McdonalsApplication", "MCJOB", 100, maxSupply) {
    }

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

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

        _safeMint(msg.sender, numberOfTokens);
    }



    //A simple free mint function to avoid confusion
    //The normal mint function with a cost of 0 would work too
    function freeMint(uint256 numberOfTokens)
        external
        nonReentrant
        publicSaleActive
        canMintNFTs(numberOfTokens)
        maxMintsPerTX(numberOfTokens)
        freeMintsAvailable()
    {
        _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 setNumFreeMints(uint256 _numfreemints)
        external
        onlyOwner
    {
        NUM_FREE_MINTS = _numfreemints;
    }


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

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



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

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

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

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

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

        return
            baseURI;
    }

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

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

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

}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c060405260008055600060075560405180606001604052806035815260200162004e2b60359139600b90805190602001906200003e929190620002b3565b50610457600c556103e8600d556001600e60006101000a81548160ff0219169083151502179055503480156200007357600080fd5b506040518060400160405280601381526020017f4d63646f6e616c734170706c69636174696f6e000000000000000000000000008152506040518060400160405280600581526020017f4d434a4f420000000000000000000000000000000000000000000000000000008152506064600c54600081116200012b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200012290620003d3565b60405180910390fd5b6000821162000171576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016890620003b1565b60405180910390fd5b836001908051906020019062000189929190620002b3565b508260029080519060200190620001a2929190620002b3565b508160a08181525050806080818152505050505050620001d7620001cb620001e560201b60201c565b620001ed60201b60201c565b600160098190555062000509565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002c19062000406565b90600052602060002090601f016020900481019282620002e5576000855562000331565b82601f106200030057805160ff191683800117855562000331565b8280016001018555821562000331579182015b828111156200033057825182559160200191906001019062000313565b5b50905062000340919062000344565b5090565b5b808211156200035f57600081600090555060010162000345565b5090565b600062000372602783620003f5565b91506200037f826200046b565b604082019050919050565b600062000399602e83620003f5565b9150620003a682620004ba565b604082019050919050565b60006020820190508181036000830152620003cc8162000363565b9050919050565b60006020820190508181036000830152620003ee816200038a565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200041f57607f821691505b602082108114156200043657620004356200043c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a0516148f16200053a600039600081816124b6015281816124df0152612a170152600050506148f16000f3fe6080604052600436106101f95760003560e01c80636352211e1161010d578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd14610711578063d5abeb011461074e578063d7224ba014610779578063e985e9c5146107a4578063f2fde38b146107e1576101f9565b8063a0712d6814610678578063a22cb46514610694578063b88d4fde146106bd578063c6a91b42146106e6576101f9565b80637c928fe9116100dc5780637c928fe9146105ce5780638da5cb5b146105f757806395d89b4114610622578063982d669e1461064d576101f9565b80636352211e1461051257806370a082311461054f578063714c53981461058c578063715018a6146105b7576101f9565b806323b872dd116101905780633ccfd60b1161015f5780633ccfd60b1461044357806342842e0e1461045a57806349df728c146104835780634f6ccce7146104ac57806355f804b3146104e9576101f9565b806323b872dd1461037657806328cad13d1461039f5780632a55205a146103c85780632f745c5914610406576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce5780630a00ae83146102f757806318160ddd146103205780631e84c4131461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b57806307e89ec014610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906132ca565b61080a565b60405161023291906138f1565b60405180910390f35b34801561024757600080fd5b50610250610884565b60405161025d919061390c565b60405180910390f35b34801561027257600080fd5b5061027b610916565b6040516102889190613c6e565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b3919061339a565b610921565b6040516102c59190613861565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f09190613230565b6109a6565b005b34801561030357600080fd5b5061031e6004803603810190610319919061339a565b610abf565b005b34801561032c57600080fd5b50610335610b45565b6040516103429190613c6e565b60405180910390f35b34801561035757600080fd5b50610360610b4e565b60405161036d91906138f1565b60405180910390f35b34801561038257600080fd5b5061039d6004803603810190610398919061311a565b610b61565b005b3480156103ab57600080fd5b506103c660048036038101906103c19190613270565b610b71565b005b3480156103d457600080fd5b506103ef60048036038101906103ea91906133f4565b610c0a565b6040516103fd9291906138c8565b60405180910390f35b34801561041257600080fd5b5061042d60048036038101906104289190613230565b610c76565b60405161043a9190613c6e565b60405180910390f35b34801561044f57600080fd5b50610458610e74565b005b34801561046657600080fd5b50610481600480360381019061047c919061311a565b610f3f565b005b34801561048f57600080fd5b506104aa60048036038101906104a59190613324565b610f5f565b005b3480156104b857600080fd5b506104d360048036038101906104ce919061339a565b6110fa565b6040516104e09190613c6e565b60405180910390f35b3480156104f557600080fd5b50610510600480360381019061050b9190613351565b61114d565b005b34801561051e57600080fd5b506105396004803603810190610534919061339a565b6111e3565b6040516105469190613861565b60405180910390f35b34801561055b57600080fd5b50610576600480360381019061057191906130ad565b6111f9565b6040516105839190613c6e565b60405180910390f35b34801561059857600080fd5b506105a16112e2565b6040516105ae919061390c565b60405180910390f35b3480156105c357600080fd5b506105cc611374565b005b3480156105da57600080fd5b506105f560048036038101906105f0919061339a565b6113fc565b005b34801561060357600080fd5b5061060c611599565b6040516106199190613861565b60405180910390f35b34801561062e57600080fd5b506106376115c3565b604051610644919061390c565b60405180910390f35b34801561065957600080fd5b50610662611655565b60405161066f9190613c6e565b60405180910390f35b610692600480360381019061068d919061339a565b61165b565b005b3480156106a057600080fd5b506106bb60048036038101906106b691906131f0565b611816565b005b3480156106c957600080fd5b506106e460048036038101906106df919061316d565b611997565b005b3480156106f257600080fd5b506106fb6119f3565b6040516107089190613c6e565b60405180910390f35b34801561071d57600080fd5b506107386004803603810190610733919061339a565b6119f8565b604051610745919061390c565b60405180910390f35b34801561075a57600080fd5b50610763611ad4565b6040516107709190613c6e565b60405180910390f35b34801561078557600080fd5b5061078e611ada565b60405161079b9190613c6e565b60405180910390f35b3480156107b057600080fd5b506107cb60048036038101906107c691906130da565b611ae0565b6040516107d891906138f1565b60405180910390f35b3480156107ed57600080fd5b50610808600480360381019061080391906130ad565b611b74565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087d575061087c82611c6c565b5b9050919050565b60606001805461089390613fe5565b80601f01602080910402602001604051908101604052809291908181526020018280546108bf90613fe5565b801561090c5780601f106108e15761010080835404028352916020019161090c565b820191906000526020600020905b8154815290600101906020018083116108ef57829003601f168201915b5050505050905090565b662386f26fc1000081565b600061092c82611db6565b61096b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096290613c2e565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b1826111e3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1990613aee565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a41611dc3565b73ffffffffffffffffffffffffffffffffffffffff161480610a705750610a6f81610a6a611dc3565b611ae0565b5b610aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa690613a2e565b60405180910390fd5b610aba838383611dcb565b505050565b610ac7611dc3565b73ffffffffffffffffffffffffffffffffffffffff16610ae5611599565b73ffffffffffffffffffffffffffffffffffffffff1614610b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3290613a8e565b60405180910390fd5b80600d8190555050565b60008054905090565b600e60009054906101000a900460ff1681565b610b6c838383611e7d565b505050565b610b79611dc3565b73ffffffffffffffffffffffffffffffffffffffff16610b97611599565b73ffffffffffffffffffffffffffffffffffffffff1614610bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be490613a8e565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b600080610c1684611db6565b610c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4c90613a0e565b60405180910390fd5b30610c6b610c64856005612436565b606461244c565b915091509250929050565b6000610c81836111f9565b8210610cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb99061392e565b60405180910390fd5b6000610ccc610b45565b905060008060005b83811015610e32576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610dc657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e1e5786841415610e0f578195505050505050610e6e565b8380610e1a90614048565b9450505b508080610e2a90614048565b915050610cd4565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6590613bae565b60405180910390fd5b92915050565b610e7c611dc3565b73ffffffffffffffffffffffffffffffffffffffff16610e9a611599565b73ffffffffffffffffffffffffffffffffffffffff1614610ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee790613a8e565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f3b573d6000803e3d6000fd5b5050565b610f5a83838360405180602001604052806000815250611997565b505050565b610f67611dc3565b73ffffffffffffffffffffffffffffffffffffffff16610f85611599565b73ffffffffffffffffffffffffffffffffffffffff1614610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd290613a8e565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016110169190613861565b60206040518083038186803b15801561102e57600080fd5b505afa158015611042573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061106691906133c7565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016110a39291906138c8565b602060405180830381600087803b1580156110bd57600080fd5b505af11580156110d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110f5919061329d565b505050565b6000611104610b45565b8210611145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113c9061398e565b60405180910390fd5b819050919050565b611155611dc3565b73ffffffffffffffffffffffffffffffffffffffff16611173611599565b73ffffffffffffffffffffffffffffffffffffffff16146111c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c090613a8e565b60405180910390fd5b80600b90805190602001906111df929190612e48565b5050565b60006111ee82612462565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561126a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126190613a4e565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600b80546112f190613fe5565b80601f016020809104026020016040519081016040528092919081815260200182805461131d90613fe5565b801561136a5780601f1061133f5761010080835404028352916020019161136a565b820191906000526020600020905b81548152906001019060200180831161134d57829003601f168201915b5050505050905090565b61137c611dc3565b73ffffffffffffffffffffffffffffffffffffffff1661139a611599565b73ffffffffffffffffffffffffffffffffffffffff16146113f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e790613a8e565b60405180910390fd5b6113fa6000612665565b565b60026009541415611442576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143990613bce565b60405180910390fd5b6002600981905550600e60009054906101000a900460ff16611499576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149090613c0e565b60405180910390fd5b80600c54816114a6610b45565b6114b09190613d8e565b11156114f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e8906139ae565b60405180910390fd5b816005811115611536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152d906139ee565b60405180910390fd5b600d54611541610b45565b1115611582576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157990613b6e565b60405180910390fd5b61158c338461272b565b5050600160098190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546115d290613fe5565b80601f01602080910402602001604051908101604052809291908181526020018280546115fe90613fe5565b801561164b5780601f106116205761010080835404028352916020019161164b565b820191906000526020600020905b81548152906001019060200180831161162e57829003601f168201915b5050505050905090565b600d5481565b600260095414156116a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169890613bce565b60405180910390fd5b6002600981905550662386f26fc1000081600d546116bd610b45565b1115611711573481836116d09190613e15565b14611710576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170790613b8e565b60405180910390fd5b5b600e60009054906101000a900460ff16611760576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175790613c0e565b60405180910390fd5b82600c548161176d610b45565b6117779190613d8e565b11156117b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117af906139ae565b60405180910390fd5b8360058111156117fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f4906139ee565b60405180910390fd5b611807338661272b565b50505050600160098190555050565b61181e611dc3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561188c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188390613aae565b60405180910390fd5b8060066000611899611dc3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611946611dc3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161198b91906138f1565b60405180910390a35050565b6119a2848484611e7d565b6119ae84848484612749565b6119ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e490613b0e565b60405180910390fd5b50505050565b600581565b6060611a0382611db6565b611a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3990613a0e565b60405180910390fd5b600b8054611a4f90613fe5565b80601f0160208091040260200160405190810160405280929190818152602001828054611a7b90613fe5565b8015611ac85780601f10611a9d57610100808354040283529160200191611ac8565b820191906000526020600020905b815481529060010190602001808311611aab57829003601f168201915b50505050509050919050565b600c5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b7c611dc3565b73ffffffffffffffffffffffffffffffffffffffff16611b9a611599565b73ffffffffffffffffffffffffffffffffffffffff1614611bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be790613a8e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c579061394e565b60405180910390fd5b611c6981612665565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d3757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611d9f57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611daf5750611dae826128e0565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611e8882612462565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611eaf611dc3565b73ffffffffffffffffffffffffffffffffffffffff161480611f0b5750611ed4611dc3565b73ffffffffffffffffffffffffffffffffffffffff16611ef384610921565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f275750611f268260000151611f21611dc3565b611ae0565b5b905080611f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6090613ace565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd290613a6e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561204b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612042906139ce565b60405180910390fd5b612058858585600161294a565b6120686000848460000151611dcb565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166120d69190613e6f565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661217a9190613d48565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846122809190613d8e565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156123c6576122f681611db6565b156123c5576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461242e8686866001612950565b505050505050565b600081836124449190613e15565b905092915050565b6000818361245a9190613de4565b905092915050565b61246a612ece565b61247382611db6565b6124b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a99061396e565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106125165760017f0000000000000000000000000000000000000000000000000000000000000000846125099190613ea3565b6125139190613d8e565b90505b60008390505b818110612624576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461261057809350505050612660565b50808061261c90613fbb565b91505061251c565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265790613bee565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612745828260405180602001604052806000815250612956565b5050565b600061276a8473ffffffffffffffffffffffffffffffffffffffff16612e35565b156128d3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612793611dc3565b8786866040518563ffffffff1660e01b81526004016127b5949392919061387c565b602060405180830381600087803b1580156127cf57600080fd5b505af192505050801561280057506040513d601f19601f820116820180604052508101906127fd91906132f7565b60015b612883573d8060008114612830576040519150601f19603f3d011682016040523d82523d6000602084013e612835565b606091505b5060008151141561287b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287290613b0e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128d8565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156129cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c390613b4e565b60405180910390fd5b6129d581611db6565b15612a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0c90613b2e565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6f90613c4e565b60405180910390fd5b612a85600085838661294a565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612b829190613d48565b6fffffffffffffffffffffffffffffffff168152602001858360200151612ba99190613d48565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612e1857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612db86000888488612749565b612df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dee90613b0e565b60405180910390fd5b8180612e0290614048565b9250508080612e1090614048565b915050612d47565b5080600081905550612e2d6000878588612950565b505050505050565b600080823b905060008111915050919050565b828054612e5490613fe5565b90600052602060002090601f016020900481019282612e765760008555612ebd565b82601f10612e8f57805160ff1916838001178555612ebd565b82800160010185558215612ebd579182015b82811115612ebc578251825591602001919060010190612ea1565b5b509050612eca9190612f08565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612f21576000816000905550600101612f09565b5090565b6000612f38612f3384613cae565b613c89565b905082815260208101848484011115612f5457612f53614152565b5b612f5f848285613f79565b509392505050565b6000612f7a612f7584613cdf565b613c89565b905082815260208101848484011115612f9657612f95614152565b5b612fa1848285613f79565b509392505050565b600081359050612fb881614848565b92915050565b600081359050612fcd8161485f565b92915050565b600081519050612fe28161485f565b92915050565b600081359050612ff781614876565b92915050565b60008151905061300c81614876565b92915050565b600082601f8301126130275761302661414d565b5b8135613037848260208601612f25565b91505092915050565b60008135905061304f8161488d565b92915050565b600082601f83011261306a5761306961414d565b5b813561307a848260208601612f67565b91505092915050565b600081359050613092816148a4565b92915050565b6000815190506130a7816148a4565b92915050565b6000602082840312156130c3576130c261415c565b5b60006130d184828501612fa9565b91505092915050565b600080604083850312156130f1576130f061415c565b5b60006130ff85828601612fa9565b925050602061311085828601612fa9565b9150509250929050565b6000806000606084860312156131335761313261415c565b5b600061314186828701612fa9565b935050602061315286828701612fa9565b925050604061316386828701613083565b9150509250925092565b600080600080608085870312156131875761318661415c565b5b600061319587828801612fa9565b94505060206131a687828801612fa9565b93505060406131b787828801613083565b925050606085013567ffffffffffffffff8111156131d8576131d7614157565b5b6131e487828801613012565b91505092959194509250565b600080604083850312156132075761320661415c565b5b600061321585828601612fa9565b925050602061322685828601612fbe565b9150509250929050565b600080604083850312156132475761324661415c565b5b600061325585828601612fa9565b925050602061326685828601613083565b9150509250929050565b6000602082840312156132865761328561415c565b5b600061329484828501612fbe565b91505092915050565b6000602082840312156132b3576132b261415c565b5b60006132c184828501612fd3565b91505092915050565b6000602082840312156132e0576132df61415c565b5b60006132ee84828501612fe8565b91505092915050565b60006020828403121561330d5761330c61415c565b5b600061331b84828501612ffd565b91505092915050565b60006020828403121561333a5761333961415c565b5b600061334884828501613040565b91505092915050565b6000602082840312156133675761336661415c565b5b600082013567ffffffffffffffff81111561338557613384614157565b5b61339184828501613055565b91505092915050565b6000602082840312156133b0576133af61415c565b5b60006133be84828501613083565b91505092915050565b6000602082840312156133dd576133dc61415c565b5b60006133eb84828501613098565b91505092915050565b6000806040838503121561340b5761340a61415c565b5b600061341985828601613083565b925050602061342a85828601613083565b9150509250929050565b61343d81613ed7565b82525050565b61344c81613ee9565b82525050565b600061345d82613d10565b6134678185613d26565b9350613477818560208601613f88565b61348081614161565b840191505092915050565b600061349682613d1b565b6134a08185613d37565b93506134b0818560208601613f88565b6134b981614161565b840191505092915050565b60006134d1602283613d37565b91506134dc82614172565b604082019050919050565b60006134f4602683613d37565b91506134ff826141c1565b604082019050919050565b6000613517602a83613d37565b915061352282614210565b604082019050919050565b600061353a602383613d37565b91506135458261425f565b604082019050919050565b600061355d602283613d37565b9150613568826142ae565b604082019050919050565b6000613580602583613d37565b915061358b826142fd565b604082019050919050565b60006135a3602283613d37565b91506135ae8261434c565b604082019050919050565b60006135c6601183613d37565b91506135d18261439b565b602082019050919050565b60006135e9603983613d37565b91506135f4826143c4565b604082019050919050565b600061360c602b83613d37565b915061361782614413565b604082019050919050565b600061362f602683613d37565b915061363a82614462565b604082019050919050565b6000613652602083613d37565b915061365d826144b1565b602082019050919050565b6000613675601a83613d37565b9150613680826144da565b602082019050919050565b6000613698603283613d37565b91506136a382614503565b604082019050919050565b60006136bb602283613d37565b91506136c682614552565b604082019050919050565b60006136de603383613d37565b91506136e9826145a1565b604082019050919050565b6000613701601d83613d37565b915061370c826145f0565b602082019050919050565b6000613724602183613d37565b915061372f82614619565b604082019050919050565b6000613747601c83613d37565b915061375282614668565b602082019050919050565b600061376a601883613d37565b915061377582614691565b602082019050919050565b600061378d602e83613d37565b9150613798826146ba565b604082019050919050565b60006137b0601f83613d37565b91506137bb82614709565b602082019050919050565b60006137d3602f83613d37565b91506137de82614732565b604082019050919050565b60006137f6601783613d37565b915061380182614781565b602082019050919050565b6000613819602d83613d37565b9150613824826147aa565b604082019050919050565b600061383c602283613d37565b9150613847826147f9565b604082019050919050565b61385b81613f6f565b82525050565b60006020820190506138766000830184613434565b92915050565b60006080820190506138916000830187613434565b61389e6020830186613434565b6138ab6040830185613852565b81810360608301526138bd8184613452565b905095945050505050565b60006040820190506138dd6000830185613434565b6138ea6020830184613852565b9392505050565b60006020820190506139066000830184613443565b92915050565b60006020820190508181036000830152613926818461348b565b905092915050565b60006020820190508181036000830152613947816134c4565b9050919050565b60006020820190508181036000830152613967816134e7565b9050919050565b600060208201905081810360008301526139878161350a565b9050919050565b600060208201905081810360008301526139a78161352d565b9050919050565b600060208201905081810360008301526139c781613550565b9050919050565b600060208201905081810360008301526139e781613573565b9050919050565b60006020820190508181036000830152613a0781613596565b9050919050565b60006020820190508181036000830152613a27816135b9565b9050919050565b60006020820190508181036000830152613a47816135dc565b9050919050565b60006020820190508181036000830152613a67816135ff565b9050919050565b60006020820190508181036000830152613a8781613622565b9050919050565b60006020820190508181036000830152613aa781613645565b9050919050565b60006020820190508181036000830152613ac781613668565b9050919050565b60006020820190508181036000830152613ae78161368b565b9050919050565b60006020820190508181036000830152613b07816136ae565b9050919050565b60006020820190508181036000830152613b27816136d1565b9050919050565b60006020820190508181036000830152613b47816136f4565b9050919050565b60006020820190508181036000830152613b6781613717565b9050919050565b60006020820190508181036000830152613b878161373a565b9050919050565b60006020820190508181036000830152613ba78161375d565b9050919050565b60006020820190508181036000830152613bc781613780565b9050919050565b60006020820190508181036000830152613be7816137a3565b9050919050565b60006020820190508181036000830152613c07816137c6565b9050919050565b60006020820190508181036000830152613c27816137e9565b9050919050565b60006020820190508181036000830152613c478161380c565b9050919050565b60006020820190508181036000830152613c678161382f565b9050919050565b6000602082019050613c836000830184613852565b92915050565b6000613c93613ca4565b9050613c9f8282614017565b919050565b6000604051905090565b600067ffffffffffffffff821115613cc957613cc861411e565b5b613cd282614161565b9050602081019050919050565b600067ffffffffffffffff821115613cfa57613cf961411e565b5b613d0382614161565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613d5382613f33565b9150613d5e83613f33565b9250826fffffffffffffffffffffffffffffffff03821115613d8357613d82614091565b5b828201905092915050565b6000613d9982613f6f565b9150613da483613f6f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dd957613dd8614091565b5b828201905092915050565b6000613def82613f6f565b9150613dfa83613f6f565b925082613e0a57613e096140c0565b5b828204905092915050565b6000613e2082613f6f565b9150613e2b83613f6f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e6457613e63614091565b5b828202905092915050565b6000613e7a82613f33565b9150613e8583613f33565b925082821015613e9857613e97614091565b5b828203905092915050565b6000613eae82613f6f565b9150613eb983613f6f565b925082821015613ecc57613ecb614091565b5b828203905092915050565b6000613ee282613f4f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613f2c82613ed7565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613fa6578082015181840152602081019050613f8b565b83811115613fb5576000848401525b50505050565b6000613fc682613f6f565b91506000821415613fda57613fd9614091565b5b600182039050919050565b60006002820490506001821680613ffd57607f821691505b60208210811415614011576140106140ef565b5b50919050565b61402082614161565b810181811067ffffffffffffffff8211171561403f5761403e61411e565b5b80604052505050565b600061405382613f6f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561408657614085614091565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682066726565206d696e74732072656d61696e00000000600082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61485181613ed7565b811461485c57600080fd5b50565b61486881613ee9565b811461487357600080fd5b50565b61487f81613ef5565b811461488a57600080fd5b50565b61489681613f21565b81146148a157600080fd5b50565b6148ad81613f6f565b81146148b857600080fd5b5056fea264697066735822122053bec1fbcc50ac99024a686587c833479da94ad19247fd9678131ca413398eba64736f6c63430008070033697066733a2f2f516d63726a555a73715235534535644d6d4c6844654c3877774747594e3335514a6e625266724d6577554c455142

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80636352211e1161010d578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd14610711578063d5abeb011461074e578063d7224ba014610779578063e985e9c5146107a4578063f2fde38b146107e1576101f9565b8063a0712d6814610678578063a22cb46514610694578063b88d4fde146106bd578063c6a91b42146106e6576101f9565b80637c928fe9116100dc5780637c928fe9146105ce5780638da5cb5b146105f757806395d89b4114610622578063982d669e1461064d576101f9565b80636352211e1461051257806370a082311461054f578063714c53981461058c578063715018a6146105b7576101f9565b806323b872dd116101905780633ccfd60b1161015f5780633ccfd60b1461044357806342842e0e1461045a57806349df728c146104835780634f6ccce7146104ac57806355f804b3146104e9576101f9565b806323b872dd1461037657806328cad13d1461039f5780632a55205a146103c85780632f745c5914610406576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce5780630a00ae83146102f757806318160ddd146103205780631e84c4131461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b57806307e89ec014610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906132ca565b61080a565b60405161023291906138f1565b60405180910390f35b34801561024757600080fd5b50610250610884565b60405161025d919061390c565b60405180910390f35b34801561027257600080fd5b5061027b610916565b6040516102889190613c6e565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b3919061339a565b610921565b6040516102c59190613861565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f09190613230565b6109a6565b005b34801561030357600080fd5b5061031e6004803603810190610319919061339a565b610abf565b005b34801561032c57600080fd5b50610335610b45565b6040516103429190613c6e565b60405180910390f35b34801561035757600080fd5b50610360610b4e565b60405161036d91906138f1565b60405180910390f35b34801561038257600080fd5b5061039d6004803603810190610398919061311a565b610b61565b005b3480156103ab57600080fd5b506103c660048036038101906103c19190613270565b610b71565b005b3480156103d457600080fd5b506103ef60048036038101906103ea91906133f4565b610c0a565b6040516103fd9291906138c8565b60405180910390f35b34801561041257600080fd5b5061042d60048036038101906104289190613230565b610c76565b60405161043a9190613c6e565b60405180910390f35b34801561044f57600080fd5b50610458610e74565b005b34801561046657600080fd5b50610481600480360381019061047c919061311a565b610f3f565b005b34801561048f57600080fd5b506104aa60048036038101906104a59190613324565b610f5f565b005b3480156104b857600080fd5b506104d360048036038101906104ce919061339a565b6110fa565b6040516104e09190613c6e565b60405180910390f35b3480156104f557600080fd5b50610510600480360381019061050b9190613351565b61114d565b005b34801561051e57600080fd5b506105396004803603810190610534919061339a565b6111e3565b6040516105469190613861565b60405180910390f35b34801561055b57600080fd5b50610576600480360381019061057191906130ad565b6111f9565b6040516105839190613c6e565b60405180910390f35b34801561059857600080fd5b506105a16112e2565b6040516105ae919061390c565b60405180910390f35b3480156105c357600080fd5b506105cc611374565b005b3480156105da57600080fd5b506105f560048036038101906105f0919061339a565b6113fc565b005b34801561060357600080fd5b5061060c611599565b6040516106199190613861565b60405180910390f35b34801561062e57600080fd5b506106376115c3565b604051610644919061390c565b60405180910390f35b34801561065957600080fd5b50610662611655565b60405161066f9190613c6e565b60405180910390f35b610692600480360381019061068d919061339a565b61165b565b005b3480156106a057600080fd5b506106bb60048036038101906106b691906131f0565b611816565b005b3480156106c957600080fd5b506106e460048036038101906106df919061316d565b611997565b005b3480156106f257600080fd5b506106fb6119f3565b6040516107089190613c6e565b60405180910390f35b34801561071d57600080fd5b506107386004803603810190610733919061339a565b6119f8565b604051610745919061390c565b60405180910390f35b34801561075a57600080fd5b50610763611ad4565b6040516107709190613c6e565b60405180910390f35b34801561078557600080fd5b5061078e611ada565b60405161079b9190613c6e565b60405180910390f35b3480156107b057600080fd5b506107cb60048036038101906107c691906130da565b611ae0565b6040516107d891906138f1565b60405180910390f35b3480156107ed57600080fd5b50610808600480360381019061080391906130ad565b611b74565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087d575061087c82611c6c565b5b9050919050565b60606001805461089390613fe5565b80601f01602080910402602001604051908101604052809291908181526020018280546108bf90613fe5565b801561090c5780601f106108e15761010080835404028352916020019161090c565b820191906000526020600020905b8154815290600101906020018083116108ef57829003601f168201915b5050505050905090565b662386f26fc1000081565b600061092c82611db6565b61096b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096290613c2e565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b1826111e3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1990613aee565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a41611dc3565b73ffffffffffffffffffffffffffffffffffffffff161480610a705750610a6f81610a6a611dc3565b611ae0565b5b610aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa690613a2e565b60405180910390fd5b610aba838383611dcb565b505050565b610ac7611dc3565b73ffffffffffffffffffffffffffffffffffffffff16610ae5611599565b73ffffffffffffffffffffffffffffffffffffffff1614610b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3290613a8e565b60405180910390fd5b80600d8190555050565b60008054905090565b600e60009054906101000a900460ff1681565b610b6c838383611e7d565b505050565b610b79611dc3565b73ffffffffffffffffffffffffffffffffffffffff16610b97611599565b73ffffffffffffffffffffffffffffffffffffffff1614610bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be490613a8e565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b600080610c1684611db6565b610c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4c90613a0e565b60405180910390fd5b30610c6b610c64856005612436565b606461244c565b915091509250929050565b6000610c81836111f9565b8210610cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb99061392e565b60405180910390fd5b6000610ccc610b45565b905060008060005b83811015610e32576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610dc657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e1e5786841415610e0f578195505050505050610e6e565b8380610e1a90614048565b9450505b508080610e2a90614048565b915050610cd4565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6590613bae565b60405180910390fd5b92915050565b610e7c611dc3565b73ffffffffffffffffffffffffffffffffffffffff16610e9a611599565b73ffffffffffffffffffffffffffffffffffffffff1614610ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee790613a8e565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f3b573d6000803e3d6000fd5b5050565b610f5a83838360405180602001604052806000815250611997565b505050565b610f67611dc3565b73ffffffffffffffffffffffffffffffffffffffff16610f85611599565b73ffffffffffffffffffffffffffffffffffffffff1614610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd290613a8e565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016110169190613861565b60206040518083038186803b15801561102e57600080fd5b505afa158015611042573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061106691906133c7565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016110a39291906138c8565b602060405180830381600087803b1580156110bd57600080fd5b505af11580156110d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110f5919061329d565b505050565b6000611104610b45565b8210611145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113c9061398e565b60405180910390fd5b819050919050565b611155611dc3565b73ffffffffffffffffffffffffffffffffffffffff16611173611599565b73ffffffffffffffffffffffffffffffffffffffff16146111c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c090613a8e565b60405180910390fd5b80600b90805190602001906111df929190612e48565b5050565b60006111ee82612462565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561126a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126190613a4e565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600b80546112f190613fe5565b80601f016020809104026020016040519081016040528092919081815260200182805461131d90613fe5565b801561136a5780601f1061133f5761010080835404028352916020019161136a565b820191906000526020600020905b81548152906001019060200180831161134d57829003601f168201915b5050505050905090565b61137c611dc3565b73ffffffffffffffffffffffffffffffffffffffff1661139a611599565b73ffffffffffffffffffffffffffffffffffffffff16146113f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e790613a8e565b60405180910390fd5b6113fa6000612665565b565b60026009541415611442576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143990613bce565b60405180910390fd5b6002600981905550600e60009054906101000a900460ff16611499576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149090613c0e565b60405180910390fd5b80600c54816114a6610b45565b6114b09190613d8e565b11156114f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e8906139ae565b60405180910390fd5b816005811115611536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152d906139ee565b60405180910390fd5b600d54611541610b45565b1115611582576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157990613b6e565b60405180910390fd5b61158c338461272b565b5050600160098190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546115d290613fe5565b80601f01602080910402602001604051908101604052809291908181526020018280546115fe90613fe5565b801561164b5780601f106116205761010080835404028352916020019161164b565b820191906000526020600020905b81548152906001019060200180831161162e57829003601f168201915b5050505050905090565b600d5481565b600260095414156116a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169890613bce565b60405180910390fd5b6002600981905550662386f26fc1000081600d546116bd610b45565b1115611711573481836116d09190613e15565b14611710576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170790613b8e565b60405180910390fd5b5b600e60009054906101000a900460ff16611760576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175790613c0e565b60405180910390fd5b82600c548161176d610b45565b6117779190613d8e565b11156117b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117af906139ae565b60405180910390fd5b8360058111156117fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f4906139ee565b60405180910390fd5b611807338661272b565b50505050600160098190555050565b61181e611dc3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561188c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188390613aae565b60405180910390fd5b8060066000611899611dc3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611946611dc3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161198b91906138f1565b60405180910390a35050565b6119a2848484611e7d565b6119ae84848484612749565b6119ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e490613b0e565b60405180910390fd5b50505050565b600581565b6060611a0382611db6565b611a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3990613a0e565b60405180910390fd5b600b8054611a4f90613fe5565b80601f0160208091040260200160405190810160405280929190818152602001828054611a7b90613fe5565b8015611ac85780601f10611a9d57610100808354040283529160200191611ac8565b820191906000526020600020905b815481529060010190602001808311611aab57829003601f168201915b50505050509050919050565b600c5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b7c611dc3565b73ffffffffffffffffffffffffffffffffffffffff16611b9a611599565b73ffffffffffffffffffffffffffffffffffffffff1614611bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be790613a8e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c579061394e565b60405180910390fd5b611c6981612665565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d3757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611d9f57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611daf5750611dae826128e0565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611e8882612462565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611eaf611dc3565b73ffffffffffffffffffffffffffffffffffffffff161480611f0b5750611ed4611dc3565b73ffffffffffffffffffffffffffffffffffffffff16611ef384610921565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f275750611f268260000151611f21611dc3565b611ae0565b5b905080611f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6090613ace565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd290613a6e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561204b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612042906139ce565b60405180910390fd5b612058858585600161294a565b6120686000848460000151611dcb565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166120d69190613e6f565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661217a9190613d48565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846122809190613d8e565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156123c6576122f681611db6565b156123c5576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461242e8686866001612950565b505050505050565b600081836124449190613e15565b905092915050565b6000818361245a9190613de4565b905092915050565b61246a612ece565b61247382611db6565b6124b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a99061396e565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000006483106125165760017f0000000000000000000000000000000000000000000000000000000000000064846125099190613ea3565b6125139190613d8e565b90505b60008390505b818110612624576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461261057809350505050612660565b50808061261c90613fbb565b91505061251c565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265790613bee565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612745828260405180602001604052806000815250612956565b5050565b600061276a8473ffffffffffffffffffffffffffffffffffffffff16612e35565b156128d3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612793611dc3565b8786866040518563ffffffff1660e01b81526004016127b5949392919061387c565b602060405180830381600087803b1580156127cf57600080fd5b505af192505050801561280057506040513d601f19601f820116820180604052508101906127fd91906132f7565b60015b612883573d8060008114612830576040519150601f19603f3d011682016040523d82523d6000602084013e612835565b606091505b5060008151141561287b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287290613b0e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128d8565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156129cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c390613b4e565b60405180910390fd5b6129d581611db6565b15612a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0c90613b2e565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000064831115612a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6f90613c4e565b60405180910390fd5b612a85600085838661294a565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612b829190613d48565b6fffffffffffffffffffffffffffffffff168152602001858360200151612ba99190613d48565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612e1857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612db86000888488612749565b612df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dee90613b0e565b60405180910390fd5b8180612e0290614048565b9250508080612e1090614048565b915050612d47565b5080600081905550612e2d6000878588612950565b505050505050565b600080823b905060008111915050919050565b828054612e5490613fe5565b90600052602060002090601f016020900481019282612e765760008555612ebd565b82601f10612e8f57805160ff1916838001178555612ebd565b82800160010185558215612ebd579182015b82811115612ebc578251825591602001919060010190612ea1565b5b509050612eca9190612f08565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612f21576000816000905550600101612f09565b5090565b6000612f38612f3384613cae565b613c89565b905082815260208101848484011115612f5457612f53614152565b5b612f5f848285613f79565b509392505050565b6000612f7a612f7584613cdf565b613c89565b905082815260208101848484011115612f9657612f95614152565b5b612fa1848285613f79565b509392505050565b600081359050612fb881614848565b92915050565b600081359050612fcd8161485f565b92915050565b600081519050612fe28161485f565b92915050565b600081359050612ff781614876565b92915050565b60008151905061300c81614876565b92915050565b600082601f8301126130275761302661414d565b5b8135613037848260208601612f25565b91505092915050565b60008135905061304f8161488d565b92915050565b600082601f83011261306a5761306961414d565b5b813561307a848260208601612f67565b91505092915050565b600081359050613092816148a4565b92915050565b6000815190506130a7816148a4565b92915050565b6000602082840312156130c3576130c261415c565b5b60006130d184828501612fa9565b91505092915050565b600080604083850312156130f1576130f061415c565b5b60006130ff85828601612fa9565b925050602061311085828601612fa9565b9150509250929050565b6000806000606084860312156131335761313261415c565b5b600061314186828701612fa9565b935050602061315286828701612fa9565b925050604061316386828701613083565b9150509250925092565b600080600080608085870312156131875761318661415c565b5b600061319587828801612fa9565b94505060206131a687828801612fa9565b93505060406131b787828801613083565b925050606085013567ffffffffffffffff8111156131d8576131d7614157565b5b6131e487828801613012565b91505092959194509250565b600080604083850312156132075761320661415c565b5b600061321585828601612fa9565b925050602061322685828601612fbe565b9150509250929050565b600080604083850312156132475761324661415c565b5b600061325585828601612fa9565b925050602061326685828601613083565b9150509250929050565b6000602082840312156132865761328561415c565b5b600061329484828501612fbe565b91505092915050565b6000602082840312156132b3576132b261415c565b5b60006132c184828501612fd3565b91505092915050565b6000602082840312156132e0576132df61415c565b5b60006132ee84828501612fe8565b91505092915050565b60006020828403121561330d5761330c61415c565b5b600061331b84828501612ffd565b91505092915050565b60006020828403121561333a5761333961415c565b5b600061334884828501613040565b91505092915050565b6000602082840312156133675761336661415c565b5b600082013567ffffffffffffffff81111561338557613384614157565b5b61339184828501613055565b91505092915050565b6000602082840312156133b0576133af61415c565b5b60006133be84828501613083565b91505092915050565b6000602082840312156133dd576133dc61415c565b5b60006133eb84828501613098565b91505092915050565b6000806040838503121561340b5761340a61415c565b5b600061341985828601613083565b925050602061342a85828601613083565b9150509250929050565b61343d81613ed7565b82525050565b61344c81613ee9565b82525050565b600061345d82613d10565b6134678185613d26565b9350613477818560208601613f88565b61348081614161565b840191505092915050565b600061349682613d1b565b6134a08185613d37565b93506134b0818560208601613f88565b6134b981614161565b840191505092915050565b60006134d1602283613d37565b91506134dc82614172565b604082019050919050565b60006134f4602683613d37565b91506134ff826141c1565b604082019050919050565b6000613517602a83613d37565b915061352282614210565b604082019050919050565b600061353a602383613d37565b91506135458261425f565b604082019050919050565b600061355d602283613d37565b9150613568826142ae565b604082019050919050565b6000613580602583613d37565b915061358b826142fd565b604082019050919050565b60006135a3602283613d37565b91506135ae8261434c565b604082019050919050565b60006135c6601183613d37565b91506135d18261439b565b602082019050919050565b60006135e9603983613d37565b91506135f4826143c4565b604082019050919050565b600061360c602b83613d37565b915061361782614413565b604082019050919050565b600061362f602683613d37565b915061363a82614462565b604082019050919050565b6000613652602083613d37565b915061365d826144b1565b602082019050919050565b6000613675601a83613d37565b9150613680826144da565b602082019050919050565b6000613698603283613d37565b91506136a382614503565b604082019050919050565b60006136bb602283613d37565b91506136c682614552565b604082019050919050565b60006136de603383613d37565b91506136e9826145a1565b604082019050919050565b6000613701601d83613d37565b915061370c826145f0565b602082019050919050565b6000613724602183613d37565b915061372f82614619565b604082019050919050565b6000613747601c83613d37565b915061375282614668565b602082019050919050565b600061376a601883613d37565b915061377582614691565b602082019050919050565b600061378d602e83613d37565b9150613798826146ba565b604082019050919050565b60006137b0601f83613d37565b91506137bb82614709565b602082019050919050565b60006137d3602f83613d37565b91506137de82614732565b604082019050919050565b60006137f6601783613d37565b915061380182614781565b602082019050919050565b6000613819602d83613d37565b9150613824826147aa565b604082019050919050565b600061383c602283613d37565b9150613847826147f9565b604082019050919050565b61385b81613f6f565b82525050565b60006020820190506138766000830184613434565b92915050565b60006080820190506138916000830187613434565b61389e6020830186613434565b6138ab6040830185613852565b81810360608301526138bd8184613452565b905095945050505050565b60006040820190506138dd6000830185613434565b6138ea6020830184613852565b9392505050565b60006020820190506139066000830184613443565b92915050565b60006020820190508181036000830152613926818461348b565b905092915050565b60006020820190508181036000830152613947816134c4565b9050919050565b60006020820190508181036000830152613967816134e7565b9050919050565b600060208201905081810360008301526139878161350a565b9050919050565b600060208201905081810360008301526139a78161352d565b9050919050565b600060208201905081810360008301526139c781613550565b9050919050565b600060208201905081810360008301526139e781613573565b9050919050565b60006020820190508181036000830152613a0781613596565b9050919050565b60006020820190508181036000830152613a27816135b9565b9050919050565b60006020820190508181036000830152613a47816135dc565b9050919050565b60006020820190508181036000830152613a67816135ff565b9050919050565b60006020820190508181036000830152613a8781613622565b9050919050565b60006020820190508181036000830152613aa781613645565b9050919050565b60006020820190508181036000830152613ac781613668565b9050919050565b60006020820190508181036000830152613ae78161368b565b9050919050565b60006020820190508181036000830152613b07816136ae565b9050919050565b60006020820190508181036000830152613b27816136d1565b9050919050565b60006020820190508181036000830152613b47816136f4565b9050919050565b60006020820190508181036000830152613b6781613717565b9050919050565b60006020820190508181036000830152613b878161373a565b9050919050565b60006020820190508181036000830152613ba78161375d565b9050919050565b60006020820190508181036000830152613bc781613780565b9050919050565b60006020820190508181036000830152613be7816137a3565b9050919050565b60006020820190508181036000830152613c07816137c6565b9050919050565b60006020820190508181036000830152613c27816137e9565b9050919050565b60006020820190508181036000830152613c478161380c565b9050919050565b60006020820190508181036000830152613c678161382f565b9050919050565b6000602082019050613c836000830184613852565b92915050565b6000613c93613ca4565b9050613c9f8282614017565b919050565b6000604051905090565b600067ffffffffffffffff821115613cc957613cc861411e565b5b613cd282614161565b9050602081019050919050565b600067ffffffffffffffff821115613cfa57613cf961411e565b5b613d0382614161565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613d5382613f33565b9150613d5e83613f33565b9250826fffffffffffffffffffffffffffffffff03821115613d8357613d82614091565b5b828201905092915050565b6000613d9982613f6f565b9150613da483613f6f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dd957613dd8614091565b5b828201905092915050565b6000613def82613f6f565b9150613dfa83613f6f565b925082613e0a57613e096140c0565b5b828204905092915050565b6000613e2082613f6f565b9150613e2b83613f6f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e6457613e63614091565b5b828202905092915050565b6000613e7a82613f33565b9150613e8583613f33565b925082821015613e9857613e97614091565b5b828203905092915050565b6000613eae82613f6f565b9150613eb983613f6f565b925082821015613ecc57613ecb614091565b5b828203905092915050565b6000613ee282613f4f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613f2c82613ed7565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613fa6578082015181840152602081019050613f8b565b83811115613fb5576000848401525b50505050565b6000613fc682613f6f565b91506000821415613fda57613fd9614091565b5b600182039050919050565b60006002820490506001821680613ffd57607f821691505b60208210811415614011576140106140ef565b5b50919050565b61402082614161565b810181811067ffffffffffffffff8211171561403f5761403e61411e565b5b80604052505050565b600061405382613f6f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561408657614085614091565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682066726565206d696e74732072656d61696e00000000600082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61485181613ed7565b811461485c57600080fd5b50565b61486881613ee9565b811461487357600080fd5b50565b61487f81613ef5565b811461488a57600080fd5b50565b61489681613f21565b81146148a157600080fd5b50565b6148ad81613f6f565b81146148b857600080fd5b5056fea264697066735822122053bec1fbcc50ac99024a686587c833479da94ad19247fd9678131ca413398eba64736f6c63430008070033

Deployed Bytecode Sourcemap

55236:4761:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59004:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44419:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55621:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45944:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45507:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58272:139;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41254:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55725:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46794:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58106:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59676:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;41885:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58421:143;;;;;;;;;;;;;:::i;:::-;;46999:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58572:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41417:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57996:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44242:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43119:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57832:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19277:103;;;;;;;;;;;;;:::i;:::-;;57480:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18626:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44574:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55682:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57029:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46212:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47219:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55530:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59367:243;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55581:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51634:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46549:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19535:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59004:292;59152:4;59209:26;59194:41;;;:11;:41;;;;:94;;;;59252:36;59276:11;59252:23;:36::i;:::-;59194:94;59174:114;;59004:292;;;:::o;44419:94::-;44473:13;44502:5;44495:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44419:94;:::o;55621:54::-;55665:10;55621:54;:::o;45944:204::-;46012:7;46036:16;46044:7;46036;:16::i;:::-;46028:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;46118:15;:24;46134:7;46118:24;;;;;;;;;;;;;;;;;;;;;46111:31;;45944:204;;;:::o;45507:379::-;45576:13;45592:24;45608:7;45592:15;:24::i;:::-;45576:40;;45637:5;45631:11;;:2;:11;;;;45623:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;45722:5;45706:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;45731:37;45748:5;45755:12;:10;:12::i;:::-;45731:16;:37::i;:::-;45706:62;45690:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;45852:28;45861:2;45865:7;45874:5;45852:8;:28::i;:::-;45569:317;45507:379;;:::o;58272:139::-;18857:12;:10;:12::i;:::-;18846:23;;:7;:5;:7::i;:::-;:23;;;18838:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58390:13:::1;58373:14;:30;;;;58272:139:::0;:::o;41254:94::-;41307:7;41330:12;;41323:19;;41254:94;:::o;55725:37::-;;;;;;;;;;;;;:::o;46794:142::-;46902:28;46912:4;46918:2;46922:7;46902:9;:28::i;:::-;46794:142;;;:::o;58106:158::-;18857:12;:10;:12::i;:::-;18846:23;;:7;:5;:7::i;:::-;:23;;;18838:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58237:19:::1;58216:18;;:40;;;;;;;;;;;;;;;;;;58106:158:::0;:::o;59676:318::-;59801:16;59819:21;59866:16;59874:7;59866;:16::i;:::-;59858:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;59933:4;59940:45;59953:26;59966:9;59977:1;59953:12;:26::i;:::-;59981:3;59940:12;:45::i;:::-;59917:69;;;;59676:318;;;;;:::o;41885:744::-;41994:7;42029:16;42039:5;42029:9;:16::i;:::-;42021:5;:24;42013:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;42091:22;42116:13;:11;:13::i;:::-;42091:38;;42136:19;42166:25;42216:9;42211:350;42235:14;42231:1;:18;42211:350;;;42265:31;42299:11;:14;42311:1;42299:14;;;;;;;;;;;42265:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42352:1;42326:28;;:9;:14;;;:28;;;42322:89;;42387:9;:14;;;42367:34;;42322:89;42444:5;42423:26;;:17;:26;;;42419:135;;;42481:5;42466:11;:20;42462:59;;;42508:1;42501:8;;;;;;;;;42462:59;42531:13;;;;;:::i;:::-;;;;42419:135;42256:305;42251:3;;;;;:::i;:::-;;;;42211:350;;;;42567:56;;;;;;;;;;:::i;:::-;;;;;;;;41885:744;;;;;:::o;58421:143::-;18857:12;:10;:12::i;:::-;18846:23;;:7;:5;:7::i;:::-;:23;;;18838:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58469:15:::1;58487:21;58469:39;;58527:10;58519:28;;:37;58548:7;58519:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;58458:106;58421:143::o:0;46999:157::-;47111:39;47128:4;47134:2;47138:7;47111:39;;;;;;;;;;;;:16;:39::i;:::-;46999:157;;;:::o;58572:168::-;18857:12;:10;:12::i;:::-;18846:23;;:7;:5;:7::i;:::-;:23;;;18838:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58638:15:::1;58656:5;:15;;;58680:4;58656:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58638:48;;58697:5;:14;;;58712:10;58724:7;58697:35;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;58627:113;58572:168:::0;:::o;41417:177::-;41484:7;41516:13;:11;:13::i;:::-;41508:5;:21;41500:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;41583:5;41576:12;;41417:177;;;:::o;57996:100::-;18857:12;:10;:12::i;:::-;18846:23;;:7;:5;:7::i;:::-;:23;;;18838:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58080:8:::1;58070:7;:18;;;;;;;;;;;;:::i;:::-;;57996:100:::0;:::o;44242:118::-;44306:7;44329:20;44341:7;44329:11;:20::i;:::-;:25;;;44322:32;;44242:118;;;:::o;43119:211::-;43183:7;43224:1;43207:19;;:5;:19;;;;43199:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;43296:12;:19;43309:5;43296:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;43288:36;;43281:43;;43119:211;;;:::o;57832:93::-;57877:13;57910:7;57903:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57832:93;:::o;19277:103::-;18857:12;:10;:12::i;:::-;18846:23;;:7;:5;:7::i;:::-;:23;;;18838:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19342:30:::1;19369:1;19342:18;:30::i;:::-;19277:103::o:0;57480:275::-;10555:1;11153:7;;:19;;11145:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10555:1;11286:7;:18;;;;55892::::1;;;;;;;;;;;55884:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;57609:14:::2;56303:9;;56268:14;56252:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:60;;56230:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;57648:14:::3;55573:1;56050:14;:34;;56028:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;56499:14:::4;;56465:13;:11;:13::i;:::-;:48;;56443:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;57710:37:::5;57720:10;57732:14;57710:9;:37::i;:::-;56385:1:::3;55949::::2;10511::::0;11465:7;:22;;;;57480:275;:::o;18626:87::-;18672:7;18699:6;;;;;;;;;;;18692:13;;18626:87;:::o;44574:98::-;44630:13;44659:7;44652:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44574:98;:::o;55682:36::-;;;;:::o;57029:321::-;10555:1;11153:7;;:19;;11145:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10555:1;11286:7;:18;;;;55665:10:::1;57169:14;56694;;56680:13;:11;:13::i;:::-;:28;56677:166;;;56770:9;56751:14;56743:5;:22;;;;:::i;:::-;56742:37;56720:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;56677:166;55892:18:::2;;;;;;;;;;;55884:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;57232:14:::3;56303:9;;56268:14;56252:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:60;;56230:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;57271:14:::4;55573:1;56050:14;:34;;56028:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;57305:37:::5;57315:10;57327:14;57305:9;:37::i;:::-;56385:1:::4;55949::::3;11317::::1;;10511::::0;11465:7;:22;;;;57029:321;:::o;46212:274::-;46315:12;:10;:12::i;:::-;46303:24;;:8;:24;;;;46295:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;46412:8;46367:18;:32;46386:12;:10;:12::i;:::-;46367:32;;;;;;;;;;;;;;;:42;46400:8;46367:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;46461:8;46432:48;;46447:12;:10;:12::i;:::-;46432:48;;;46471:8;46432:48;;;;;;:::i;:::-;;;;;;;;46212:274;;:::o;47219:311::-;47356:28;47366:4;47372:2;47376:7;47356:9;:28::i;:::-;47407:48;47430:4;47436:2;47440:7;47449:5;47407:22;:48::i;:::-;47391:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;47219:311;;;;:::o;55530:44::-;55573:1;55530:44;:::o;59367:243::-;59485:13;59524:16;59532:7;59524;:16::i;:::-;59516:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;59595:7;59575:27;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59367:243;;;:::o;55581:31::-;;;;:::o;51634:43::-;;;;:::o;46549:186::-;46671:4;46694:18;:25;46713:5;46694:25;;;;;;;;;;;;;;;:35;46720:8;46694:35;;;;;;;;;;;;;;;;;;;;;;;;;46687:42;;46549:186;;;;:::o;19535:201::-;18857:12;:10;:12::i;:::-;18846:23;;:7;:5;:7::i;:::-;:23;;;18838:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19644:1:::1;19624:22;;:8;:22;;;;19616:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;19700:28;19719:8;19700:18;:28::i;:::-;19535:201:::0;:::o;42693:370::-;42820:4;42865:25;42850:40;;;:11;:40;;;;:99;;;;42916:33;42901:48;;;:11;:48;;;;42850:99;:160;;;;42975:35;42960:50;;;:11;:50;;;;42850:160;:207;;;;43021:36;43045:11;43021:23;:36::i;:::-;42850:207;42836:221;;42693:370;;;:::o;47769:105::-;47826:4;47856:12;;47846:7;:22;47839:29;;47769:105;;;:::o;17350:98::-;17403:7;17430:10;17423:17;;17350:98;:::o;51456:172::-;51580:2;51553:15;:24;51569:7;51553:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;51614:7;51610:2;51594:28;;51603:5;51594:28;;;;;;;;;;;;51456:172;;;:::o;49821:1529::-;49918:35;49956:20;49968:7;49956:11;:20::i;:::-;49918:58;;49985:22;50027:13;:18;;;50011:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;50080:12;:10;:12::i;:::-;50056:36;;:20;50068:7;50056:11;:20::i;:::-;:36;;;50011:81;:142;;;;50103:50;50120:13;:18;;;50140:12;:10;:12::i;:::-;50103:16;:50::i;:::-;50011:142;49985:169;;50179:17;50163:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;50311:4;50289:26;;:13;:18;;;:26;;;50273:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;50400:1;50386:16;;:2;:16;;;;50378:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;50453:43;50475:4;50481:2;50485:7;50494:1;50453:21;:43::i;:::-;50553:49;50570:1;50574:7;50583:13;:18;;;50553:8;:49::i;:::-;50641:1;50611:12;:18;50624:4;50611:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50677:1;50649:12;:16;50662:2;50649:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50708:43;;;;;;;;50723:2;50708:43;;;;;;50734:15;50708:43;;;;;50685:11;:20;50697:7;50685:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50979:19;51011:1;51001:7;:11;;;;:::i;:::-;50979:33;;51064:1;51023:43;;:11;:24;51035:11;51023:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;51019:236;;;51081:20;51089:11;51081:7;:20::i;:::-;51077:171;;;51141:97;;;;;;;;51168:13;:18;;;51141:97;;;;;;51199:13;:28;;;51141:97;;;;;51114:11;:24;51126:11;51114:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51077:171;51019:236;51287:7;51283:2;51268:27;;51277:4;51268:27;;;;;;;;;;;;51302:42;51323:4;51329:2;51333:7;51342:1;51302:20;:42::i;:::-;49911:1439;;;49821:1529;;;:::o;3851:98::-;3909:7;3940:1;3936;:5;;;;:::i;:::-;3929:12;;3851:98;;;;:::o;4250:::-;4308:7;4339:1;4335;:5;;;;:::i;:::-;4328:12;;4250:98;;;;:::o;43582:606::-;43658:21;;:::i;:::-;43699:16;43707:7;43699;:16::i;:::-;43691:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;43771:26;43819:12;43808:7;:23;43804:93;;43888:1;43873:12;43863:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;43842:47;;43804:93;43910:12;43925:7;43910:22;;43905:212;43942:18;43934:4;:26;43905:212;;43979:31;44013:11;:17;44025:4;44013:17;;;;;;;;;;;43979:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44069:1;44043:28;;:9;:14;;;:28;;;44039:71;;44091:9;44084:16;;;;;;;44039:71;43970:147;43962:6;;;;;:::i;:::-;;;;43905:212;;;;44125:57;;;;;;;;;;:::i;:::-;;;;;;;;43582:606;;;;:::o;19896:191::-;19970:16;19989:6;;;;;;;;;;;19970:25;;20015:8;20006:6;;:17;;;;;;;;;;;;;;;;;;20070:8;20039:40;;20060:8;20039:40;;;;;;;;;;;;19959:128;19896:191;:::o;47880:98::-;47945:27;47955:2;47959:8;47945:27;;;;;;;;;;;;:9;:27::i;:::-;47880:98;;:::o;53171:690::-;53308:4;53325:15;:2;:13;;;:15::i;:::-;53321:535;;;53380:2;53364:36;;;53401:12;:10;:12::i;:::-;53415:4;53421:7;53430:5;53364:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53351:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53612:1;53595:6;:13;:18;53591:215;;;53628:61;;;;;;;;;;:::i;:::-;;;;;;;;53591:215;53774:6;53768:13;53759:6;53755:2;53751:15;53744:38;53351:464;53496:45;;;53486:55;;;:6;:55;;;;53479:62;;;;;53321:535;53844:4;53837:11;;53171:690;;;;;;;:::o;32026:157::-;32111:4;32150:25;32135:40;;;:11;:40;;;;32128:47;;32026:157;;;:::o;54323:141::-;;;;;:::o;54850:140::-;;;;;:::o;48317:1272::-;48422:20;48445:12;;48422:35;;48486:1;48472:16;;:2;:16;;;;48464:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48663:21;48671:12;48663:7;:21::i;:::-;48662:22;48654:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;48745:12;48733:8;:24;;48725:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;48805:61;48835:1;48839:2;48843:12;48857:8;48805:21;:61::i;:::-;48875:30;48908:12;:16;48921:2;48908:16;;;;;;;;;;;;;;;48875:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48950:119;;;;;;;;49000:8;48970:11;:19;;;:39;;;;:::i;:::-;48950:119;;;;;;49053:8;49018:11;:24;;;:44;;;;:::i;:::-;48950:119;;;;;48931:12;:16;48944:2;48931:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49104:43;;;;;;;;49119:2;49104:43;;;;;;49130:15;49104:43;;;;;49076:11;:25;49088:12;49076:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49156:20;49179:12;49156:35;;49205:9;49200:281;49224:8;49220:1;:12;49200:281;;;49278:12;49274:2;49253:38;;49270:1;49253:38;;;;;;;;;;;;49318:59;49349:1;49353:2;49357:12;49371:5;49318:22;:59::i;:::-;49300:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;49459:14;;;;;:::i;:::-;;;;49234:3;;;;;:::i;:::-;;;;49200:281;;;;49504:12;49489;:27;;;;49523:60;49552:1;49556:2;49560:12;49574:8;49523:20;:60::i;:::-;48415:1174;;;48317:1272;;;:::o;20914:387::-;20974:4;21182:12;21249:7;21237:20;21229:28;;21292:1;21285:4;:8;21278:15;;;20914:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1179:5;1210:6;1204:13;1195:22;;1226:30;1250:5;1226:30;:::i;:::-;1125:137;;;;:::o;1268:::-;1313:5;1351:6;1338:20;1329:29;;1367:32;1393:5;1367:32;:::i;:::-;1268:137;;;;:::o;1411:141::-;1467:5;1498:6;1492:13;1483:22;;1514:32;1540:5;1514:32;:::i;:::-;1411:141;;;;:::o;1571:338::-;1626:5;1675:3;1668:4;1660:6;1656:17;1652:27;1642:122;;1683:79;;:::i;:::-;1642:122;1800:6;1787:20;1825:78;1899:3;1891:6;1884:4;1876:6;1872:17;1825:78;:::i;:::-;1816:87;;1632:277;1571:338;;;;:::o;1915:167::-;1975:5;2013:6;2000:20;1991:29;;2029:47;2070:5;2029:47;:::i;:::-;1915:167;;;;:::o;2102:340::-;2158:5;2207:3;2200:4;2192:6;2188:17;2184:27;2174:122;;2215:79;;:::i;:::-;2174:122;2332:6;2319:20;2357:79;2432:3;2424:6;2417:4;2409:6;2405:17;2357:79;:::i;:::-;2348:88;;2164:278;2102:340;;;;:::o;2448:139::-;2494:5;2532:6;2519:20;2510:29;;2548:33;2575:5;2548:33;:::i;:::-;2448:139;;;;:::o;2593:143::-;2650:5;2681:6;2675:13;2666:22;;2697:33;2724:5;2697:33;:::i;:::-;2593:143;;;;:::o;2742:329::-;2801:6;2850:2;2838:9;2829:7;2825:23;2821:32;2818:119;;;2856:79;;:::i;:::-;2818:119;2976:1;3001:53;3046:7;3037:6;3026:9;3022:22;3001:53;:::i;:::-;2991:63;;2947:117;2742:329;;;;:::o;3077:474::-;3145:6;3153;3202:2;3190:9;3181:7;3177:23;3173:32;3170:119;;;3208:79;;:::i;:::-;3170:119;3328:1;3353:53;3398:7;3389:6;3378:9;3374:22;3353:53;:::i;:::-;3343:63;;3299:117;3455:2;3481:53;3526:7;3517:6;3506:9;3502:22;3481:53;:::i;:::-;3471:63;;3426:118;3077:474;;;;;:::o;3557:619::-;3634:6;3642;3650;3699:2;3687:9;3678:7;3674:23;3670:32;3667:119;;;3705:79;;:::i;:::-;3667:119;3825:1;3850:53;3895:7;3886:6;3875:9;3871:22;3850:53;:::i;:::-;3840:63;;3796:117;3952:2;3978:53;4023:7;4014:6;4003:9;3999:22;3978:53;:::i;:::-;3968:63;;3923:118;4080:2;4106:53;4151:7;4142:6;4131:9;4127:22;4106:53;:::i;:::-;4096:63;;4051:118;3557:619;;;;;:::o;4182:943::-;4277:6;4285;4293;4301;4350:3;4338:9;4329:7;4325:23;4321:33;4318:120;;;4357:79;;:::i;:::-;4318:120;4477:1;4502:53;4547:7;4538:6;4527:9;4523:22;4502:53;:::i;:::-;4492:63;;4448:117;4604:2;4630:53;4675:7;4666:6;4655:9;4651:22;4630:53;:::i;:::-;4620:63;;4575:118;4732:2;4758:53;4803:7;4794:6;4783:9;4779:22;4758:53;:::i;:::-;4748:63;;4703:118;4888:2;4877:9;4873:18;4860:32;4919:18;4911:6;4908:30;4905:117;;;4941:79;;:::i;:::-;4905:117;5046:62;5100:7;5091:6;5080:9;5076:22;5046:62;:::i;:::-;5036:72;;4831:287;4182:943;;;;;;;:::o;5131:468::-;5196:6;5204;5253:2;5241:9;5232:7;5228:23;5224:32;5221:119;;;5259:79;;:::i;:::-;5221:119;5379:1;5404:53;5449:7;5440:6;5429:9;5425:22;5404:53;:::i;:::-;5394:63;;5350:117;5506:2;5532:50;5574:7;5565:6;5554:9;5550:22;5532:50;:::i;:::-;5522:60;;5477:115;5131:468;;;;;:::o;5605:474::-;5673:6;5681;5730:2;5718:9;5709:7;5705:23;5701:32;5698:119;;;5736:79;;:::i;:::-;5698:119;5856:1;5881:53;5926:7;5917:6;5906:9;5902:22;5881:53;:::i;:::-;5871:63;;5827:117;5983:2;6009:53;6054:7;6045:6;6034:9;6030:22;6009:53;:::i;:::-;5999:63;;5954:118;5605:474;;;;;:::o;6085:323::-;6141:6;6190:2;6178:9;6169:7;6165:23;6161:32;6158:119;;;6196:79;;:::i;:::-;6158:119;6316:1;6341:50;6383:7;6374:6;6363:9;6359:22;6341:50;:::i;:::-;6331:60;;6287:114;6085:323;;;;:::o;6414:345::-;6481:6;6530:2;6518:9;6509:7;6505:23;6501:32;6498:119;;;6536:79;;:::i;:::-;6498:119;6656:1;6681:61;6734:7;6725:6;6714:9;6710:22;6681:61;:::i;:::-;6671:71;;6627:125;6414:345;;;;:::o;6765:327::-;6823:6;6872:2;6860:9;6851:7;6847:23;6843:32;6840:119;;;6878:79;;:::i;:::-;6840:119;6998:1;7023:52;7067:7;7058:6;7047:9;7043:22;7023:52;:::i;:::-;7013:62;;6969:116;6765:327;;;;:::o;7098:349::-;7167:6;7216:2;7204:9;7195:7;7191:23;7187:32;7184:119;;;7222:79;;:::i;:::-;7184:119;7342:1;7367:63;7422:7;7413:6;7402:9;7398:22;7367:63;:::i;:::-;7357:73;;7313:127;7098:349;;;;:::o;7453:357::-;7526:6;7575:2;7563:9;7554:7;7550:23;7546:32;7543:119;;;7581:79;;:::i;:::-;7543:119;7701:1;7726:67;7785:7;7776:6;7765:9;7761:22;7726:67;:::i;:::-;7716:77;;7672:131;7453:357;;;;:::o;7816:509::-;7885:6;7934:2;7922:9;7913:7;7909:23;7905:32;7902:119;;;7940:79;;:::i;:::-;7902:119;8088:1;8077:9;8073:17;8060:31;8118:18;8110:6;8107:30;8104:117;;;8140:79;;:::i;:::-;8104:117;8245:63;8300:7;8291:6;8280:9;8276:22;8245:63;:::i;:::-;8235:73;;8031:287;7816:509;;;;:::o;8331:329::-;8390:6;8439:2;8427:9;8418:7;8414:23;8410:32;8407:119;;;8445:79;;:::i;:::-;8407:119;8565:1;8590:53;8635:7;8626:6;8615:9;8611:22;8590:53;:::i;:::-;8580:63;;8536:117;8331:329;;;;:::o;8666:351::-;8736:6;8785:2;8773:9;8764:7;8760:23;8756:32;8753:119;;;8791:79;;:::i;:::-;8753:119;8911:1;8936:64;8992:7;8983:6;8972:9;8968:22;8936:64;:::i;:::-;8926:74;;8882:128;8666:351;;;;:::o;9023:474::-;9091:6;9099;9148:2;9136:9;9127:7;9123:23;9119:32;9116:119;;;9154:79;;:::i;:::-;9116:119;9274:1;9299:53;9344:7;9335:6;9324:9;9320:22;9299:53;:::i;:::-;9289:63;;9245:117;9401:2;9427:53;9472:7;9463:6;9452:9;9448:22;9427:53;:::i;:::-;9417:63;;9372:118;9023:474;;;;;:::o;9503:118::-;9590:24;9608:5;9590:24;:::i;:::-;9585:3;9578:37;9503:118;;:::o;9627:109::-;9708:21;9723:5;9708:21;:::i;:::-;9703:3;9696:34;9627:109;;:::o;9742:360::-;9828:3;9856:38;9888:5;9856:38;:::i;:::-;9910:70;9973:6;9968:3;9910:70;:::i;:::-;9903:77;;9989:52;10034:6;10029:3;10022:4;10015:5;10011:16;9989:52;:::i;:::-;10066:29;10088:6;10066:29;:::i;:::-;10061:3;10057:39;10050:46;;9832:270;9742:360;;;;:::o;10108:364::-;10196:3;10224:39;10257:5;10224:39;:::i;:::-;10279:71;10343:6;10338:3;10279:71;:::i;:::-;10272:78;;10359:52;10404:6;10399:3;10392:4;10385:5;10381:16;10359:52;:::i;:::-;10436:29;10458:6;10436:29;:::i;:::-;10431:3;10427:39;10420:46;;10200:272;10108:364;;;;:::o;10478:366::-;10620:3;10641:67;10705:2;10700:3;10641:67;:::i;:::-;10634:74;;10717:93;10806:3;10717:93;:::i;:::-;10835:2;10830:3;10826:12;10819:19;;10478:366;;;:::o;10850:::-;10992:3;11013:67;11077:2;11072:3;11013:67;:::i;:::-;11006:74;;11089:93;11178:3;11089:93;:::i;:::-;11207:2;11202:3;11198:12;11191:19;;10850:366;;;:::o;11222:::-;11364:3;11385:67;11449:2;11444:3;11385:67;:::i;:::-;11378:74;;11461:93;11550:3;11461:93;:::i;:::-;11579:2;11574:3;11570:12;11563:19;;11222:366;;;:::o;11594:::-;11736:3;11757:67;11821:2;11816:3;11757:67;:::i;:::-;11750:74;;11833:93;11922:3;11833:93;:::i;:::-;11951:2;11946:3;11942:12;11935:19;;11594:366;;;:::o;11966:::-;12108:3;12129:67;12193:2;12188:3;12129:67;:::i;:::-;12122:74;;12205:93;12294:3;12205:93;:::i;:::-;12323:2;12318:3;12314:12;12307:19;;11966:366;;;:::o;12338:::-;12480:3;12501:67;12565:2;12560:3;12501:67;:::i;:::-;12494:74;;12577:93;12666:3;12577:93;:::i;:::-;12695:2;12690:3;12686:12;12679:19;;12338:366;;;:::o;12710:::-;12852:3;12873:67;12937:2;12932:3;12873:67;:::i;:::-;12866:74;;12949:93;13038:3;12949:93;:::i;:::-;13067:2;13062:3;13058:12;13051:19;;12710:366;;;:::o;13082:::-;13224:3;13245:67;13309:2;13304:3;13245:67;:::i;:::-;13238:74;;13321:93;13410:3;13321:93;:::i;:::-;13439:2;13434:3;13430:12;13423:19;;13082:366;;;:::o;13454:::-;13596:3;13617:67;13681:2;13676:3;13617:67;:::i;:::-;13610:74;;13693:93;13782:3;13693:93;:::i;:::-;13811:2;13806:3;13802:12;13795:19;;13454:366;;;:::o;13826:::-;13968:3;13989:67;14053:2;14048:3;13989:67;:::i;:::-;13982:74;;14065:93;14154:3;14065:93;:::i;:::-;14183:2;14178:3;14174:12;14167:19;;13826:366;;;:::o;14198:::-;14340:3;14361:67;14425:2;14420:3;14361:67;:::i;:::-;14354:74;;14437:93;14526:3;14437:93;:::i;:::-;14555:2;14550:3;14546:12;14539:19;;14198:366;;;:::o;14570:::-;14712:3;14733:67;14797:2;14792:3;14733:67;:::i;:::-;14726:74;;14809:93;14898:3;14809:93;:::i;:::-;14927:2;14922:3;14918:12;14911:19;;14570:366;;;:::o;14942:::-;15084:3;15105:67;15169:2;15164:3;15105:67;:::i;:::-;15098:74;;15181:93;15270:3;15181:93;:::i;:::-;15299:2;15294:3;15290:12;15283:19;;14942:366;;;:::o;15314:::-;15456:3;15477:67;15541:2;15536:3;15477:67;:::i;:::-;15470:74;;15553:93;15642:3;15553:93;:::i;:::-;15671:2;15666:3;15662:12;15655:19;;15314:366;;;:::o;15686:::-;15828:3;15849:67;15913:2;15908:3;15849:67;:::i;:::-;15842:74;;15925:93;16014:3;15925:93;:::i;:::-;16043:2;16038:3;16034:12;16027:19;;15686:366;;;:::o;16058:::-;16200:3;16221:67;16285:2;16280:3;16221:67;:::i;:::-;16214:74;;16297:93;16386:3;16297:93;:::i;:::-;16415:2;16410:3;16406:12;16399:19;;16058:366;;;:::o;16430:::-;16572:3;16593:67;16657:2;16652:3;16593:67;:::i;:::-;16586:74;;16669:93;16758:3;16669:93;:::i;:::-;16787:2;16782:3;16778:12;16771:19;;16430:366;;;:::o;16802:::-;16944:3;16965:67;17029:2;17024:3;16965:67;:::i;:::-;16958:74;;17041:93;17130:3;17041:93;:::i;:::-;17159:2;17154:3;17150:12;17143:19;;16802:366;;;:::o;17174:::-;17316:3;17337:67;17401:2;17396:3;17337:67;:::i;:::-;17330:74;;17413:93;17502:3;17413:93;:::i;:::-;17531:2;17526:3;17522:12;17515:19;;17174:366;;;:::o;17546:::-;17688:3;17709:67;17773:2;17768:3;17709:67;:::i;:::-;17702:74;;17785:93;17874:3;17785:93;:::i;:::-;17903:2;17898:3;17894:12;17887:19;;17546:366;;;:::o;17918:::-;18060:3;18081:67;18145:2;18140:3;18081:67;:::i;:::-;18074:74;;18157:93;18246:3;18157:93;:::i;:::-;18275:2;18270:3;18266:12;18259:19;;17918:366;;;:::o;18290:::-;18432:3;18453:67;18517:2;18512:3;18453:67;:::i;:::-;18446:74;;18529:93;18618:3;18529:93;:::i;:::-;18647:2;18642:3;18638:12;18631:19;;18290:366;;;:::o;18662:::-;18804:3;18825:67;18889:2;18884:3;18825:67;:::i;:::-;18818:74;;18901:93;18990:3;18901:93;:::i;:::-;19019:2;19014:3;19010:12;19003:19;;18662:366;;;:::o;19034:::-;19176:3;19197:67;19261:2;19256:3;19197:67;:::i;:::-;19190:74;;19273:93;19362:3;19273:93;:::i;:::-;19391:2;19386:3;19382:12;19375:19;;19034:366;;;:::o;19406:::-;19548:3;19569:67;19633:2;19628:3;19569:67;:::i;:::-;19562:74;;19645:93;19734:3;19645:93;:::i;:::-;19763:2;19758:3;19754:12;19747:19;;19406:366;;;:::o;19778:::-;19920:3;19941:67;20005:2;20000:3;19941:67;:::i;:::-;19934:74;;20017:93;20106:3;20017:93;:::i;:::-;20135:2;20130:3;20126:12;20119:19;;19778:366;;;:::o;20150:118::-;20237:24;20255:5;20237:24;:::i;:::-;20232:3;20225:37;20150:118;;:::o;20274:222::-;20367:4;20405:2;20394:9;20390:18;20382:26;;20418:71;20486:1;20475:9;20471:17;20462:6;20418:71;:::i;:::-;20274:222;;;;:::o;20502:640::-;20697:4;20735:3;20724:9;20720:19;20712:27;;20749:71;20817:1;20806:9;20802:17;20793:6;20749:71;:::i;:::-;20830:72;20898:2;20887:9;20883:18;20874:6;20830:72;:::i;:::-;20912;20980:2;20969:9;20965:18;20956:6;20912:72;:::i;:::-;21031:9;21025:4;21021:20;21016:2;21005:9;21001:18;20994:48;21059:76;21130:4;21121:6;21059:76;:::i;:::-;21051:84;;20502:640;;;;;;;:::o;21148:332::-;21269:4;21307:2;21296:9;21292:18;21284:26;;21320:71;21388:1;21377:9;21373:17;21364:6;21320:71;:::i;:::-;21401:72;21469:2;21458:9;21454:18;21445:6;21401:72;:::i;:::-;21148:332;;;;;:::o;21486:210::-;21573:4;21611:2;21600:9;21596:18;21588:26;;21624:65;21686:1;21675:9;21671:17;21662:6;21624:65;:::i;:::-;21486:210;;;;:::o;21702:313::-;21815:4;21853:2;21842:9;21838:18;21830:26;;21902:9;21896:4;21892:20;21888:1;21877:9;21873:17;21866:47;21930:78;22003:4;21994:6;21930:78;:::i;:::-;21922:86;;21702:313;;;;:::o;22021:419::-;22187:4;22225:2;22214:9;22210:18;22202:26;;22274:9;22268:4;22264:20;22260:1;22249:9;22245:17;22238:47;22302:131;22428:4;22302:131;:::i;:::-;22294:139;;22021:419;;;:::o;22446:::-;22612:4;22650:2;22639:9;22635:18;22627:26;;22699:9;22693:4;22689:20;22685:1;22674:9;22670:17;22663:47;22727:131;22853:4;22727:131;:::i;:::-;22719:139;;22446:419;;;:::o;22871:::-;23037:4;23075:2;23064:9;23060:18;23052:26;;23124:9;23118:4;23114:20;23110:1;23099:9;23095:17;23088:47;23152:131;23278:4;23152:131;:::i;:::-;23144:139;;22871:419;;;:::o;23296:::-;23462:4;23500:2;23489:9;23485:18;23477:26;;23549:9;23543:4;23539:20;23535:1;23524:9;23520:17;23513:47;23577:131;23703:4;23577:131;:::i;:::-;23569:139;;23296:419;;;:::o;23721:::-;23887:4;23925:2;23914:9;23910:18;23902:26;;23974:9;23968:4;23964:20;23960:1;23949:9;23945:17;23938:47;24002:131;24128:4;24002:131;:::i;:::-;23994:139;;23721:419;;;:::o;24146:::-;24312:4;24350:2;24339:9;24335:18;24327:26;;24399:9;24393:4;24389:20;24385:1;24374:9;24370:17;24363:47;24427:131;24553:4;24427:131;:::i;:::-;24419:139;;24146:419;;;:::o;24571:::-;24737:4;24775:2;24764:9;24760:18;24752:26;;24824:9;24818:4;24814:20;24810:1;24799:9;24795:17;24788:47;24852:131;24978:4;24852:131;:::i;:::-;24844:139;;24571:419;;;:::o;24996:::-;25162:4;25200:2;25189:9;25185:18;25177:26;;25249:9;25243:4;25239:20;25235:1;25224:9;25220:17;25213:47;25277:131;25403:4;25277:131;:::i;:::-;25269:139;;24996:419;;;:::o;25421:::-;25587:4;25625:2;25614:9;25610:18;25602:26;;25674:9;25668:4;25664:20;25660:1;25649:9;25645:17;25638:47;25702:131;25828:4;25702:131;:::i;:::-;25694:139;;25421:419;;;:::o;25846:::-;26012:4;26050:2;26039:9;26035:18;26027:26;;26099:9;26093:4;26089:20;26085:1;26074:9;26070:17;26063:47;26127:131;26253:4;26127:131;:::i;:::-;26119:139;;25846:419;;;:::o;26271:::-;26437:4;26475:2;26464:9;26460:18;26452:26;;26524:9;26518:4;26514:20;26510:1;26499:9;26495:17;26488:47;26552:131;26678:4;26552:131;:::i;:::-;26544:139;;26271:419;;;:::o;26696:::-;26862:4;26900:2;26889:9;26885:18;26877:26;;26949:9;26943:4;26939:20;26935:1;26924:9;26920:17;26913:47;26977:131;27103:4;26977:131;:::i;:::-;26969:139;;26696:419;;;:::o;27121:::-;27287:4;27325:2;27314:9;27310:18;27302:26;;27374:9;27368:4;27364:20;27360:1;27349:9;27345:17;27338:47;27402:131;27528:4;27402:131;:::i;:::-;27394:139;;27121:419;;;:::o;27546:::-;27712:4;27750:2;27739:9;27735:18;27727:26;;27799:9;27793:4;27789:20;27785:1;27774:9;27770:17;27763:47;27827:131;27953:4;27827:131;:::i;:::-;27819:139;;27546:419;;;:::o;27971:::-;28137:4;28175:2;28164:9;28160:18;28152:26;;28224:9;28218:4;28214:20;28210:1;28199:9;28195:17;28188:47;28252:131;28378:4;28252:131;:::i;:::-;28244:139;;27971:419;;;:::o;28396:::-;28562:4;28600:2;28589:9;28585:18;28577:26;;28649:9;28643:4;28639:20;28635:1;28624:9;28620:17;28613:47;28677:131;28803:4;28677:131;:::i;:::-;28669:139;;28396:419;;;:::o;28821:::-;28987:4;29025:2;29014:9;29010:18;29002:26;;29074:9;29068:4;29064:20;29060:1;29049:9;29045:17;29038:47;29102:131;29228:4;29102:131;:::i;:::-;29094:139;;28821:419;;;:::o;29246:::-;29412:4;29450:2;29439:9;29435:18;29427:26;;29499:9;29493:4;29489:20;29485:1;29474:9;29470:17;29463:47;29527:131;29653:4;29527:131;:::i;:::-;29519:139;;29246:419;;;:::o;29671:::-;29837:4;29875:2;29864:9;29860:18;29852:26;;29924:9;29918:4;29914:20;29910:1;29899:9;29895:17;29888:47;29952:131;30078:4;29952:131;:::i;:::-;29944:139;;29671:419;;;:::o;30096:::-;30262:4;30300:2;30289:9;30285:18;30277:26;;30349:9;30343:4;30339:20;30335:1;30324:9;30320:17;30313:47;30377:131;30503:4;30377:131;:::i;:::-;30369:139;;30096:419;;;:::o;30521:::-;30687:4;30725:2;30714:9;30710:18;30702:26;;30774:9;30768:4;30764:20;30760:1;30749:9;30745:17;30738:47;30802:131;30928:4;30802:131;:::i;:::-;30794:139;;30521:419;;;:::o;30946:::-;31112:4;31150:2;31139:9;31135:18;31127:26;;31199:9;31193:4;31189:20;31185:1;31174:9;31170:17;31163:47;31227:131;31353:4;31227:131;:::i;:::-;31219:139;;30946:419;;;:::o;31371:::-;31537:4;31575:2;31564:9;31560:18;31552:26;;31624:9;31618:4;31614:20;31610:1;31599:9;31595:17;31588:47;31652:131;31778:4;31652:131;:::i;:::-;31644:139;;31371:419;;;:::o;31796:::-;31962:4;32000:2;31989:9;31985:18;31977:26;;32049:9;32043:4;32039:20;32035:1;32024:9;32020:17;32013:47;32077:131;32203:4;32077:131;:::i;:::-;32069:139;;31796:419;;;:::o;32221:::-;32387:4;32425:2;32414:9;32410:18;32402:26;;32474:9;32468:4;32464:20;32460:1;32449:9;32445:17;32438:47;32502:131;32628:4;32502:131;:::i;:::-;32494:139;;32221:419;;;:::o;32646:::-;32812:4;32850:2;32839:9;32835:18;32827:26;;32899:9;32893:4;32889:20;32885:1;32874:9;32870:17;32863:47;32927:131;33053:4;32927:131;:::i;:::-;32919:139;;32646:419;;;:::o;33071:222::-;33164:4;33202:2;33191:9;33187:18;33179:26;;33215:71;33283:1;33272:9;33268:17;33259:6;33215:71;:::i;:::-;33071:222;;;;:::o;33299:129::-;33333:6;33360:20;;:::i;:::-;33350:30;;33389:33;33417:4;33409:6;33389:33;:::i;:::-;33299:129;;;:::o;33434:75::-;33467:6;33500:2;33494:9;33484:19;;33434:75;:::o;33515:307::-;33576:4;33666:18;33658:6;33655:30;33652:56;;;33688:18;;:::i;:::-;33652:56;33726:29;33748:6;33726:29;:::i;:::-;33718:37;;33810:4;33804;33800:15;33792:23;;33515:307;;;:::o;33828:308::-;33890:4;33980:18;33972:6;33969:30;33966:56;;;34002:18;;:::i;:::-;33966:56;34040:29;34062:6;34040:29;:::i;:::-;34032:37;;34124:4;34118;34114:15;34106:23;;33828:308;;;:::o;34142:98::-;34193:6;34227:5;34221:12;34211:22;;34142:98;;;:::o;34246:99::-;34298:6;34332:5;34326:12;34316:22;;34246:99;;;:::o;34351:168::-;34434:11;34468:6;34463:3;34456:19;34508:4;34503:3;34499:14;34484:29;;34351:168;;;;:::o;34525:169::-;34609:11;34643:6;34638:3;34631:19;34683:4;34678:3;34674:14;34659:29;;34525:169;;;;:::o;34700:273::-;34740:3;34759:20;34777:1;34759:20;:::i;:::-;34754:25;;34793:20;34811:1;34793:20;:::i;:::-;34788:25;;34915:1;34879:34;34875:42;34872:1;34869:49;34866:75;;;34921:18;;:::i;:::-;34866:75;34965:1;34962;34958:9;34951:16;;34700:273;;;;:::o;34979:305::-;35019:3;35038:20;35056:1;35038:20;:::i;:::-;35033:25;;35072:20;35090:1;35072:20;:::i;:::-;35067:25;;35226:1;35158:66;35154:74;35151:1;35148:81;35145:107;;;35232:18;;:::i;:::-;35145:107;35276:1;35273;35269:9;35262:16;;34979:305;;;;:::o;35290:185::-;35330:1;35347:20;35365:1;35347:20;:::i;:::-;35342:25;;35381:20;35399:1;35381:20;:::i;:::-;35376:25;;35420:1;35410:35;;35425:18;;:::i;:::-;35410:35;35467:1;35464;35460:9;35455:14;;35290:185;;;;:::o;35481:348::-;35521:7;35544:20;35562:1;35544:20;:::i;:::-;35539:25;;35578:20;35596:1;35578:20;:::i;:::-;35573:25;;35766:1;35698:66;35694:74;35691:1;35688:81;35683:1;35676:9;35669:17;35665:105;35662:131;;;35773:18;;:::i;:::-;35662:131;35821:1;35818;35814:9;35803:20;;35481:348;;;;:::o;35835:191::-;35875:4;35895:20;35913:1;35895:20;:::i;:::-;35890:25;;35929:20;35947:1;35929:20;:::i;:::-;35924:25;;35968:1;35965;35962:8;35959:34;;;35973:18;;:::i;:::-;35959:34;36018:1;36015;36011:9;36003:17;;35835:191;;;;:::o;36032:::-;36072:4;36092:20;36110:1;36092:20;:::i;:::-;36087:25;;36126:20;36144:1;36126:20;:::i;:::-;36121:25;;36165:1;36162;36159:8;36156:34;;;36170:18;;:::i;:::-;36156:34;36215:1;36212;36208:9;36200:17;;36032:191;;;;:::o;36229:96::-;36266:7;36295:24;36313:5;36295:24;:::i;:::-;36284:35;;36229:96;;;:::o;36331:90::-;36365:7;36408:5;36401:13;36394:21;36383:32;;36331:90;;;:::o;36427:149::-;36463:7;36503:66;36496:5;36492:78;36481:89;;36427:149;;;:::o;36582:110::-;36633:7;36662:24;36680:5;36662:24;:::i;:::-;36651:35;;36582:110;;;:::o;36698:118::-;36735:7;36775:34;36768:5;36764:46;36753:57;;36698:118;;;:::o;36822:126::-;36859:7;36899:42;36892:5;36888:54;36877:65;;36822:126;;;:::o;36954:77::-;36991:7;37020:5;37009:16;;36954:77;;;:::o;37037:154::-;37121:6;37116:3;37111;37098:30;37183:1;37174:6;37169:3;37165:16;37158:27;37037:154;;;:::o;37197:307::-;37265:1;37275:113;37289:6;37286:1;37283:13;37275:113;;;37374:1;37369:3;37365:11;37359:18;37355:1;37350:3;37346:11;37339:39;37311:2;37308:1;37304:10;37299:15;;37275:113;;;37406:6;37403:1;37400:13;37397:101;;;37486:1;37477:6;37472:3;37468:16;37461:27;37397:101;37246:258;37197:307;;;:::o;37510:171::-;37549:3;37572:24;37590:5;37572:24;:::i;:::-;37563:33;;37618:4;37611:5;37608:15;37605:41;;;37626:18;;:::i;:::-;37605:41;37673:1;37666:5;37662:13;37655:20;;37510:171;;;:::o;37687:320::-;37731:6;37768:1;37762:4;37758:12;37748:22;;37815:1;37809:4;37805:12;37836:18;37826:81;;37892:4;37884:6;37880:17;37870:27;;37826:81;37954:2;37946:6;37943:14;37923:18;37920:38;37917:84;;;37973:18;;:::i;:::-;37917:84;37738:269;37687:320;;;:::o;38013:281::-;38096:27;38118:4;38096:27;:::i;:::-;38088:6;38084:40;38226:6;38214:10;38211:22;38190:18;38178:10;38175:34;38172:62;38169:88;;;38237:18;;:::i;:::-;38169:88;38277:10;38273:2;38266:22;38056:238;38013:281;;:::o;38300:233::-;38339:3;38362:24;38380:5;38362:24;:::i;:::-;38353:33;;38408:66;38401:5;38398:77;38395:103;;;38478:18;;:::i;:::-;38395:103;38525:1;38518:5;38514:13;38507:20;;38300:233;;;:::o;38539:180::-;38587:77;38584:1;38577:88;38684:4;38681:1;38674:15;38708:4;38705:1;38698:15;38725:180;38773:77;38770:1;38763:88;38870:4;38867:1;38860:15;38894:4;38891:1;38884:15;38911:180;38959:77;38956:1;38949:88;39056:4;39053:1;39046:15;39080:4;39077:1;39070:15;39097:180;39145:77;39142:1;39135:88;39242:4;39239:1;39232:15;39266:4;39263:1;39256:15;39283:117;39392:1;39389;39382:12;39406:117;39515:1;39512;39505:12;39529:117;39638:1;39635;39628:12;39652:117;39761:1;39758;39751:12;39775:102;39816:6;39867:2;39863:7;39858:2;39851:5;39847:14;39843:28;39833:38;;39775:102;;;:::o;39883:221::-;40023:34;40019:1;40011:6;40007:14;40000:58;40092:4;40087:2;40079:6;40075:15;40068:29;39883:221;:::o;40110:225::-;40250:34;40246:1;40238:6;40234:14;40227:58;40319:8;40314:2;40306:6;40302:15;40295:33;40110:225;:::o;40341:229::-;40481:34;40477:1;40469:6;40465:14;40458:58;40550:12;40545:2;40537:6;40533:15;40526:37;40341:229;:::o;40576:222::-;40716:34;40712:1;40704:6;40700:14;40693:58;40785:5;40780:2;40772:6;40768:15;40761:30;40576:222;:::o;40804:221::-;40944:34;40940:1;40932:6;40928:14;40921:58;41013:4;41008:2;41000:6;40996:15;40989:29;40804:221;:::o;41031:224::-;41171:34;41167:1;41159:6;41155:14;41148:58;41240:7;41235:2;41227:6;41223:15;41216:32;41031:224;:::o;41261:221::-;41401:34;41397:1;41389:6;41385:14;41378:58;41470:4;41465:2;41457:6;41453:15;41446:29;41261:221;:::o;41488:167::-;41628:19;41624:1;41616:6;41612:14;41605:43;41488:167;:::o;41661:244::-;41801:34;41797:1;41789:6;41785:14;41778:58;41870:27;41865:2;41857:6;41853:15;41846:52;41661:244;:::o;41911:230::-;42051:34;42047:1;42039:6;42035:14;42028:58;42120:13;42115:2;42107:6;42103:15;42096:38;41911:230;:::o;42147:225::-;42287:34;42283:1;42275:6;42271:14;42264:58;42356:8;42351:2;42343:6;42339:15;42332:33;42147:225;:::o;42378:182::-;42518:34;42514:1;42506:6;42502:14;42495:58;42378:182;:::o;42566:176::-;42706:28;42702:1;42694:6;42690:14;42683:52;42566:176;:::o;42748:237::-;42888:34;42884:1;42876:6;42872:14;42865:58;42957:20;42952:2;42944:6;42940:15;42933:45;42748:237;:::o;42991:221::-;43131:34;43127:1;43119:6;43115:14;43108:58;43200:4;43195:2;43187:6;43183:15;43176:29;42991:221;:::o;43218:238::-;43358:34;43354:1;43346:6;43342:14;43335:58;43427:21;43422:2;43414:6;43410:15;43403:46;43218:238;:::o;43462:179::-;43602:31;43598:1;43590:6;43586:14;43579:55;43462:179;:::o;43647:220::-;43787:34;43783:1;43775:6;43771:14;43764:58;43856:3;43851:2;43843:6;43839:15;43832:28;43647:220;:::o;43873:178::-;44013:30;44009:1;44001:6;43997:14;43990:54;43873:178;:::o;44057:174::-;44197:26;44193:1;44185:6;44181:14;44174:50;44057:174;:::o;44237:233::-;44377:34;44373:1;44365:6;44361:14;44354:58;44446:16;44441:2;44433:6;44429:15;44422:41;44237:233;:::o;44476:181::-;44616:33;44612:1;44604:6;44600:14;44593:57;44476:181;:::o;44663:234::-;44803:34;44799:1;44791:6;44787:14;44780:58;44872:17;44867:2;44859:6;44855:15;44848:42;44663:234;:::o;44903:173::-;45043:25;45039:1;45031:6;45027:14;45020:49;44903:173;:::o;45082:232::-;45222:34;45218:1;45210:6;45206:14;45199:58;45291:15;45286:2;45278:6;45274:15;45267:40;45082:232;:::o;45320:221::-;45460:34;45456:1;45448:6;45444:14;45437:58;45529:4;45524:2;45516:6;45512:15;45505:29;45320:221;:::o;45547:122::-;45620:24;45638:5;45620:24;:::i;:::-;45613:5;45610:35;45600:63;;45659:1;45656;45649:12;45600:63;45547:122;:::o;45675:116::-;45745:21;45760:5;45745:21;:::i;:::-;45738:5;45735:32;45725:60;;45781:1;45778;45771:12;45725:60;45675:116;:::o;45797:120::-;45869:23;45886:5;45869:23;:::i;:::-;45862:5;45859:34;45849:62;;45907:1;45904;45897:12;45849:62;45797:120;:::o;45923:150::-;46010:38;46042:5;46010:38;:::i;:::-;46003:5;46000:49;45990:77;;46063:1;46060;46053:12;45990:77;45923:150;:::o;46079:122::-;46152:24;46170:5;46152:24;:::i;:::-;46145:5;46142:35;46132:63;;46191:1;46188;46181:12;46132:63;46079:122;:::o

Swarm Source

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