ETH Price: $3,440.41 (-2.17%)
Gas: 3 Gwei

Token

mfers drive (MFERSDRIVE)
 

Overview

Max Total Supply

900 MFERSDRIVE

Holders

63

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
leenie.eth
Balance
14 MFERSDRIVE
0x05fd89e1c798d13c0776b6c1a6789ecc32b1d1fa
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:
mfersdrive

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: GPL-3.0
// 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/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 (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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/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 (last updated v4.5.0) (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);

    /**
     * @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.10;









/**
 * @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..).
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 1;

  uint256 public 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.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_
  ) {
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
  }

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

  /**
   * @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(totalSupply). 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:
   *
   * - `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 > currentIndex - 1) {
      endIndex = currentIndex - 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/mfersdrive.sol

pragma solidity >=0.7.0 <0.9.0;

contract mfersdrive is ERC721A, Ownable {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 0.0077 ether;
  uint256 public maxSupply = 7777;
  uint256 public maxsize = 20 ; // max mint per tx
  bool public paused = false;

  constructor() ERC721A("mfers drive", "MFERSDRIVE", maxsize) {
    setBaseURI("ipfs://QmQ6FQb7FHZazCrbQ6yZQ4AwChqhM3KgVhS7ZUzkMdWhMF/");
  }

  // internal
  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }

  // public
  function mint(uint256 tokens) public payable {
    require(!paused, "Contract is paused");
    uint256 supply = totalSupply();
    require(tokens > 0, "Need to mint at least 1 NFT");
    require(tokens <= maxsize, "Max mint amount per tx exceeded");
    require(supply + tokens <= maxSupply, "MFER DRIVE! WE SOLD OUT!");
    if (supply < 777) {
      require(msg.value >= 0 * tokens, "It's Free Mint");
    } else {

    require(msg.value >= cost * tokens, "FFMfers: insufficient funds");
    }

      _safeMint(_msgSender(), tokens);
    
  }



  /// @dev use it for giveaway and mint for yourself
     function gift(uint256 _mintAmount, address destination) public onlyOwner {
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    uint256 supply = totalSupply();
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

      _safeMint(destination, _mintAmount);
    
  }

  


  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721AMetadata: URI query for nonexistent token"
    );
    

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

  //only owner

  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

    function setMaxsupply(uint256 _newsupply) public onlyOwner {
    maxSupply = _newsupply;
  }


  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }
  

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
 
  function withdraw() public payable onlyOwner {
    (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
    require(success);
  }
}

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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"maxBatchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxsize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setMaxsupply","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60a0604052600160005560006007556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90805190602001906200005b92919062000380565b50661b5b1bf4c54000600b55611e61600c556014600d556000600e60006101000a81548160ff0219169083151502179055503480156200009a57600080fd5b506040518060400160405280600b81526020017f6d666572732064726976650000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f4d46455253445249564500000000000000000000000000000000000000000000815250600d546000811162000150576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200014790620004b7565b60405180910390fd5b82600190805190602001906200016892919062000380565b5081600290805190602001906200018192919062000380565b508060808181525050505050620001ad620001a1620001dd60201b60201c565b620001e560201b60201c565b620001d7604051806060016040528060368152602001620052d360369139620002ab60201b60201c565b620005b0565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002bb620001dd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002e16200035660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200033a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003319062000529565b60405180910390fd5b80600990805190602001906200035292919062000380565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200038e906200057a565b90600052602060002090601f016020900481019282620003b25760008555620003fe565b82601f10620003cd57805160ff1916838001178555620003fe565b82800160010185558215620003fe579182015b82811115620003fd578251825591602001919060010190620003e0565b5b5090506200040d919062000411565b5090565b5b808211156200042c57600081600090555060010162000412565b5090565b600082825260208201905092915050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b60006200049f60278362000430565b9150620004ac8262000441565b604082019050919050565b60006020820190508181036000830152620004d28162000490565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200051160208362000430565b91506200051e82620004d9565b602082019050919050565b60006020820190508181036000830152620005448162000502565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200059357607f821691505b60208210811415620005aa57620005a96200054b565b5b50919050565b608051614cf2620005e160003960008181610d2d0152818161250c015281816125350152612be70152614cf26000f3fe60806040526004361061020f5760003560e01c80636352211e11610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610781578063d7224ba0146107ac578063da3ef23f146107d7578063e985e9c514610800578063f2fde38b1461083d5761020f565b8063a22cb465146106c7578063b88d4fde146106f0578063c668286214610719578063c87b56dd146107445761020f565b8063715018a6116100e7578063715018a61461061557806383a076be1461062c5780638da5cb5b1461065557806395d89b4114610680578063a0712d68146106ab5761020f565b80636352211e146105455780636c0360eb146105825780636c6e927e146105ad57806370a08231146105d85761020f565b80632913daa01161019b578063438b63001161016a578063438b63001461044e57806344a0d68a1461048b5780634f6ccce7146104b457806355f804b3146104f15780635c975abb1461051a5761020f565b80632913daa0146103b35780632f745c59146103de5780633ccfd60b1461041b57806342842e0e146104255761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806313faede61461030b578063149835a01461033657806318160ddd1461035f57806323b872dd1461038a5761020f565b806301ffc9a71461021457806302329a291461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613171565b610866565b60405161024891906131b9565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190613200565b6109b0565b005b34801561028657600080fd5b5061028f610a49565b60405161029c91906132c6565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c7919061331e565b610adb565b6040516102d9919061338c565b60405180910390f35b3480156102ee57600080fd5b50610309600480360381019061030491906133d3565b610b60565b005b34801561031757600080fd5b50610320610c79565b60405161032d9190613422565b60405180910390f35b34801561034257600080fd5b5061035d6004803603810190610358919061331e565b610c7f565b005b34801561036b57600080fd5b50610374610d05565b6040516103819190613422565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac919061343d565b610d1b565b005b3480156103bf57600080fd5b506103c8610d2b565b6040516103d59190613422565b60405180910390f35b3480156103ea57600080fd5b50610405600480360381019061040091906133d3565b610d4f565b6040516104129190613422565b60405180910390f35b610423610f4d565b005b34801561043157600080fd5b5061044c6004803603810190610447919061343d565b611042565b005b34801561045a57600080fd5b5061047560048036038101906104709190613490565b611062565b604051610482919061357b565b60405180910390f35b34801561049757600080fd5b506104b260048036038101906104ad919061331e565b611110565b005b3480156104c057600080fd5b506104db60048036038101906104d6919061331e565b611196565b6040516104e89190613422565b60405180910390f35b3480156104fd57600080fd5b50610518600480360381019061051391906136d2565b6111e9565b005b34801561052657600080fd5b5061052f61127f565b60405161053c91906131b9565b60405180910390f35b34801561055157600080fd5b5061056c6004803603810190610567919061331e565b611292565b604051610579919061338c565b60405180910390f35b34801561058e57600080fd5b506105976112a8565b6040516105a491906132c6565b60405180910390f35b3480156105b957600080fd5b506105c2611336565b6040516105cf9190613422565b60405180910390f35b3480156105e457600080fd5b506105ff60048036038101906105fa9190613490565b61133c565b60405161060c9190613422565b60405180910390f35b34801561062157600080fd5b5061062a611425565b005b34801561063857600080fd5b50610653600480360381019061064e919061371b565b6114ad565b005b34801561066157600080fd5b5061066a6115d7565b604051610677919061338c565b60405180910390f35b34801561068c57600080fd5b50610695611601565b6040516106a291906132c6565b60405180910390f35b6106c560048036038101906106c0919061331e565b611693565b005b3480156106d357600080fd5b506106ee60048036038101906106e9919061375b565b61188b565b005b3480156106fc57600080fd5b506107176004803603810190610712919061383c565b611a0c565b005b34801561072557600080fd5b5061072e611a68565b60405161073b91906132c6565b60405180910390f35b34801561075057600080fd5b5061076b6004803603810190610766919061331e565b611af6565b60405161077891906132c6565b60405180910390f35b34801561078d57600080fd5b50610796611ba0565b6040516107a39190613422565b60405180910390f35b3480156107b857600080fd5b506107c1611ba6565b6040516107ce9190613422565b60405180910390f35b3480156107e357600080fd5b506107fe60048036038101906107f991906136d2565b611bac565b005b34801561080c57600080fd5b50610827600480360381019061082291906138bf565b611c42565b60405161083491906131b9565b60405180910390f35b34801561084957600080fd5b50610864600480360381019061085f9190613490565b611cd6565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a957506109a882611dce565b5b9050919050565b6109b8611e38565b73ffffffffffffffffffffffffffffffffffffffff166109d66115d7565b73ffffffffffffffffffffffffffffffffffffffff1614610a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a239061394b565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b606060018054610a589061399a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a849061399a565b8015610ad15780601f10610aa657610100808354040283529160200191610ad1565b820191906000526020600020905b815481529060010190602001808311610ab457829003601f168201915b5050505050905090565b6000610ae682611e40565b610b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1c90613a3e565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b6b82611292565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd390613ad0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bfb611e38565b73ffffffffffffffffffffffffffffffffffffffff161480610c2a5750610c2981610c24611e38565b611c42565b5b610c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6090613b62565b60405180910390fd5b610c74838383611e4d565b505050565b600b5481565b610c87611e38565b73ffffffffffffffffffffffffffffffffffffffff16610ca56115d7565b73ffffffffffffffffffffffffffffffffffffffff1614610cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf29061394b565b60405180910390fd5b80600c8190555050565b60006001600054610d169190613bb1565b905090565b610d26838383611eff565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000610d5a8361133c565b8210610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9290613c57565b60405180910390fd5b6000610da5610d05565b905060008060005b83811015610f0b576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e9f57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ef75786841415610ee8578195505050505050610f47565b8380610ef390613c77565b9450505b508080610f0390613c77565b915050610dad565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e90613d32565b60405180910390fd5b92915050565b610f55611e38565b73ffffffffffffffffffffffffffffffffffffffff16610f736115d7565b73ffffffffffffffffffffffffffffffffffffffff1614610fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc09061394b565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610fef90613d83565b60006040518083038185875af1925050503d806000811461102c576040519150601f19603f3d011682016040523d82523d6000602084013e611031565b606091505b505090508061103f57600080fd5b50565b61105d83838360405180602001604052806000815250611a0c565b505050565b6060600061106f8361133c565b905060008167ffffffffffffffff81111561108d5761108c6135a7565b5b6040519080825280602002602001820160405280156110bb5781602001602082028036833780820191505090505b50905060005b82811015611105576110d38582610d4f565b8282815181106110e6576110e5613d98565b5b60200260200101818152505080806110fd90613c77565b9150506110c1565b508092505050919050565b611118611e38565b73ffffffffffffffffffffffffffffffffffffffff166111366115d7565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111839061394b565b60405180910390fd5b80600b8190555050565b60006111a0610d05565b82106111e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d890613e39565b60405180910390fd5b819050919050565b6111f1611e38565b73ffffffffffffffffffffffffffffffffffffffff1661120f6115d7565b73ffffffffffffffffffffffffffffffffffffffff1614611265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125c9061394b565b60405180910390fd5b806009908051906020019061127b929190613028565b5050565b600e60009054906101000a900460ff1681565b600061129d826124b8565b600001519050919050565b600980546112b59061399a565b80601f01602080910402602001604051908101604052809291908181526020018280546112e19061399a565b801561132e5780601f106113035761010080835404028352916020019161132e565b820191906000526020600020905b81548152906001019060200180831161131157829003601f168201915b505050505081565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a490613ecb565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61142d611e38565b73ffffffffffffffffffffffffffffffffffffffff1661144b6115d7565b73ffffffffffffffffffffffffffffffffffffffff16146114a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114989061394b565b60405180910390fd5b6114ab60006126bb565b565b6114b5611e38565b73ffffffffffffffffffffffffffffffffffffffff166114d36115d7565b73ffffffffffffffffffffffffffffffffffffffff1614611529576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115209061394b565b60405180910390fd5b6000821161156c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156390613f37565b60405180910390fd5b6000611576610d05565b9050600c5483826115879190613f57565b11156115c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bf90613ff9565b60405180910390fd5b6115d28284612781565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546116109061399a565b80601f016020809104026020016040519081016040528092919081815260200182805461163c9061399a565b80156116895780601f1061165e57610100808354040283529160200191611689565b820191906000526020600020905b81548152906001019060200180831161166c57829003601f168201915b5050505050905090565b600e60009054906101000a900460ff16156116e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116da90614065565b60405180910390fd5b60006116ed610d05565b905060008211611732576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611729906140d1565b60405180910390fd5b600d54821115611777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176e9061413d565b60405180910390fd5b600c5482826117869190613f57565b11156117c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117be906141a9565b60405180910390fd5b610309811015611825578160006117de91906141c9565b341015611820576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118179061426f565b60405180910390fd5b611876565b81600b5461183391906141c9565b341015611875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186c906142db565b60405180910390fd5b5b611887611881611e38565b83612781565b5050565b611893611e38565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f890614347565b60405180910390fd5b806006600061190e611e38565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119bb611e38565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a0091906131b9565b60405180910390a35050565b611a17848484611eff565b611a238484848461279f565b611a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a59906143d9565b60405180910390fd5b50505050565b600a8054611a759061399a565b80601f0160208091040260200160405190810160405280929190818152602001828054611aa19061399a565b8015611aee5780601f10611ac357610100808354040283529160200191611aee565b820191906000526020600020905b815481529060010190602001808311611ad157829003601f168201915b505050505081565b6060611b0182611e40565b611b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b379061446b565b60405180910390fd5b6000611b4a612927565b90506000815111611b6a5760405180602001604052806000815250611b98565b80611b74846129b9565b600a604051602001611b889392919061455b565b6040516020818303038152906040525b915050919050565b600c5481565b60075481565b611bb4611e38565b73ffffffffffffffffffffffffffffffffffffffff16611bd26115d7565b73ffffffffffffffffffffffffffffffffffffffff1614611c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1f9061394b565b60405180910390fd5b80600a9080519060200190611c3e929190613028565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cde611e38565b73ffffffffffffffffffffffffffffffffffffffff16611cfc6115d7565b73ffffffffffffffffffffffffffffffffffffffff1614611d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d499061394b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db9906145fe565b60405180910390fd5b611dcb816126bb565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611f0a826124b8565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611f31611e38565b73ffffffffffffffffffffffffffffffffffffffff161480611f8d5750611f56611e38565b73ffffffffffffffffffffffffffffffffffffffff16611f7584610adb565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fa95750611fa88260000151611fa3611e38565b611c42565b5b905080611feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe290614690565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461205d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205490614722565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c4906147b4565b60405180910390fd5b6120da8585856001612b1a565b6120ea6000848460000151611e4d565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661215891906147f0565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166121fc9190614824565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846123029190613f57565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124485761237881611e40565b15612447576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124b08686866001612b20565b505050505050565b6124c06130ae565b6124c982611e40565b612508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ff906148dc565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000000831061256c5760017f00000000000000000000000000000000000000000000000000000000000000008461255f9190613bb1565b6125699190613f57565b90505b60008390505b81811061267a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612666578093505050506126b6565b508080612672906148fc565b915050612572565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ad90614998565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61279b828260405180602001604052806000815250612b26565b5050565b60006127c08473ffffffffffffffffffffffffffffffffffffffff16613005565b1561291a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127e9611e38565b8786866040518563ffffffff1660e01b815260040161280b9493929190614a0d565b6020604051808303816000875af192505050801561284757506040513d601f19601f820116820180604052508101906128449190614a6e565b60015b6128ca573d8060008114612877576040519150601f19603f3d011682016040523d82523d6000602084013e61287c565b606091505b506000815114156128c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b9906143d9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061291f565b600190505b949350505050565b6060600980546129369061399a565b80601f01602080910402602001604051908101604052809291908181526020018280546129629061399a565b80156129af5780601f10612984576101008083540402835291602001916129af565b820191906000526020600020905b81548152906001019060200180831161299257829003601f168201915b5050505050905090565b60606000821415612a01576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b15565b600082905060005b60008214612a33578080612a1c90613c77565b915050600a82612a2c9190614aca565b9150612a09565b60008167ffffffffffffffff811115612a4f57612a4e6135a7565b5b6040519080825280601f01601f191660200182016040528015612a815781602001600182028036833780820191505090505b5090505b60008514612b0e57600182612a9a9190613bb1565b9150600a85612aa99190614afb565b6030612ab59190613f57565b60f81b818381518110612acb57612aca613d98565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b079190614aca565b9450612a85565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9390614b9e565b60405180910390fd5b612ba581611e40565b15612be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdc90614c0a565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3f90614c9c565b60405180910390fd5b612c556000858386612b1a565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612d529190614824565b6fffffffffffffffffffffffffffffffff168152602001858360200151612d799190614824565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612fe857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f88600088848861279f565b612fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fbe906143d9565b60405180910390fd5b8180612fd290613c77565b9250508080612fe090613c77565b915050612f17565b5080600081905550612ffd6000878588612b20565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546130349061399a565b90600052602060002090601f016020900481019282613056576000855561309d565b82601f1061306f57805160ff191683800117855561309d565b8280016001018555821561309d579182015b8281111561309c578251825591602001919060010190613081565b5b5090506130aa91906130e8565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156131015760008160009055506001016130e9565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61314e81613119565b811461315957600080fd5b50565b60008135905061316b81613145565b92915050565b6000602082840312156131875761318661310f565b5b60006131958482850161315c565b91505092915050565b60008115159050919050565b6131b38161319e565b82525050565b60006020820190506131ce60008301846131aa565b92915050565b6131dd8161319e565b81146131e857600080fd5b50565b6000813590506131fa816131d4565b92915050565b6000602082840312156132165761321561310f565b5b6000613224848285016131eb565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561326757808201518184015260208101905061324c565b83811115613276576000848401525b50505050565b6000601f19601f8301169050919050565b60006132988261322d565b6132a28185613238565b93506132b2818560208601613249565b6132bb8161327c565b840191505092915050565b600060208201905081810360008301526132e0818461328d565b905092915050565b6000819050919050565b6132fb816132e8565b811461330657600080fd5b50565b600081359050613318816132f2565b92915050565b6000602082840312156133345761333361310f565b5b600061334284828501613309565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006133768261334b565b9050919050565b6133868161336b565b82525050565b60006020820190506133a1600083018461337d565b92915050565b6133b08161336b565b81146133bb57600080fd5b50565b6000813590506133cd816133a7565b92915050565b600080604083850312156133ea576133e961310f565b5b60006133f8858286016133be565b925050602061340985828601613309565b9150509250929050565b61341c816132e8565b82525050565b60006020820190506134376000830184613413565b92915050565b6000806000606084860312156134565761345561310f565b5b6000613464868287016133be565b9350506020613475868287016133be565b925050604061348686828701613309565b9150509250925092565b6000602082840312156134a6576134a561310f565b5b60006134b4848285016133be565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6134f2816132e8565b82525050565b600061350483836134e9565b60208301905092915050565b6000602082019050919050565b6000613528826134bd565b61353281856134c8565b935061353d836134d9565b8060005b8381101561356e57815161355588826134f8565b975061356083613510565b925050600181019050613541565b5085935050505092915050565b60006020820190508181036000830152613595818461351d565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135df8261327c565b810181811067ffffffffffffffff821117156135fe576135fd6135a7565b5b80604052505050565b6000613611613105565b905061361d82826135d6565b919050565b600067ffffffffffffffff82111561363d5761363c6135a7565b5b6136468261327c565b9050602081019050919050565b82818337600083830152505050565b600061367561367084613622565b613607565b905082815260208101848484011115613691576136906135a2565b5b61369c848285613653565b509392505050565b600082601f8301126136b9576136b861359d565b5b81356136c9848260208601613662565b91505092915050565b6000602082840312156136e8576136e761310f565b5b600082013567ffffffffffffffff81111561370657613705613114565b5b613712848285016136a4565b91505092915050565b600080604083850312156137325761373161310f565b5b600061374085828601613309565b9250506020613751858286016133be565b9150509250929050565b600080604083850312156137725761377161310f565b5b6000613780858286016133be565b9250506020613791858286016131eb565b9150509250929050565b600067ffffffffffffffff8211156137b6576137b56135a7565b5b6137bf8261327c565b9050602081019050919050565b60006137df6137da8461379b565b613607565b9050828152602081018484840111156137fb576137fa6135a2565b5b613806848285613653565b509392505050565b600082601f8301126138235761382261359d565b5b81356138338482602086016137cc565b91505092915050565b600080600080608085870312156138565761385561310f565b5b6000613864878288016133be565b9450506020613875878288016133be565b935050604061388687828801613309565b925050606085013567ffffffffffffffff8111156138a7576138a6613114565b5b6138b38782880161380e565b91505092959194509250565b600080604083850312156138d6576138d561310f565b5b60006138e4858286016133be565b92505060206138f5858286016133be565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613935602083613238565b9150613940826138ff565b602082019050919050565b6000602082019050818103600083015261396481613928565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806139b257607f821691505b602082108114156139c6576139c561396b565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613a28602d83613238565b9150613a33826139cc565b604082019050919050565b60006020820190508181036000830152613a5781613a1b565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613aba602283613238565b9150613ac582613a5e565b604082019050919050565b60006020820190508181036000830152613ae981613aad565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613b4c603983613238565b9150613b5782613af0565b604082019050919050565b60006020820190508181036000830152613b7b81613b3f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613bbc826132e8565b9150613bc7836132e8565b925082821015613bda57613bd9613b82565b5b828203905092915050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c41602283613238565b9150613c4c82613be5565b604082019050919050565b60006020820190508181036000830152613c7081613c34565b9050919050565b6000613c82826132e8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cb557613cb4613b82565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613d1c602e83613238565b9150613d2782613cc0565b604082019050919050565b60006020820190508181036000830152613d4b81613d0f565b9050919050565b600081905092915050565b50565b6000613d6d600083613d52565b9150613d7882613d5d565b600082019050919050565b6000613d8e82613d60565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613e23602383613238565b9150613e2e82613dc7565b604082019050919050565b60006020820190508181036000830152613e5281613e16565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613eb5602b83613238565b9150613ec082613e59565b604082019050919050565b60006020820190508181036000830152613ee481613ea8565b9050919050565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6000613f21601b83613238565b9150613f2c82613eeb565b602082019050919050565b60006020820190508181036000830152613f5081613f14565b9050919050565b6000613f62826132e8565b9150613f6d836132e8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fa257613fa1613b82565b5b828201905092915050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b6000613fe3601683613238565b9150613fee82613fad565b602082019050919050565b6000602082019050818103600083015261401281613fd6565b9050919050565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b600061404f601283613238565b915061405a82614019565b602082019050919050565b6000602082019050818103600083015261407e81614042565b9050919050565b7f4e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b60006140bb601b83613238565b91506140c682614085565b602082019050919050565b600060208201905081810360008301526140ea816140ae565b9050919050565b7f4d6178206d696e7420616d6f756e742070657220747820657863656564656400600082015250565b6000614127601f83613238565b9150614132826140f1565b602082019050919050565b600060208201905081810360008301526141568161411a565b9050919050565b7f4d4645522044524956452120574520534f4c44204f5554210000000000000000600082015250565b6000614193601883613238565b915061419e8261415d565b602082019050919050565b600060208201905081810360008301526141c281614186565b9050919050565b60006141d4826132e8565b91506141df836132e8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561421857614217613b82565b5b828202905092915050565b7f497427732046726565204d696e74000000000000000000000000000000000000600082015250565b6000614259600e83613238565b915061426482614223565b602082019050919050565b600060208201905081810360008301526142888161424c565b9050919050565b7f46464d666572733a20696e73756666696369656e742066756e64730000000000600082015250565b60006142c5601b83613238565b91506142d08261428f565b602082019050919050565b600060208201905081810360008301526142f4816142b8565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614331601a83613238565b915061433c826142fb565b602082019050919050565b6000602082019050818103600083015261436081614324565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006143c3603383613238565b91506143ce82614367565b604082019050919050565b600060208201905081810360008301526143f2816143b6565b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b6000614455603083613238565b9150614460826143f9565b604082019050919050565b6000602082019050818103600083015261448481614448565b9050919050565b600081905092915050565b60006144a18261322d565b6144ab818561448b565b93506144bb818560208601613249565b80840191505092915050565b60008190508160005260206000209050919050565b600081546144e98161399a565b6144f3818661448b565b9450600182166000811461450e576001811461451f57614552565b60ff19831686528186019350614552565b614528856144c7565b60005b8381101561454a5781548189015260018201915060208101905061452b565b838801955050505b50505092915050565b60006145678286614496565b91506145738285614496565b915061457f82846144dc565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006145e8602683613238565b91506145f38261458c565b604082019050919050565b60006020820190508181036000830152614617816145db565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b600061467a603283613238565b91506146858261461e565b604082019050919050565b600060208201905081810360008301526146a98161466d565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b600061470c602683613238565b9150614717826146b0565b604082019050919050565b6000602082019050818103600083015261473b816146ff565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061479e602583613238565b91506147a982614742565b604082019050919050565b600060208201905081810360008301526147cd81614791565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b60006147fb826147d4565b9150614806836147d4565b92508282101561481957614818613b82565b5b828203905092915050565b600061482f826147d4565b915061483a836147d4565b9250826fffffffffffffffffffffffffffffffff0382111561485f5761485e613b82565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b60006148c6602a83613238565b91506148d18261486a565b604082019050919050565b600060208201905081810360008301526148f5816148b9565b9050919050565b6000614907826132e8565b9150600082141561491b5761491a613b82565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614982602f83613238565b915061498d82614926565b604082019050919050565b600060208201905081810360008301526149b181614975565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006149df826149b8565b6149e981856149c3565b93506149f9818560208601613249565b614a028161327c565b840191505092915050565b6000608082019050614a22600083018761337d565b614a2f602083018661337d565b614a3c6040830185613413565b8181036060830152614a4e81846149d4565b905095945050505050565b600081519050614a6881613145565b92915050565b600060208284031215614a8457614a8361310f565b5b6000614a9284828501614a59565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614ad5826132e8565b9150614ae0836132e8565b925082614af057614aef614a9b565b5b828204905092915050565b6000614b06826132e8565b9150614b11836132e8565b925082614b2157614b20614a9b565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b88602183613238565b9150614b9382614b2c565b604082019050919050565b60006020820190508181036000830152614bb781614b7b565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000614bf4601d83613238565b9150614bff82614bbe565b602082019050919050565b60006020820190508181036000830152614c2381614be7565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c86602283613238565b9150614c9182614c2a565b604082019050919050565b60006020820190508181036000830152614cb581614c79565b905091905056fea26469706673582212204982d28cd1c0e98772135ec40dedba0aa62bebc244ec4493774f45622ef0200564736f6c634300080a0033697066733a2f2f516d51364651623746485a617a4372625136795a51344177436871684d334b67566853375a557a6b4d6457684d462f

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80636352211e11610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610781578063d7224ba0146107ac578063da3ef23f146107d7578063e985e9c514610800578063f2fde38b1461083d5761020f565b8063a22cb465146106c7578063b88d4fde146106f0578063c668286214610719578063c87b56dd146107445761020f565b8063715018a6116100e7578063715018a61461061557806383a076be1461062c5780638da5cb5b1461065557806395d89b4114610680578063a0712d68146106ab5761020f565b80636352211e146105455780636c0360eb146105825780636c6e927e146105ad57806370a08231146105d85761020f565b80632913daa01161019b578063438b63001161016a578063438b63001461044e57806344a0d68a1461048b5780634f6ccce7146104b457806355f804b3146104f15780635c975abb1461051a5761020f565b80632913daa0146103b35780632f745c59146103de5780633ccfd60b1461041b57806342842e0e146104255761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806313faede61461030b578063149835a01461033657806318160ddd1461035f57806323b872dd1461038a5761020f565b806301ffc9a71461021457806302329a291461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613171565b610866565b60405161024891906131b9565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190613200565b6109b0565b005b34801561028657600080fd5b5061028f610a49565b60405161029c91906132c6565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c7919061331e565b610adb565b6040516102d9919061338c565b60405180910390f35b3480156102ee57600080fd5b50610309600480360381019061030491906133d3565b610b60565b005b34801561031757600080fd5b50610320610c79565b60405161032d9190613422565b60405180910390f35b34801561034257600080fd5b5061035d6004803603810190610358919061331e565b610c7f565b005b34801561036b57600080fd5b50610374610d05565b6040516103819190613422565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac919061343d565b610d1b565b005b3480156103bf57600080fd5b506103c8610d2b565b6040516103d59190613422565b60405180910390f35b3480156103ea57600080fd5b50610405600480360381019061040091906133d3565b610d4f565b6040516104129190613422565b60405180910390f35b610423610f4d565b005b34801561043157600080fd5b5061044c6004803603810190610447919061343d565b611042565b005b34801561045a57600080fd5b5061047560048036038101906104709190613490565b611062565b604051610482919061357b565b60405180910390f35b34801561049757600080fd5b506104b260048036038101906104ad919061331e565b611110565b005b3480156104c057600080fd5b506104db60048036038101906104d6919061331e565b611196565b6040516104e89190613422565b60405180910390f35b3480156104fd57600080fd5b50610518600480360381019061051391906136d2565b6111e9565b005b34801561052657600080fd5b5061052f61127f565b60405161053c91906131b9565b60405180910390f35b34801561055157600080fd5b5061056c6004803603810190610567919061331e565b611292565b604051610579919061338c565b60405180910390f35b34801561058e57600080fd5b506105976112a8565b6040516105a491906132c6565b60405180910390f35b3480156105b957600080fd5b506105c2611336565b6040516105cf9190613422565b60405180910390f35b3480156105e457600080fd5b506105ff60048036038101906105fa9190613490565b61133c565b60405161060c9190613422565b60405180910390f35b34801561062157600080fd5b5061062a611425565b005b34801561063857600080fd5b50610653600480360381019061064e919061371b565b6114ad565b005b34801561066157600080fd5b5061066a6115d7565b604051610677919061338c565b60405180910390f35b34801561068c57600080fd5b50610695611601565b6040516106a291906132c6565b60405180910390f35b6106c560048036038101906106c0919061331e565b611693565b005b3480156106d357600080fd5b506106ee60048036038101906106e9919061375b565b61188b565b005b3480156106fc57600080fd5b506107176004803603810190610712919061383c565b611a0c565b005b34801561072557600080fd5b5061072e611a68565b60405161073b91906132c6565b60405180910390f35b34801561075057600080fd5b5061076b6004803603810190610766919061331e565b611af6565b60405161077891906132c6565b60405180910390f35b34801561078d57600080fd5b50610796611ba0565b6040516107a39190613422565b60405180910390f35b3480156107b857600080fd5b506107c1611ba6565b6040516107ce9190613422565b60405180910390f35b3480156107e357600080fd5b506107fe60048036038101906107f991906136d2565b611bac565b005b34801561080c57600080fd5b50610827600480360381019061082291906138bf565b611c42565b60405161083491906131b9565b60405180910390f35b34801561084957600080fd5b50610864600480360381019061085f9190613490565b611cd6565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a957506109a882611dce565b5b9050919050565b6109b8611e38565b73ffffffffffffffffffffffffffffffffffffffff166109d66115d7565b73ffffffffffffffffffffffffffffffffffffffff1614610a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a239061394b565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b606060018054610a589061399a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a849061399a565b8015610ad15780601f10610aa657610100808354040283529160200191610ad1565b820191906000526020600020905b815481529060010190602001808311610ab457829003601f168201915b5050505050905090565b6000610ae682611e40565b610b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1c90613a3e565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b6b82611292565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd390613ad0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bfb611e38565b73ffffffffffffffffffffffffffffffffffffffff161480610c2a5750610c2981610c24611e38565b611c42565b5b610c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6090613b62565b60405180910390fd5b610c74838383611e4d565b505050565b600b5481565b610c87611e38565b73ffffffffffffffffffffffffffffffffffffffff16610ca56115d7565b73ffffffffffffffffffffffffffffffffffffffff1614610cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf29061394b565b60405180910390fd5b80600c8190555050565b60006001600054610d169190613bb1565b905090565b610d26838383611eff565b505050565b7f000000000000000000000000000000000000000000000000000000000000001481565b6000610d5a8361133c565b8210610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9290613c57565b60405180910390fd5b6000610da5610d05565b905060008060005b83811015610f0b576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e9f57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ef75786841415610ee8578195505050505050610f47565b8380610ef390613c77565b9450505b508080610f0390613c77565b915050610dad565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e90613d32565b60405180910390fd5b92915050565b610f55611e38565b73ffffffffffffffffffffffffffffffffffffffff16610f736115d7565b73ffffffffffffffffffffffffffffffffffffffff1614610fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc09061394b565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610fef90613d83565b60006040518083038185875af1925050503d806000811461102c576040519150601f19603f3d011682016040523d82523d6000602084013e611031565b606091505b505090508061103f57600080fd5b50565b61105d83838360405180602001604052806000815250611a0c565b505050565b6060600061106f8361133c565b905060008167ffffffffffffffff81111561108d5761108c6135a7565b5b6040519080825280602002602001820160405280156110bb5781602001602082028036833780820191505090505b50905060005b82811015611105576110d38582610d4f565b8282815181106110e6576110e5613d98565b5b60200260200101818152505080806110fd90613c77565b9150506110c1565b508092505050919050565b611118611e38565b73ffffffffffffffffffffffffffffffffffffffff166111366115d7565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111839061394b565b60405180910390fd5b80600b8190555050565b60006111a0610d05565b82106111e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d890613e39565b60405180910390fd5b819050919050565b6111f1611e38565b73ffffffffffffffffffffffffffffffffffffffff1661120f6115d7565b73ffffffffffffffffffffffffffffffffffffffff1614611265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125c9061394b565b60405180910390fd5b806009908051906020019061127b929190613028565b5050565b600e60009054906101000a900460ff1681565b600061129d826124b8565b600001519050919050565b600980546112b59061399a565b80601f01602080910402602001604051908101604052809291908181526020018280546112e19061399a565b801561132e5780601f106113035761010080835404028352916020019161132e565b820191906000526020600020905b81548152906001019060200180831161131157829003601f168201915b505050505081565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a490613ecb565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61142d611e38565b73ffffffffffffffffffffffffffffffffffffffff1661144b6115d7565b73ffffffffffffffffffffffffffffffffffffffff16146114a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114989061394b565b60405180910390fd5b6114ab60006126bb565b565b6114b5611e38565b73ffffffffffffffffffffffffffffffffffffffff166114d36115d7565b73ffffffffffffffffffffffffffffffffffffffff1614611529576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115209061394b565b60405180910390fd5b6000821161156c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156390613f37565b60405180910390fd5b6000611576610d05565b9050600c5483826115879190613f57565b11156115c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bf90613ff9565b60405180910390fd5b6115d28284612781565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546116109061399a565b80601f016020809104026020016040519081016040528092919081815260200182805461163c9061399a565b80156116895780601f1061165e57610100808354040283529160200191611689565b820191906000526020600020905b81548152906001019060200180831161166c57829003601f168201915b5050505050905090565b600e60009054906101000a900460ff16156116e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116da90614065565b60405180910390fd5b60006116ed610d05565b905060008211611732576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611729906140d1565b60405180910390fd5b600d54821115611777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176e9061413d565b60405180910390fd5b600c5482826117869190613f57565b11156117c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117be906141a9565b60405180910390fd5b610309811015611825578160006117de91906141c9565b341015611820576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118179061426f565b60405180910390fd5b611876565b81600b5461183391906141c9565b341015611875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186c906142db565b60405180910390fd5b5b611887611881611e38565b83612781565b5050565b611893611e38565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f890614347565b60405180910390fd5b806006600061190e611e38565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119bb611e38565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a0091906131b9565b60405180910390a35050565b611a17848484611eff565b611a238484848461279f565b611a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a59906143d9565b60405180910390fd5b50505050565b600a8054611a759061399a565b80601f0160208091040260200160405190810160405280929190818152602001828054611aa19061399a565b8015611aee5780601f10611ac357610100808354040283529160200191611aee565b820191906000526020600020905b815481529060010190602001808311611ad157829003601f168201915b505050505081565b6060611b0182611e40565b611b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b379061446b565b60405180910390fd5b6000611b4a612927565b90506000815111611b6a5760405180602001604052806000815250611b98565b80611b74846129b9565b600a604051602001611b889392919061455b565b6040516020818303038152906040525b915050919050565b600c5481565b60075481565b611bb4611e38565b73ffffffffffffffffffffffffffffffffffffffff16611bd26115d7565b73ffffffffffffffffffffffffffffffffffffffff1614611c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1f9061394b565b60405180910390fd5b80600a9080519060200190611c3e929190613028565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cde611e38565b73ffffffffffffffffffffffffffffffffffffffff16611cfc6115d7565b73ffffffffffffffffffffffffffffffffffffffff1614611d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d499061394b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db9906145fe565b60405180910390fd5b611dcb816126bb565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611f0a826124b8565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611f31611e38565b73ffffffffffffffffffffffffffffffffffffffff161480611f8d5750611f56611e38565b73ffffffffffffffffffffffffffffffffffffffff16611f7584610adb565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fa95750611fa88260000151611fa3611e38565b611c42565b5b905080611feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe290614690565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461205d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205490614722565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c4906147b4565b60405180910390fd5b6120da8585856001612b1a565b6120ea6000848460000151611e4d565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661215891906147f0565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166121fc9190614824565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846123029190613f57565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124485761237881611e40565b15612447576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124b08686866001612b20565b505050505050565b6124c06130ae565b6124c982611e40565b612508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ff906148dc565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000014831061256c5760017f00000000000000000000000000000000000000000000000000000000000000148461255f9190613bb1565b6125699190613f57565b90505b60008390505b81811061267a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612666578093505050506126b6565b508080612672906148fc565b915050612572565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ad90614998565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61279b828260405180602001604052806000815250612b26565b5050565b60006127c08473ffffffffffffffffffffffffffffffffffffffff16613005565b1561291a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127e9611e38565b8786866040518563ffffffff1660e01b815260040161280b9493929190614a0d565b6020604051808303816000875af192505050801561284757506040513d601f19601f820116820180604052508101906128449190614a6e565b60015b6128ca573d8060008114612877576040519150601f19603f3d011682016040523d82523d6000602084013e61287c565b606091505b506000815114156128c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b9906143d9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061291f565b600190505b949350505050565b6060600980546129369061399a565b80601f01602080910402602001604051908101604052809291908181526020018280546129629061399a565b80156129af5780601f10612984576101008083540402835291602001916129af565b820191906000526020600020905b81548152906001019060200180831161299257829003601f168201915b5050505050905090565b60606000821415612a01576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b15565b600082905060005b60008214612a33578080612a1c90613c77565b915050600a82612a2c9190614aca565b9150612a09565b60008167ffffffffffffffff811115612a4f57612a4e6135a7565b5b6040519080825280601f01601f191660200182016040528015612a815781602001600182028036833780820191505090505b5090505b60008514612b0e57600182612a9a9190613bb1565b9150600a85612aa99190614afb565b6030612ab59190613f57565b60f81b818381518110612acb57612aca613d98565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b079190614aca565b9450612a85565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9390614b9e565b60405180910390fd5b612ba581611e40565b15612be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdc90614c0a565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000014831115612c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3f90614c9c565b60405180910390fd5b612c556000858386612b1a565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612d529190614824565b6fffffffffffffffffffffffffffffffff168152602001858360200151612d799190614824565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612fe857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f88600088848861279f565b612fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fbe906143d9565b60405180910390fd5b8180612fd290613c77565b9250508080612fe090613c77565b915050612f17565b5080600081905550612ffd6000878588612b20565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546130349061399a565b90600052602060002090601f016020900481019282613056576000855561309d565b82601f1061306f57805160ff191683800117855561309d565b8280016001018555821561309d579182015b8281111561309c578251825591602001919060010190613081565b5b5090506130aa91906130e8565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156131015760008160009055506001016130e9565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61314e81613119565b811461315957600080fd5b50565b60008135905061316b81613145565b92915050565b6000602082840312156131875761318661310f565b5b60006131958482850161315c565b91505092915050565b60008115159050919050565b6131b38161319e565b82525050565b60006020820190506131ce60008301846131aa565b92915050565b6131dd8161319e565b81146131e857600080fd5b50565b6000813590506131fa816131d4565b92915050565b6000602082840312156132165761321561310f565b5b6000613224848285016131eb565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561326757808201518184015260208101905061324c565b83811115613276576000848401525b50505050565b6000601f19601f8301169050919050565b60006132988261322d565b6132a28185613238565b93506132b2818560208601613249565b6132bb8161327c565b840191505092915050565b600060208201905081810360008301526132e0818461328d565b905092915050565b6000819050919050565b6132fb816132e8565b811461330657600080fd5b50565b600081359050613318816132f2565b92915050565b6000602082840312156133345761333361310f565b5b600061334284828501613309565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006133768261334b565b9050919050565b6133868161336b565b82525050565b60006020820190506133a1600083018461337d565b92915050565b6133b08161336b565b81146133bb57600080fd5b50565b6000813590506133cd816133a7565b92915050565b600080604083850312156133ea576133e961310f565b5b60006133f8858286016133be565b925050602061340985828601613309565b9150509250929050565b61341c816132e8565b82525050565b60006020820190506134376000830184613413565b92915050565b6000806000606084860312156134565761345561310f565b5b6000613464868287016133be565b9350506020613475868287016133be565b925050604061348686828701613309565b9150509250925092565b6000602082840312156134a6576134a561310f565b5b60006134b4848285016133be565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6134f2816132e8565b82525050565b600061350483836134e9565b60208301905092915050565b6000602082019050919050565b6000613528826134bd565b61353281856134c8565b935061353d836134d9565b8060005b8381101561356e57815161355588826134f8565b975061356083613510565b925050600181019050613541565b5085935050505092915050565b60006020820190508181036000830152613595818461351d565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135df8261327c565b810181811067ffffffffffffffff821117156135fe576135fd6135a7565b5b80604052505050565b6000613611613105565b905061361d82826135d6565b919050565b600067ffffffffffffffff82111561363d5761363c6135a7565b5b6136468261327c565b9050602081019050919050565b82818337600083830152505050565b600061367561367084613622565b613607565b905082815260208101848484011115613691576136906135a2565b5b61369c848285613653565b509392505050565b600082601f8301126136b9576136b861359d565b5b81356136c9848260208601613662565b91505092915050565b6000602082840312156136e8576136e761310f565b5b600082013567ffffffffffffffff81111561370657613705613114565b5b613712848285016136a4565b91505092915050565b600080604083850312156137325761373161310f565b5b600061374085828601613309565b9250506020613751858286016133be565b9150509250929050565b600080604083850312156137725761377161310f565b5b6000613780858286016133be565b9250506020613791858286016131eb565b9150509250929050565b600067ffffffffffffffff8211156137b6576137b56135a7565b5b6137bf8261327c565b9050602081019050919050565b60006137df6137da8461379b565b613607565b9050828152602081018484840111156137fb576137fa6135a2565b5b613806848285613653565b509392505050565b600082601f8301126138235761382261359d565b5b81356138338482602086016137cc565b91505092915050565b600080600080608085870312156138565761385561310f565b5b6000613864878288016133be565b9450506020613875878288016133be565b935050604061388687828801613309565b925050606085013567ffffffffffffffff8111156138a7576138a6613114565b5b6138b38782880161380e565b91505092959194509250565b600080604083850312156138d6576138d561310f565b5b60006138e4858286016133be565b92505060206138f5858286016133be565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613935602083613238565b9150613940826138ff565b602082019050919050565b6000602082019050818103600083015261396481613928565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806139b257607f821691505b602082108114156139c6576139c561396b565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613a28602d83613238565b9150613a33826139cc565b604082019050919050565b60006020820190508181036000830152613a5781613a1b565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613aba602283613238565b9150613ac582613a5e565b604082019050919050565b60006020820190508181036000830152613ae981613aad565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613b4c603983613238565b9150613b5782613af0565b604082019050919050565b60006020820190508181036000830152613b7b81613b3f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613bbc826132e8565b9150613bc7836132e8565b925082821015613bda57613bd9613b82565b5b828203905092915050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c41602283613238565b9150613c4c82613be5565b604082019050919050565b60006020820190508181036000830152613c7081613c34565b9050919050565b6000613c82826132e8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cb557613cb4613b82565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613d1c602e83613238565b9150613d2782613cc0565b604082019050919050565b60006020820190508181036000830152613d4b81613d0f565b9050919050565b600081905092915050565b50565b6000613d6d600083613d52565b9150613d7882613d5d565b600082019050919050565b6000613d8e82613d60565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613e23602383613238565b9150613e2e82613dc7565b604082019050919050565b60006020820190508181036000830152613e5281613e16565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613eb5602b83613238565b9150613ec082613e59565b604082019050919050565b60006020820190508181036000830152613ee481613ea8565b9050919050565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6000613f21601b83613238565b9150613f2c82613eeb565b602082019050919050565b60006020820190508181036000830152613f5081613f14565b9050919050565b6000613f62826132e8565b9150613f6d836132e8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fa257613fa1613b82565b5b828201905092915050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b6000613fe3601683613238565b9150613fee82613fad565b602082019050919050565b6000602082019050818103600083015261401281613fd6565b9050919050565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b600061404f601283613238565b915061405a82614019565b602082019050919050565b6000602082019050818103600083015261407e81614042565b9050919050565b7f4e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b60006140bb601b83613238565b91506140c682614085565b602082019050919050565b600060208201905081810360008301526140ea816140ae565b9050919050565b7f4d6178206d696e7420616d6f756e742070657220747820657863656564656400600082015250565b6000614127601f83613238565b9150614132826140f1565b602082019050919050565b600060208201905081810360008301526141568161411a565b9050919050565b7f4d4645522044524956452120574520534f4c44204f5554210000000000000000600082015250565b6000614193601883613238565b915061419e8261415d565b602082019050919050565b600060208201905081810360008301526141c281614186565b9050919050565b60006141d4826132e8565b91506141df836132e8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561421857614217613b82565b5b828202905092915050565b7f497427732046726565204d696e74000000000000000000000000000000000000600082015250565b6000614259600e83613238565b915061426482614223565b602082019050919050565b600060208201905081810360008301526142888161424c565b9050919050565b7f46464d666572733a20696e73756666696369656e742066756e64730000000000600082015250565b60006142c5601b83613238565b91506142d08261428f565b602082019050919050565b600060208201905081810360008301526142f4816142b8565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614331601a83613238565b915061433c826142fb565b602082019050919050565b6000602082019050818103600083015261436081614324565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006143c3603383613238565b91506143ce82614367565b604082019050919050565b600060208201905081810360008301526143f2816143b6565b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b6000614455603083613238565b9150614460826143f9565b604082019050919050565b6000602082019050818103600083015261448481614448565b9050919050565b600081905092915050565b60006144a18261322d565b6144ab818561448b565b93506144bb818560208601613249565b80840191505092915050565b60008190508160005260206000209050919050565b600081546144e98161399a565b6144f3818661448b565b9450600182166000811461450e576001811461451f57614552565b60ff19831686528186019350614552565b614528856144c7565b60005b8381101561454a5781548189015260018201915060208101905061452b565b838801955050505b50505092915050565b60006145678286614496565b91506145738285614496565b915061457f82846144dc565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006145e8602683613238565b91506145f38261458c565b604082019050919050565b60006020820190508181036000830152614617816145db565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b600061467a603283613238565b91506146858261461e565b604082019050919050565b600060208201905081810360008301526146a98161466d565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b600061470c602683613238565b9150614717826146b0565b604082019050919050565b6000602082019050818103600083015261473b816146ff565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061479e602583613238565b91506147a982614742565b604082019050919050565b600060208201905081810360008301526147cd81614791565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b60006147fb826147d4565b9150614806836147d4565b92508282101561481957614818613b82565b5b828203905092915050565b600061482f826147d4565b915061483a836147d4565b9250826fffffffffffffffffffffffffffffffff0382111561485f5761485e613b82565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b60006148c6602a83613238565b91506148d18261486a565b604082019050919050565b600060208201905081810360008301526148f5816148b9565b9050919050565b6000614907826132e8565b9150600082141561491b5761491a613b82565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614982602f83613238565b915061498d82614926565b604082019050919050565b600060208201905081810360008301526149b181614975565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006149df826149b8565b6149e981856149c3565b93506149f9818560208601613249565b614a028161327c565b840191505092915050565b6000608082019050614a22600083018761337d565b614a2f602083018661337d565b614a3c6040830185613413565b8181036060830152614a4e81846149d4565b905095945050505050565b600081519050614a6881613145565b92915050565b600060208284031215614a8457614a8361310f565b5b6000614a9284828501614a59565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614ad5826132e8565b9150614ae0836132e8565b925082614af057614aef614a9b565b5b828204905092915050565b6000614b06826132e8565b9150614b11836132e8565b925082614b2157614b20614a9b565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b88602183613238565b9150614b9382614b2c565b604082019050919050565b60006020820190508181036000830152614bb781614b7b565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000614bf4601d83613238565b9150614bff82614bbe565b602082019050919050565b60006020820190508181036000830152614c2381614be7565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c86602283613238565b9150614c9182614c2a565b604082019050919050565b60006020820190508181036000830152614cb581614c79565b905091905056fea26469706673582212204982d28cd1c0e98772135ec40dedba0aa62bebc244ec4493774f45622ef0200564736f6c634300080a0033

Deployed Bytecode Sourcemap

51051:3007:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38765:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53817:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40491:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42016:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41579:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51196:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53479:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37325:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42866:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36203:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37957:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53897:158;;;:::i;:::-;;43071:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52583:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53391:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37492:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53581:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51323:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40314:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51128:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51271:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39191:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16349:103;;;;;;;;;;;;;:::i;:::-;;52264:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15698:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40646:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51639:558;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42284:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43291:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51154:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52937:430;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51235:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47622:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53685:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42621:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16607:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38765:370;38892:4;38937:25;38922:40;;;:11;:40;;;;:99;;;;38988:33;38973:48;;;:11;:48;;;;38922:99;:160;;;;39047:35;39032:50;;;:11;:50;;;;38922:160;:207;;;;39093:36;39117:11;39093:23;:36::i;:::-;38922:207;38908:221;;38765:370;;;:::o;53817:73::-;15929:12;:10;:12::i;:::-;15918:23;;:7;:5;:7::i;:::-;:23;;;15910:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53878:6:::1;53869;;:15;;;;;;;;;;;;;;;;;;53817:73:::0;:::o;40491:94::-;40545:13;40574:5;40567:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40491:94;:::o;42016:204::-;42084:7;42108:16;42116:7;42108;:16::i;:::-;42100:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;42190:15;:24;42206:7;42190:24;;;;;;;;;;;;;;;;;;;;;42183:31;;42016:204;;;:::o;41579:379::-;41648:13;41664:24;41680:7;41664:15;:24::i;:::-;41648:40;;41709:5;41703:11;;:2;:11;;;;41695:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;41794:5;41778:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;41803:37;41820:5;41827:12;:10;:12::i;:::-;41803:16;:37::i;:::-;41778:62;41762:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;41924:28;41933:2;41937:7;41946:5;41924:8;:28::i;:::-;41641:317;41579:379;;:::o;51196:34::-;;;;:::o;53479:94::-;15929:12;:10;:12::i;:::-;15918:23;;:7;:5;:7::i;:::-;:23;;;15910:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53557:10:::1;53545:9;:22;;;;53479:94:::0;:::o;37325:98::-;37378:7;37416:1;37401:12;;:16;;;;:::i;:::-;37394:23;;37325:98;:::o;42866:142::-;42974:28;42984:4;42990:2;42994:7;42974:9;:28::i;:::-;42866:142;;;:::o;36203:37::-;;;:::o;37957:744::-;38066:7;38101:16;38111:5;38101:9;:16::i;:::-;38093:5;:24;38085:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;38163:22;38188:13;:11;:13::i;:::-;38163:38;;38208:19;38238:25;38288:9;38283:350;38307:14;38303:1;:18;38283:350;;;38337:31;38371:11;:14;38383:1;38371:14;;;;;;;;;;;38337:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38424:1;38398:28;;:9;:14;;;:28;;;38394:89;;38459:9;:14;;;38439:34;;38394:89;38516:5;38495:26;;:17;:26;;;38491:135;;;38553:5;38538:11;:20;38534:59;;;38580:1;38573:8;;;;;;;;;38534:59;38603:13;;;;;:::i;:::-;;;;38491:135;38328:305;38323:3;;;;;:::i;:::-;;;;38283:350;;;;38639:56;;;;;;;;;;:::i;:::-;;;;;;;;37957:744;;;;;:::o;53897:158::-;15929:12;:10;:12::i;:::-;15918:23;;:7;:5;:7::i;:::-;:23;;;15910:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53950:12:::1;53976:10;53968:24;;54000:21;53968:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53949:77;;;54041:7;54033:16;;;::::0;::::1;;53942:113;53897:158::o:0;43071:157::-;43183:39;43200:4;43206:2;43210:7;43183:39;;;;;;;;;;;;:16;:39::i;:::-;43071:157;;;:::o;52583:348::-;52658:16;52686:23;52712:17;52722:6;52712:9;:17::i;:::-;52686:43;;52736:25;52778:15;52764:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52736:58;;52806:9;52801:103;52821:15;52817:1;:19;52801:103;;;52866:30;52886:6;52894:1;52866:19;:30::i;:::-;52852:8;52861:1;52852:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;52838:3;;;;;:::i;:::-;;;;52801:103;;;;52917:8;52910:15;;;;52583:348;;;:::o;53391:80::-;15929:12;:10;:12::i;:::-;15918:23;;:7;:5;:7::i;:::-;:23;;;15910:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53457:8:::1;53450:4;:15;;;;53391:80:::0;:::o;37492:177::-;37559:7;37591:13;:11;:13::i;:::-;37583:5;:21;37575:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;37658:5;37651:12;;37492:177;;;:::o;53581:98::-;15929:12;:10;:12::i;:::-;15918:23;;:7;:5;:7::i;:::-;:23;;;15910:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53662:11:::1;53652:7;:21;;;;;;;;;;;;:::i;:::-;;53581:98:::0;:::o;51323:26::-;;;;;;;;;;;;;:::o;40314:118::-;40378:7;40401:20;40413:7;40401:11;:20::i;:::-;:25;;;40394:32;;40314:118;;;:::o;51128:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51271:27::-;;;;:::o;39191:211::-;39255:7;39296:1;39279:19;;:5;:19;;;;39271:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;39368:12;:19;39381:5;39368:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;39360:36;;39353:43;;39191:211;;;:::o;16349:103::-;15929:12;:10;:12::i;:::-;15918:23;;:7;:5;:7::i;:::-;:23;;;15910:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16414:30:::1;16441:1;16414:18;:30::i;:::-;16349:103::o:0;52264:305::-;15929:12;:10;:12::i;:::-;15918:23;;:7;:5;:7::i;:::-;:23;;;15910:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52366:1:::1;52352:11;:15;52344:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;52406:14;52423:13;:11;:13::i;:::-;52406:30;;52475:9;;52460:11;52451:6;:20;;;;:::i;:::-;:33;;52443:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52522:35;52532:11;52545;52522:9;:35::i;:::-;52337:232;52264:305:::0;;:::o;15698:87::-;15744:7;15771:6;;;;;;;;;;;15764:13;;15698:87;:::o;40646:98::-;40702:13;40731:7;40724:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40646:98;:::o;51639:558::-;51700:6;;;;;;;;;;;51699:7;51691:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;51736:14;51753:13;:11;:13::i;:::-;51736:30;;51790:1;51781:6;:10;51773:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;51848:7;;51838:6;:17;;51830:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;51925:9;;51915:6;51906;:15;;;;:::i;:::-;:28;;51898:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;51983:3;51974:6;:12;51970:174;;;52022:6;52018:1;:10;;;;:::i;:::-;52005:9;:23;;51997:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;51970:174;;;52098:6;52091:4;;:13;;;;:::i;:::-;52078:9;:26;;52070:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;51970:174;52154:31;52164:12;:10;:12::i;:::-;52178:6;52154:9;:31::i;:::-;51684:513;51639:558;:::o;42284:274::-;42387:12;:10;:12::i;:::-;42375:24;;:8;:24;;;;42367:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;42484:8;42439:18;:32;42458:12;:10;:12::i;:::-;42439:32;;;;;;;;;;;;;;;:42;42472:8;42439:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;42533:8;42504:48;;42519:12;:10;:12::i;:::-;42504:48;;;42543:8;42504:48;;;;;;:::i;:::-;;;;;;;;42284:274;;:::o;43291:311::-;43428:28;43438:4;43444:2;43448:7;43428:9;:28::i;:::-;43479:48;43502:4;43508:2;43512:7;43521:5;43479:22;:48::i;:::-;43463:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;43291:311;;;;:::o;51154:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52937:430::-;53035:13;53076:16;53084:7;53076;:16::i;:::-;53060:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;53173:28;53204:10;:8;:10::i;:::-;53173:41;;53259:1;53234:14;53228:28;:32;:133;;;;;;;;;;;;;;;;;53296:14;53312:18;:7;:16;:18::i;:::-;53332:13;53279:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53228:133;53221:140;;;52937:430;;;:::o;51235:31::-;;;;:::o;47622:43::-;;;;:::o;53685:122::-;15929:12;:10;:12::i;:::-;15918:23;;:7;:5;:7::i;:::-;:23;;;15910:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53784:17:::1;53768:13;:33;;;;;;;;;;;;:::i;:::-;;53685:122:::0;:::o;42621:186::-;42743:4;42766:18;:25;42785:5;42766:25;;;;;;;;;;;;;;;:35;42792:8;42766:35;;;;;;;;;;;;;;;;;;;;;;;;;42759:42;;42621:186;;;;:::o;16607:201::-;15929:12;:10;:12::i;:::-;15918:23;;:7;:5;:7::i;:::-;:23;;;15910:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16716:1:::1;16696:22;;:8;:22;;;;16688:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;16772:28;16791:8;16772:18;:28::i;:::-;16607:201:::0;:::o;28482:157::-;28567:4;28606:25;28591:40;;;:11;:40;;;;28584:47;;28482:157;;;:::o;14422:98::-;14475:7;14502:10;14495:17;;14422:98;:::o;43841:105::-;43898:4;43928:12;;43918:7;:22;43911:29;;43841:105;;;:::o;47444:172::-;47568:2;47541:15;:24;47557:7;47541:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47602:7;47598:2;47582:28;;47591:5;47582:28;;;;;;;;;;;;47444:172;;;:::o;45809:1529::-;45906:35;45944:20;45956:7;45944:11;:20::i;:::-;45906:58;;45973:22;46015:13;:18;;;45999:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;46068:12;:10;:12::i;:::-;46044:36;;:20;46056:7;46044:11;:20::i;:::-;:36;;;45999:81;:142;;;;46091:50;46108:13;:18;;;46128:12;:10;:12::i;:::-;46091:16;:50::i;:::-;45999:142;45973:169;;46167:17;46151:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;46299:4;46277:26;;:13;:18;;;:26;;;46261:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;46388:1;46374:16;;:2;:16;;;;46366:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;46441:43;46463:4;46469:2;46473:7;46482:1;46441:21;:43::i;:::-;46541:49;46558:1;46562:7;46571:13;:18;;;46541:8;:49::i;:::-;46629:1;46599:12;:18;46612:4;46599:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;46665:1;46637:12;:16;46650:2;46637:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;46696:43;;;;;;;;46711:2;46696:43;;;;;;46722:15;46696:43;;;;;46673:11;:20;46685:7;46673:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46967:19;46999:1;46989:7;:11;;;;:::i;:::-;46967:33;;47052:1;47011:43;;:11;:24;47023:11;47011:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;47007:236;;;47069:20;47077:11;47069:7;:20::i;:::-;47065:171;;;47129:97;;;;;;;;47156:13;:18;;;47129:97;;;;;;47187:13;:28;;;47129:97;;;;;47102:11;:24;47114:11;47102:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47065:171;47007:236;47275:7;47271:2;47256:27;;47265:4;47256:27;;;;;;;;;;;;47290:42;47311:4;47317:2;47321:7;47330:1;47290:20;:42::i;:::-;45899:1439;;;45809:1529;;;:::o;39654:606::-;39730:21;;:::i;:::-;39771:16;39779:7;39771;:16::i;:::-;39763:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;39843:26;39891:12;39880:7;:23;39876:93;;39960:1;39945:12;39935:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;39914:47;;39876:93;39982:12;39997:7;39982:22;;39977:212;40014:18;40006:4;:26;39977:212;;40051:31;40085:11;:17;40097:4;40085:17;;;;;;;;;;;40051:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40141:1;40115:28;;:9;:14;;;:28;;;40111:71;;40163:9;40156:16;;;;;;;40111:71;40042:147;40034:6;;;;;:::i;:::-;;;;39977:212;;;;40197:57;;;;;;;;;;:::i;:::-;;;;;;;;39654:606;;;;:::o;16968:191::-;17042:16;17061:6;;;;;;;;;;;17042:25;;17087:8;17078:6;;:17;;;;;;;;;;;;;;;;;;17142:8;17111:40;;17132:8;17111:40;;;;;;;;;;;;17031:128;16968:191;:::o;43952:98::-;44017:27;44027:2;44031:8;44017:27;;;;;;;;;;;;:9;:27::i;:::-;43952:98;;:::o;49155:690::-;49292:4;49309:15;:2;:13;;;:15::i;:::-;49305:535;;;49364:2;49348:36;;;49385:12;:10;:12::i;:::-;49399:4;49405:7;49414:5;49348:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;49335:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49596:1;49579:6;:13;:18;49575:215;;;49612:61;;;;;;;;;;:::i;:::-;;;;;;;;49575:215;49758:6;49752:13;49743:6;49739:2;49735:15;49728:38;49335:464;49480:45;;;49470:55;;;:6;:55;;;;49463:62;;;;;49305:535;49828:4;49821:11;;49155:690;;;;;;;:::o;51518:102::-;51578:13;51607:7;51600:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51518:102;:::o;11984:723::-;12040:13;12270:1;12261:5;:10;12257:53;;;12288:10;;;;;;;;;;;;;;;;;;;;;12257:53;12320:12;12335:5;12320:20;;12351:14;12376:78;12391:1;12383:4;:9;12376:78;;12409:8;;;;;:::i;:::-;;;;12440:2;12432:10;;;;;:::i;:::-;;;12376:78;;;12464:19;12496:6;12486:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12464:39;;12514:154;12530:1;12521:5;:10;12514:154;;12558:1;12548:11;;;;;:::i;:::-;;;12625:2;12617:5;:10;;;;:::i;:::-;12604:2;:24;;;;:::i;:::-;12591:39;;12574:6;12581;12574:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;12654:2;12645:11;;;;;:::i;:::-;;;12514:154;;;12692:6;12678:21;;;;;11984:723;;;;:::o;50307:141::-;;;;;:::o;50834:140::-;;;;;:::o;44305:1272::-;44410:20;44433:12;;44410:35;;44474:1;44460:16;;:2;:16;;;;44452:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;44651:21;44659:12;44651:7;:21::i;:::-;44650:22;44642:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;44733:12;44721:8;:24;;44713:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;44793:61;44823:1;44827:2;44831:12;44845:8;44793:21;:61::i;:::-;44863:30;44896:12;:16;44909:2;44896:16;;;;;;;;;;;;;;;44863:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44938:119;;;;;;;;44988:8;44958:11;:19;;;:39;;;;:::i;:::-;44938:119;;;;;;45041:8;45006:11;:24;;;:44;;;;:::i;:::-;44938:119;;;;;44919:12;:16;44932:2;44919:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45092:43;;;;;;;;45107:2;45092:43;;;;;;45118:15;45092:43;;;;;45064:11;:25;45076:12;45064:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45144:20;45167:12;45144:35;;45193:9;45188:281;45212:8;45208:1;:12;45188:281;;;45266:12;45262:2;45241:38;;45258:1;45241:38;;;;;;;;;;;;45306:59;45337:1;45341:2;45345:12;45359:5;45306:22;:59::i;:::-;45288:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;45447:14;;;;;:::i;:::-;;;;45222:3;;;;;:::i;:::-;;;;45188:281;;;;45492:12;45477;:27;;;;45511:60;45540:1;45544:2;45548:12;45562:8;45511:20;:60::i;:::-;44403:1174;;;44305:1272;;;:::o;18399:326::-;18459:4;18716:1;18694:7;:19;;;:23;18687:30;;18399:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:307::-;2456:1;2466:113;2480:6;2477:1;2474:13;2466:113;;;2565:1;2560:3;2556:11;2550:18;2546:1;2541:3;2537:11;2530:39;2502:2;2499:1;2495:10;2490:15;;2466:113;;;2597:6;2594:1;2591:13;2588:101;;;2677:1;2668:6;2663:3;2659:16;2652:27;2588:101;2437:258;2388:307;;;:::o;2701:102::-;2742:6;2793:2;2789:7;2784:2;2777:5;2773:14;2769:28;2759:38;;2701:102;;;:::o;2809:364::-;2897:3;2925:39;2958:5;2925:39;:::i;:::-;2980:71;3044:6;3039:3;2980:71;:::i;:::-;2973:78;;3060:52;3105:6;3100:3;3093:4;3086:5;3082:16;3060:52;:::i;:::-;3137:29;3159:6;3137:29;:::i;:::-;3132:3;3128:39;3121:46;;2901:272;2809:364;;;;:::o;3179:313::-;3292:4;3330:2;3319:9;3315:18;3307:26;;3379:9;3373:4;3369:20;3365:1;3354:9;3350:17;3343:47;3407:78;3480:4;3471:6;3407:78;:::i;:::-;3399:86;;3179:313;;;;:::o;3498:77::-;3535:7;3564:5;3553:16;;3498:77;;;:::o;3581:122::-;3654:24;3672:5;3654:24;:::i;:::-;3647:5;3644:35;3634:63;;3693:1;3690;3683:12;3634:63;3581:122;:::o;3709:139::-;3755:5;3793:6;3780:20;3771:29;;3809:33;3836:5;3809:33;:::i;:::-;3709:139;;;;:::o;3854:329::-;3913:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:119;;;3968:79;;:::i;:::-;3930:119;4088:1;4113:53;4158:7;4149:6;4138:9;4134:22;4113:53;:::i;:::-;4103:63;;4059:117;3854:329;;;;:::o;4189:126::-;4226:7;4266:42;4259:5;4255:54;4244:65;;4189:126;;;:::o;4321:96::-;4358:7;4387:24;4405:5;4387:24;:::i;:::-;4376:35;;4321:96;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:122::-;4848:24;4866:5;4848:24;:::i;:::-;4841:5;4838:35;4828:63;;4887:1;4884;4877:12;4828:63;4775:122;:::o;4903:139::-;4949:5;4987:6;4974:20;4965:29;;5003:33;5030:5;5003:33;:::i;:::-;4903:139;;;;:::o;5048:474::-;5116:6;5124;5173:2;5161:9;5152:7;5148:23;5144:32;5141:119;;;5179:79;;:::i;:::-;5141:119;5299:1;5324:53;5369:7;5360:6;5349:9;5345:22;5324:53;:::i;:::-;5314:63;;5270:117;5426:2;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5397:118;5048:474;;;;;:::o;5528:118::-;5615:24;5633:5;5615:24;:::i;:::-;5610:3;5603:37;5528:118;;:::o;5652:222::-;5745:4;5783:2;5772:9;5768:18;5760:26;;5796:71;5864:1;5853:9;5849:17;5840:6;5796:71;:::i;:::-;5652:222;;;;:::o;5880:619::-;5957:6;5965;5973;6022:2;6010:9;6001:7;5997:23;5993:32;5990:119;;;6028:79;;:::i;:::-;5990:119;6148:1;6173:53;6218:7;6209:6;6198:9;6194:22;6173:53;:::i;:::-;6163:63;;6119:117;6275:2;6301:53;6346:7;6337:6;6326:9;6322:22;6301:53;:::i;:::-;6291:63;;6246:118;6403:2;6429:53;6474:7;6465:6;6454:9;6450:22;6429:53;:::i;:::-;6419:63;;6374:118;5880:619;;;;;:::o;6505:329::-;6564:6;6613:2;6601:9;6592:7;6588:23;6584:32;6581:119;;;6619:79;;:::i;:::-;6581:119;6739:1;6764:53;6809:7;6800:6;6789:9;6785:22;6764:53;:::i;:::-;6754:63;;6710:117;6505:329;;;;:::o;6840:114::-;6907:6;6941:5;6935:12;6925:22;;6840:114;;;:::o;6960:184::-;7059:11;7093:6;7088:3;7081:19;7133:4;7128:3;7124:14;7109:29;;6960:184;;;;:::o;7150:132::-;7217:4;7240:3;7232:11;;7270:4;7265:3;7261:14;7253:22;;7150:132;;;:::o;7288:108::-;7365:24;7383:5;7365:24;:::i;:::-;7360:3;7353:37;7288:108;;:::o;7402:179::-;7471:10;7492:46;7534:3;7526:6;7492:46;:::i;:::-;7570:4;7565:3;7561:14;7547:28;;7402:179;;;;:::o;7587:113::-;7657:4;7689;7684:3;7680:14;7672:22;;7587:113;;;:::o;7736:732::-;7855:3;7884:54;7932:5;7884:54;:::i;:::-;7954:86;8033:6;8028:3;7954:86;:::i;:::-;7947:93;;8064:56;8114:5;8064:56;:::i;:::-;8143:7;8174:1;8159:284;8184:6;8181:1;8178:13;8159:284;;;8260:6;8254:13;8287:63;8346:3;8331:13;8287:63;:::i;:::-;8280:70;;8373:60;8426:6;8373:60;:::i;:::-;8363:70;;8219:224;8206:1;8203;8199:9;8194:14;;8159:284;;;8163:14;8459:3;8452:10;;7860:608;;;7736:732;;;;:::o;8474:373::-;8617:4;8655:2;8644:9;8640:18;8632:26;;8704:9;8698:4;8694:20;8690:1;8679:9;8675:17;8668:47;8732:108;8835:4;8826:6;8732:108;:::i;:::-;8724:116;;8474:373;;;;:::o;8853:117::-;8962:1;8959;8952:12;8976:117;9085:1;9082;9075:12;9099:180;9147:77;9144:1;9137:88;9244:4;9241:1;9234:15;9268:4;9265:1;9258:15;9285:281;9368:27;9390:4;9368:27;:::i;:::-;9360:6;9356:40;9498:6;9486:10;9483:22;9462:18;9450:10;9447:34;9444:62;9441:88;;;9509:18;;:::i;:::-;9441:88;9549:10;9545:2;9538:22;9328:238;9285:281;;:::o;9572:129::-;9606:6;9633:20;;:::i;:::-;9623:30;;9662:33;9690:4;9682:6;9662:33;:::i;:::-;9572:129;;;:::o;9707:308::-;9769:4;9859:18;9851:6;9848:30;9845:56;;;9881:18;;:::i;:::-;9845:56;9919:29;9941:6;9919:29;:::i;:::-;9911:37;;10003:4;9997;9993:15;9985:23;;9707:308;;;:::o;10021:154::-;10105:6;10100:3;10095;10082:30;10167:1;10158:6;10153:3;10149:16;10142:27;10021:154;;;:::o;10181:412::-;10259:5;10284:66;10300:49;10342:6;10300:49;:::i;:::-;10284:66;:::i;:::-;10275:75;;10373:6;10366:5;10359:21;10411:4;10404:5;10400:16;10449:3;10440:6;10435:3;10431:16;10428:25;10425:112;;;10456:79;;:::i;:::-;10425:112;10546:41;10580:6;10575:3;10570;10546:41;:::i;:::-;10265:328;10181:412;;;;;:::o;10613:340::-;10669:5;10718:3;10711:4;10703:6;10699:17;10695:27;10685:122;;10726:79;;:::i;:::-;10685:122;10843:6;10830:20;10868:79;10943:3;10935:6;10928:4;10920:6;10916:17;10868:79;:::i;:::-;10859:88;;10675:278;10613:340;;;;:::o;10959:509::-;11028:6;11077:2;11065:9;11056:7;11052:23;11048:32;11045:119;;;11083:79;;:::i;:::-;11045:119;11231:1;11220:9;11216:17;11203:31;11261:18;11253:6;11250:30;11247:117;;;11283:79;;:::i;:::-;11247:117;11388:63;11443:7;11434:6;11423:9;11419:22;11388:63;:::i;:::-;11378:73;;11174:287;10959:509;;;;:::o;11474:474::-;11542:6;11550;11599:2;11587:9;11578:7;11574:23;11570:32;11567:119;;;11605:79;;:::i;:::-;11567:119;11725:1;11750:53;11795:7;11786:6;11775:9;11771:22;11750:53;:::i;:::-;11740:63;;11696:117;11852:2;11878:53;11923:7;11914:6;11903:9;11899:22;11878:53;:::i;:::-;11868:63;;11823:118;11474:474;;;;;:::o;11954:468::-;12019:6;12027;12076:2;12064:9;12055:7;12051:23;12047:32;12044:119;;;12082:79;;:::i;:::-;12044:119;12202:1;12227:53;12272:7;12263:6;12252:9;12248:22;12227:53;:::i;:::-;12217:63;;12173:117;12329:2;12355:50;12397:7;12388:6;12377:9;12373:22;12355:50;:::i;:::-;12345:60;;12300:115;11954:468;;;;;:::o;12428:307::-;12489:4;12579:18;12571:6;12568:30;12565:56;;;12601:18;;:::i;:::-;12565:56;12639:29;12661:6;12639:29;:::i;:::-;12631:37;;12723:4;12717;12713:15;12705:23;;12428:307;;;:::o;12741:410::-;12818:5;12843:65;12859:48;12900:6;12859:48;:::i;:::-;12843:65;:::i;:::-;12834:74;;12931:6;12924:5;12917:21;12969:4;12962:5;12958:16;13007:3;12998:6;12993:3;12989:16;12986:25;12983:112;;;13014:79;;:::i;:::-;12983:112;13104:41;13138:6;13133:3;13128;13104:41;:::i;:::-;12824:327;12741:410;;;;;:::o;13170:338::-;13225:5;13274:3;13267:4;13259:6;13255:17;13251:27;13241:122;;13282:79;;:::i;:::-;13241:122;13399:6;13386:20;13424:78;13498:3;13490:6;13483:4;13475:6;13471:17;13424:78;:::i;:::-;13415:87;;13231:277;13170:338;;;;:::o;13514:943::-;13609:6;13617;13625;13633;13682:3;13670:9;13661:7;13657:23;13653:33;13650:120;;;13689:79;;:::i;:::-;13650:120;13809:1;13834:53;13879:7;13870:6;13859:9;13855:22;13834:53;:::i;:::-;13824:63;;13780:117;13936:2;13962:53;14007:7;13998:6;13987:9;13983:22;13962:53;:::i;:::-;13952:63;;13907:118;14064:2;14090:53;14135:7;14126:6;14115:9;14111:22;14090:53;:::i;:::-;14080:63;;14035:118;14220:2;14209:9;14205:18;14192:32;14251:18;14243:6;14240:30;14237:117;;;14273:79;;:::i;:::-;14237:117;14378:62;14432:7;14423:6;14412:9;14408:22;14378:62;:::i;:::-;14368:72;;14163:287;13514:943;;;;;;;:::o;14463:474::-;14531:6;14539;14588:2;14576:9;14567:7;14563:23;14559:32;14556:119;;;14594:79;;:::i;:::-;14556:119;14714:1;14739:53;14784:7;14775:6;14764:9;14760:22;14739:53;:::i;:::-;14729:63;;14685:117;14841:2;14867:53;14912:7;14903:6;14892:9;14888:22;14867:53;:::i;:::-;14857:63;;14812:118;14463:474;;;;;:::o;14943:182::-;15083:34;15079:1;15071:6;15067:14;15060:58;14943:182;:::o;15131:366::-;15273:3;15294:67;15358:2;15353:3;15294:67;:::i;:::-;15287:74;;15370:93;15459:3;15370:93;:::i;:::-;15488:2;15483:3;15479:12;15472:19;;15131:366;;;:::o;15503:419::-;15669:4;15707:2;15696:9;15692:18;15684:26;;15756:9;15750:4;15746:20;15742:1;15731:9;15727:17;15720:47;15784:131;15910:4;15784:131;:::i;:::-;15776:139;;15503:419;;;:::o;15928:180::-;15976:77;15973:1;15966:88;16073:4;16070:1;16063:15;16097:4;16094:1;16087:15;16114:320;16158:6;16195:1;16189:4;16185:12;16175:22;;16242:1;16236:4;16232:12;16263:18;16253:81;;16319:4;16311:6;16307:17;16297:27;;16253:81;16381:2;16373:6;16370:14;16350:18;16347:38;16344:84;;;16400:18;;:::i;:::-;16344:84;16165:269;16114:320;;;:::o;16440:232::-;16580:34;16576:1;16568:6;16564:14;16557:58;16649:15;16644:2;16636:6;16632:15;16625:40;16440:232;:::o;16678:366::-;16820:3;16841:67;16905:2;16900:3;16841:67;:::i;:::-;16834:74;;16917:93;17006:3;16917:93;:::i;:::-;17035:2;17030:3;17026:12;17019:19;;16678:366;;;:::o;17050:419::-;17216:4;17254:2;17243:9;17239:18;17231:26;;17303:9;17297:4;17293:20;17289:1;17278:9;17274:17;17267:47;17331:131;17457:4;17331:131;:::i;:::-;17323:139;;17050:419;;;:::o;17475:221::-;17615:34;17611:1;17603:6;17599:14;17592:58;17684:4;17679:2;17671:6;17667:15;17660:29;17475:221;:::o;17702:366::-;17844:3;17865:67;17929:2;17924:3;17865:67;:::i;:::-;17858:74;;17941:93;18030:3;17941:93;:::i;:::-;18059:2;18054:3;18050:12;18043:19;;17702:366;;;:::o;18074:419::-;18240:4;18278:2;18267:9;18263:18;18255:26;;18327:9;18321:4;18317:20;18313:1;18302:9;18298:17;18291:47;18355:131;18481:4;18355:131;:::i;:::-;18347:139;;18074:419;;;:::o;18499:244::-;18639:34;18635:1;18627:6;18623:14;18616:58;18708:27;18703:2;18695:6;18691:15;18684:52;18499:244;:::o;18749:366::-;18891:3;18912:67;18976:2;18971:3;18912:67;:::i;:::-;18905:74;;18988:93;19077:3;18988:93;:::i;:::-;19106:2;19101:3;19097:12;19090:19;;18749:366;;;:::o;19121:419::-;19287:4;19325:2;19314:9;19310:18;19302:26;;19374:9;19368:4;19364:20;19360:1;19349:9;19345:17;19338:47;19402:131;19528:4;19402:131;:::i;:::-;19394:139;;19121:419;;;:::o;19546:180::-;19594:77;19591:1;19584:88;19691:4;19688:1;19681:15;19715:4;19712:1;19705:15;19732:191;19772:4;19792:20;19810:1;19792:20;:::i;:::-;19787:25;;19826:20;19844:1;19826:20;:::i;:::-;19821:25;;19865:1;19862;19859:8;19856:34;;;19870:18;;:::i;:::-;19856:34;19915:1;19912;19908:9;19900:17;;19732:191;;;;:::o;19929:221::-;20069:34;20065:1;20057:6;20053:14;20046:58;20138:4;20133:2;20125:6;20121:15;20114:29;19929:221;:::o;20156:366::-;20298:3;20319:67;20383:2;20378:3;20319:67;:::i;:::-;20312:74;;20395:93;20484:3;20395:93;:::i;:::-;20513:2;20508:3;20504:12;20497:19;;20156:366;;;:::o;20528:419::-;20694:4;20732:2;20721:9;20717:18;20709:26;;20781:9;20775:4;20771:20;20767:1;20756:9;20752:17;20745:47;20809:131;20935:4;20809:131;:::i;:::-;20801:139;;20528:419;;;:::o;20953:233::-;20992:3;21015:24;21033:5;21015:24;:::i;:::-;21006:33;;21061:66;21054:5;21051:77;21048:103;;;21131:18;;:::i;:::-;21048:103;21178:1;21171:5;21167:13;21160:20;;20953:233;;;:::o;21192:::-;21332:34;21328:1;21320:6;21316:14;21309:58;21401:16;21396:2;21388:6;21384:15;21377:41;21192:233;:::o;21431:366::-;21573:3;21594:67;21658:2;21653:3;21594:67;:::i;:::-;21587:74;;21670:93;21759:3;21670:93;:::i;:::-;21788:2;21783:3;21779:12;21772:19;;21431:366;;;:::o;21803:419::-;21969:4;22007:2;21996:9;21992:18;21984:26;;22056:9;22050:4;22046:20;22042:1;22031:9;22027:17;22020:47;22084:131;22210:4;22084:131;:::i;:::-;22076:139;;21803:419;;;:::o;22228:147::-;22329:11;22366:3;22351:18;;22228:147;;;;:::o;22381:114::-;;:::o;22501:398::-;22660:3;22681:83;22762:1;22757:3;22681:83;:::i;:::-;22674:90;;22773:93;22862:3;22773:93;:::i;:::-;22891:1;22886:3;22882:11;22875:18;;22501:398;;;:::o;22905:379::-;23089:3;23111:147;23254:3;23111:147;:::i;:::-;23104:154;;23275:3;23268:10;;22905:379;;;:::o;23290:180::-;23338:77;23335:1;23328:88;23435:4;23432:1;23425:15;23459:4;23456:1;23449:15;23476:222;23616:34;23612:1;23604:6;23600:14;23593:58;23685:5;23680:2;23672:6;23668:15;23661:30;23476:222;:::o;23704:366::-;23846:3;23867:67;23931:2;23926:3;23867:67;:::i;:::-;23860:74;;23943:93;24032:3;23943:93;:::i;:::-;24061:2;24056:3;24052:12;24045:19;;23704:366;;;:::o;24076:419::-;24242:4;24280:2;24269:9;24265:18;24257:26;;24329:9;24323:4;24319:20;24315:1;24304:9;24300:17;24293:47;24357:131;24483:4;24357:131;:::i;:::-;24349:139;;24076:419;;;:::o;24501:230::-;24641:34;24637:1;24629:6;24625:14;24618:58;24710:13;24705:2;24697:6;24693:15;24686:38;24501:230;:::o;24737:366::-;24879:3;24900:67;24964:2;24959:3;24900:67;:::i;:::-;24893:74;;24976:93;25065:3;24976:93;:::i;:::-;25094:2;25089:3;25085:12;25078:19;;24737:366;;;:::o;25109:419::-;25275:4;25313:2;25302:9;25298:18;25290:26;;25362:9;25356:4;25352:20;25348:1;25337:9;25333:17;25326:47;25390:131;25516:4;25390:131;:::i;:::-;25382:139;;25109:419;;;:::o;25534:177::-;25674:29;25670:1;25662:6;25658:14;25651:53;25534:177;:::o;25717:366::-;25859:3;25880:67;25944:2;25939:3;25880:67;:::i;:::-;25873:74;;25956:93;26045:3;25956:93;:::i;:::-;26074:2;26069:3;26065:12;26058:19;;25717:366;;;:::o;26089:419::-;26255:4;26293:2;26282:9;26278:18;26270:26;;26342:9;26336:4;26332:20;26328:1;26317:9;26313:17;26306:47;26370:131;26496:4;26370:131;:::i;:::-;26362:139;;26089:419;;;:::o;26514:305::-;26554:3;26573:20;26591:1;26573:20;:::i;:::-;26568:25;;26607:20;26625:1;26607:20;:::i;:::-;26602:25;;26761:1;26693:66;26689:74;26686:1;26683:81;26680:107;;;26767:18;;:::i;:::-;26680:107;26811:1;26808;26804:9;26797:16;;26514:305;;;;:::o;26825:172::-;26965:24;26961:1;26953:6;26949:14;26942:48;26825:172;:::o;27003:366::-;27145:3;27166:67;27230:2;27225:3;27166:67;:::i;:::-;27159:74;;27242:93;27331:3;27242:93;:::i;:::-;27360:2;27355:3;27351:12;27344:19;;27003:366;;;:::o;27375:419::-;27541:4;27579:2;27568:9;27564:18;27556:26;;27628:9;27622:4;27618:20;27614:1;27603:9;27599:17;27592:47;27656:131;27782:4;27656:131;:::i;:::-;27648:139;;27375:419;;;:::o;27800:168::-;27940:20;27936:1;27928:6;27924:14;27917:44;27800:168;:::o;27974:366::-;28116:3;28137:67;28201:2;28196:3;28137:67;:::i;:::-;28130:74;;28213:93;28302:3;28213:93;:::i;:::-;28331:2;28326:3;28322:12;28315:19;;27974:366;;;:::o;28346:419::-;28512:4;28550:2;28539:9;28535:18;28527:26;;28599:9;28593:4;28589:20;28585:1;28574:9;28570:17;28563:47;28627:131;28753:4;28627:131;:::i;:::-;28619:139;;28346:419;;;:::o;28771:177::-;28911:29;28907:1;28899:6;28895:14;28888:53;28771:177;:::o;28954:366::-;29096:3;29117:67;29181:2;29176:3;29117:67;:::i;:::-;29110:74;;29193:93;29282:3;29193:93;:::i;:::-;29311:2;29306:3;29302:12;29295:19;;28954:366;;;:::o;29326:419::-;29492:4;29530:2;29519:9;29515:18;29507:26;;29579:9;29573:4;29569:20;29565:1;29554:9;29550:17;29543:47;29607:131;29733:4;29607:131;:::i;:::-;29599:139;;29326:419;;;:::o;29751:181::-;29891:33;29887:1;29879:6;29875:14;29868:57;29751:181;:::o;29938:366::-;30080:3;30101:67;30165:2;30160:3;30101:67;:::i;:::-;30094:74;;30177:93;30266:3;30177:93;:::i;:::-;30295:2;30290:3;30286:12;30279:19;;29938:366;;;:::o;30310:419::-;30476:4;30514:2;30503:9;30499:18;30491:26;;30563:9;30557:4;30553:20;30549:1;30538:9;30534:17;30527:47;30591:131;30717:4;30591:131;:::i;:::-;30583:139;;30310:419;;;:::o;30735:174::-;30875:26;30871:1;30863:6;30859:14;30852:50;30735:174;:::o;30915:366::-;31057:3;31078:67;31142:2;31137:3;31078:67;:::i;:::-;31071:74;;31154:93;31243:3;31154:93;:::i;:::-;31272:2;31267:3;31263:12;31256:19;;30915:366;;;:::o;31287:419::-;31453:4;31491:2;31480:9;31476:18;31468:26;;31540:9;31534:4;31530:20;31526:1;31515:9;31511:17;31504:47;31568:131;31694:4;31568:131;:::i;:::-;31560:139;;31287:419;;;:::o;31712:348::-;31752:7;31775:20;31793:1;31775:20;:::i;:::-;31770:25;;31809:20;31827:1;31809:20;:::i;:::-;31804:25;;31997:1;31929:66;31925:74;31922:1;31919:81;31914:1;31907:9;31900:17;31896:105;31893:131;;;32004:18;;:::i;:::-;31893:131;32052:1;32049;32045:9;32034:20;;31712:348;;;;:::o;32066:164::-;32206:16;32202:1;32194:6;32190:14;32183:40;32066:164;:::o;32236:366::-;32378:3;32399:67;32463:2;32458:3;32399:67;:::i;:::-;32392:74;;32475:93;32564:3;32475:93;:::i;:::-;32593:2;32588:3;32584:12;32577:19;;32236:366;;;:::o;32608:419::-;32774:4;32812:2;32801:9;32797:18;32789:26;;32861:9;32855:4;32851:20;32847:1;32836:9;32832:17;32825:47;32889:131;33015:4;32889:131;:::i;:::-;32881:139;;32608:419;;;:::o;33033:177::-;33173:29;33169:1;33161:6;33157:14;33150:53;33033:177;:::o;33216:366::-;33358:3;33379:67;33443:2;33438:3;33379:67;:::i;:::-;33372:74;;33455:93;33544:3;33455:93;:::i;:::-;33573:2;33568:3;33564:12;33557:19;;33216:366;;;:::o;33588:419::-;33754:4;33792:2;33781:9;33777:18;33769:26;;33841:9;33835:4;33831:20;33827:1;33816:9;33812:17;33805:47;33869:131;33995:4;33869:131;:::i;:::-;33861:139;;33588:419;;;:::o;34013:176::-;34153:28;34149:1;34141:6;34137:14;34130:52;34013:176;:::o;34195:366::-;34337:3;34358:67;34422:2;34417:3;34358:67;:::i;:::-;34351:74;;34434:93;34523:3;34434:93;:::i;:::-;34552:2;34547:3;34543:12;34536:19;;34195:366;;;:::o;34567:419::-;34733:4;34771:2;34760:9;34756:18;34748:26;;34820:9;34814:4;34810:20;34806:1;34795:9;34791:17;34784:47;34848:131;34974:4;34848:131;:::i;:::-;34840:139;;34567:419;;;:::o;34992:238::-;35132:34;35128:1;35120:6;35116:14;35109:58;35201:21;35196:2;35188:6;35184:15;35177:46;34992:238;:::o;35236:366::-;35378:3;35399:67;35463:2;35458:3;35399:67;:::i;:::-;35392:74;;35475:93;35564:3;35475:93;:::i;:::-;35593:2;35588:3;35584:12;35577:19;;35236:366;;;:::o;35608:419::-;35774:4;35812:2;35801:9;35797:18;35789:26;;35861:9;35855:4;35851:20;35847:1;35836:9;35832:17;35825:47;35889:131;36015:4;35889:131;:::i;:::-;35881:139;;35608:419;;;:::o;36033:235::-;36173:34;36169:1;36161:6;36157:14;36150:58;36242:18;36237:2;36229:6;36225:15;36218:43;36033:235;:::o;36274:366::-;36416:3;36437:67;36501:2;36496:3;36437:67;:::i;:::-;36430:74;;36513:93;36602:3;36513:93;:::i;:::-;36631:2;36626:3;36622:12;36615:19;;36274:366;;;:::o;36646:419::-;36812:4;36850:2;36839:9;36835:18;36827:26;;36899:9;36893:4;36889:20;36885:1;36874:9;36870:17;36863:47;36927:131;37053:4;36927:131;:::i;:::-;36919:139;;36646:419;;;:::o;37071:148::-;37173:11;37210:3;37195:18;;37071:148;;;;:::o;37225:377::-;37331:3;37359:39;37392:5;37359:39;:::i;:::-;37414:89;37496:6;37491:3;37414:89;:::i;:::-;37407:96;;37512:52;37557:6;37552:3;37545:4;37538:5;37534:16;37512:52;:::i;:::-;37589:6;37584:3;37580:16;37573:23;;37335:267;37225:377;;;;:::o;37608:141::-;37657:4;37680:3;37672:11;;37703:3;37700:1;37693:14;37737:4;37734:1;37724:18;37716:26;;37608:141;;;:::o;37779:845::-;37882:3;37919:5;37913:12;37948:36;37974:9;37948:36;:::i;:::-;38000:89;38082:6;38077:3;38000:89;:::i;:::-;37993:96;;38120:1;38109:9;38105:17;38136:1;38131:137;;;;38282:1;38277:341;;;;38098:520;;38131:137;38215:4;38211:9;38200;38196:25;38191:3;38184:38;38251:6;38246:3;38242:16;38235:23;;38131:137;;38277:341;38344:38;38376:5;38344:38;:::i;:::-;38404:1;38418:154;38432:6;38429:1;38426:13;38418:154;;;38506:7;38500:14;38496:1;38491:3;38487:11;38480:35;38556:1;38547:7;38543:15;38532:26;;38454:4;38451:1;38447:12;38442:17;;38418:154;;;38601:6;38596:3;38592:16;38585:23;;38284:334;;38098:520;;37886:738;;37779:845;;;;:::o;38630:589::-;38855:3;38877:95;38968:3;38959:6;38877:95;:::i;:::-;38870:102;;38989:95;39080:3;39071:6;38989:95;:::i;:::-;38982:102;;39101:92;39189:3;39180:6;39101:92;:::i;:::-;39094:99;;39210:3;39203:10;;38630:589;;;;;;:::o;39225:225::-;39365:34;39361:1;39353:6;39349:14;39342:58;39434:8;39429:2;39421:6;39417:15;39410:33;39225:225;:::o;39456:366::-;39598:3;39619:67;39683:2;39678:3;39619:67;:::i;:::-;39612:74;;39695:93;39784:3;39695:93;:::i;:::-;39813:2;39808:3;39804:12;39797:19;;39456:366;;;:::o;39828:419::-;39994:4;40032:2;40021:9;40017:18;40009:26;;40081:9;40075:4;40071:20;40067:1;40056:9;40052:17;40045:47;40109:131;40235:4;40109:131;:::i;:::-;40101:139;;39828:419;;;:::o;40253:237::-;40393:34;40389:1;40381:6;40377:14;40370:58;40462:20;40457:2;40449:6;40445:15;40438:45;40253:237;:::o;40496:366::-;40638:3;40659:67;40723:2;40718:3;40659:67;:::i;:::-;40652:74;;40735:93;40824:3;40735:93;:::i;:::-;40853:2;40848:3;40844:12;40837:19;;40496:366;;;:::o;40868:419::-;41034:4;41072:2;41061:9;41057:18;41049:26;;41121:9;41115:4;41111:20;41107:1;41096:9;41092:17;41085:47;41149:131;41275:4;41149:131;:::i;:::-;41141:139;;40868:419;;;:::o;41293:225::-;41433:34;41429:1;41421:6;41417:14;41410:58;41502:8;41497:2;41489:6;41485:15;41478:33;41293:225;:::o;41524:366::-;41666:3;41687:67;41751:2;41746:3;41687:67;:::i;:::-;41680:74;;41763:93;41852:3;41763:93;:::i;:::-;41881:2;41876:3;41872:12;41865:19;;41524:366;;;:::o;41896:419::-;42062:4;42100:2;42089:9;42085:18;42077:26;;42149:9;42143:4;42139:20;42135:1;42124:9;42120:17;42113:47;42177:131;42303:4;42177:131;:::i;:::-;42169:139;;41896:419;;;:::o;42321:224::-;42461:34;42457:1;42449:6;42445:14;42438:58;42530:7;42525:2;42517:6;42513:15;42506:32;42321:224;:::o;42551:366::-;42693:3;42714:67;42778:2;42773:3;42714:67;:::i;:::-;42707:74;;42790:93;42879:3;42790:93;:::i;:::-;42908:2;42903:3;42899:12;42892:19;;42551:366;;;:::o;42923:419::-;43089:4;43127:2;43116:9;43112:18;43104:26;;43176:9;43170:4;43166:20;43162:1;43151:9;43147:17;43140:47;43204:131;43330:4;43204:131;:::i;:::-;43196:139;;42923:419;;;:::o;43348:118::-;43385:7;43425:34;43418:5;43414:46;43403:57;;43348:118;;;:::o;43472:191::-;43512:4;43532:20;43550:1;43532:20;:::i;:::-;43527:25;;43566:20;43584:1;43566:20;:::i;:::-;43561:25;;43605:1;43602;43599:8;43596:34;;;43610:18;;:::i;:::-;43596:34;43655:1;43652;43648:9;43640:17;;43472:191;;;;:::o;43669:273::-;43709:3;43728:20;43746:1;43728:20;:::i;:::-;43723:25;;43762:20;43780:1;43762:20;:::i;:::-;43757:25;;43884:1;43848:34;43844:42;43841:1;43838:49;43835:75;;;43890:18;;:::i;:::-;43835:75;43934:1;43931;43927:9;43920:16;;43669:273;;;;:::o;43948:229::-;44088:34;44084:1;44076:6;44072:14;44065:58;44157:12;44152:2;44144:6;44140:15;44133:37;43948:229;:::o;44183:366::-;44325:3;44346:67;44410:2;44405:3;44346:67;:::i;:::-;44339:74;;44422:93;44511:3;44422:93;:::i;:::-;44540:2;44535:3;44531:12;44524:19;;44183:366;;;:::o;44555:419::-;44721:4;44759:2;44748:9;44744:18;44736:26;;44808:9;44802:4;44798:20;44794:1;44783:9;44779:17;44772:47;44836:131;44962:4;44836:131;:::i;:::-;44828:139;;44555:419;;;:::o;44980:171::-;45019:3;45042:24;45060:5;45042:24;:::i;:::-;45033:33;;45088:4;45081:5;45078:15;45075:41;;;45096:18;;:::i;:::-;45075:41;45143:1;45136:5;45132:13;45125:20;;44980:171;;;:::o;45157:234::-;45297:34;45293:1;45285:6;45281:14;45274:58;45366:17;45361:2;45353:6;45349:15;45342:42;45157:234;:::o;45397:366::-;45539:3;45560:67;45624:2;45619:3;45560:67;:::i;:::-;45553:74;;45636:93;45725:3;45636:93;:::i;:::-;45754:2;45749:3;45745:12;45738:19;;45397:366;;;:::o;45769:419::-;45935:4;45973:2;45962:9;45958:18;45950:26;;46022:9;46016:4;46012:20;46008:1;45997:9;45993:17;45986:47;46050:131;46176:4;46050:131;:::i;:::-;46042:139;;45769:419;;;:::o;46194:98::-;46245:6;46279:5;46273:12;46263:22;;46194:98;;;:::o;46298:168::-;46381:11;46415:6;46410:3;46403:19;46455:4;46450:3;46446:14;46431:29;;46298:168;;;;:::o;46472:360::-;46558:3;46586:38;46618:5;46586:38;:::i;:::-;46640:70;46703:6;46698:3;46640:70;:::i;:::-;46633:77;;46719:52;46764:6;46759:3;46752:4;46745:5;46741:16;46719:52;:::i;:::-;46796:29;46818:6;46796:29;:::i;:::-;46791:3;46787:39;46780:46;;46562:270;46472:360;;;;:::o;46838:640::-;47033:4;47071:3;47060:9;47056:19;47048:27;;47085:71;47153:1;47142:9;47138:17;47129:6;47085:71;:::i;:::-;47166:72;47234:2;47223:9;47219:18;47210:6;47166:72;:::i;:::-;47248;47316:2;47305:9;47301:18;47292:6;47248:72;:::i;:::-;47367:9;47361:4;47357:20;47352:2;47341:9;47337:18;47330:48;47395:76;47466:4;47457:6;47395:76;:::i;:::-;47387:84;;46838:640;;;;;;;:::o;47484:141::-;47540:5;47571:6;47565:13;47556:22;;47587:32;47613:5;47587:32;:::i;:::-;47484:141;;;;:::o;47631:349::-;47700:6;47749:2;47737:9;47728:7;47724:23;47720:32;47717:119;;;47755:79;;:::i;:::-;47717:119;47875:1;47900:63;47955:7;47946:6;47935:9;47931:22;47900:63;:::i;:::-;47890:73;;47846:127;47631:349;;;;:::o;47986:180::-;48034:77;48031:1;48024:88;48131:4;48128:1;48121:15;48155:4;48152:1;48145:15;48172:185;48212:1;48229:20;48247:1;48229:20;:::i;:::-;48224:25;;48263:20;48281:1;48263:20;:::i;:::-;48258:25;;48302:1;48292:35;;48307:18;;:::i;:::-;48292:35;48349:1;48346;48342:9;48337:14;;48172:185;;;;:::o;48363:176::-;48395:1;48412:20;48430:1;48412:20;:::i;:::-;48407:25;;48446:20;48464:1;48446:20;:::i;:::-;48441:25;;48485:1;48475:35;;48490:18;;:::i;:::-;48475:35;48531:1;48528;48524:9;48519:14;;48363:176;;;;:::o;48545:220::-;48685:34;48681:1;48673:6;48669:14;48662:58;48754:3;48749:2;48741:6;48737:15;48730:28;48545:220;:::o;48771:366::-;48913:3;48934:67;48998:2;48993:3;48934:67;:::i;:::-;48927:74;;49010:93;49099:3;49010:93;:::i;:::-;49128:2;49123:3;49119:12;49112:19;;48771:366;;;:::o;49143:419::-;49309:4;49347:2;49336:9;49332:18;49324:26;;49396:9;49390:4;49386:20;49382:1;49371:9;49367:17;49360:47;49424:131;49550:4;49424:131;:::i;:::-;49416:139;;49143:419;;;:::o;49568:179::-;49708:31;49704:1;49696:6;49692:14;49685:55;49568:179;:::o;49753:366::-;49895:3;49916:67;49980:2;49975:3;49916:67;:::i;:::-;49909:74;;49992:93;50081:3;49992:93;:::i;:::-;50110:2;50105:3;50101:12;50094:19;;49753:366;;;:::o;50125:419::-;50291:4;50329:2;50318:9;50314:18;50306:26;;50378:9;50372:4;50368:20;50364:1;50353:9;50349:17;50342:47;50406:131;50532:4;50406:131;:::i;:::-;50398:139;;50125:419;;;:::o;50550:221::-;50690:34;50686:1;50678:6;50674:14;50667:58;50759:4;50754:2;50746:6;50742:15;50735:29;50550:221;:::o;50777:366::-;50919:3;50940:67;51004:2;50999:3;50940:67;:::i;:::-;50933:74;;51016:93;51105:3;51016:93;:::i;:::-;51134:2;51129:3;51125:12;51118:19;;50777:366;;;:::o;51149:419::-;51315:4;51353:2;51342:9;51338:18;51330:26;;51402:9;51396:4;51392:20;51388:1;51377:9;51373:17;51366:47;51430:131;51556:4;51430:131;:::i;:::-;51422:139;;51149:419;;;:::o

Swarm Source

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