ETH Price: $3,480.37 (+0.55%)
Gas: 6 Gwei

Token

Geometric Useless Fucks (GUF)
 

Overview

Max Total Supply

1,426 GUF

Holders

44

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
20 GUF
0xcc884d84b4d0d865e867d6e14f4f8fd8489020c9
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:
GEOMETRICUSELESSFUCKS

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-11
*/

// SPDX-License-Identifier: MIT
// 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/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/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: @openzeppelin/contracts/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: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

    // ==============================
    //            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);

    // ==============================
    //            IERC721
    // ==============================

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

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

    // ==============================
    //        IERC721Metadata
    // ==============================

    /**
     * @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: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;
    
    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // 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 `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * @dev Returns the starting token ID. 
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count. 
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to `_startTokenId()`
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

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

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @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 Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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 virtual override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * 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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    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.
     * And also called after one token has been burned.
     *
     * 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` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

// File: contracts/guf.sol



pragma solidity ^0.8.0;






contract GEOMETRICUSELESSFUCKS is ERC721A, Ownable, ReentrancyGuard {

  using Address for address;
  using Strings for uint;

  string  public  baseTokenURI = "ipfs://QmQZpQpxKa9CPcZrPUcmSQ5S4RdfJA6UjGAwkgTgsUW3en";

  uint256 public  maxSupply = 5555;
  uint256 public  maxpertx = 10;
  uint256 public  price = 0.00314 ether;
  uint256 public  freeperwallet = 2;
  uint256 public  maxperwallet = 12;
  bool public isPublicSaleActive = false;
  mapping(address => uint256) public minted;
  mapping(address => uint256) public freeminted;
  

  constructor(

  ) ERC721A("Geometric Useless Fucks", "GUF") {

  }

  function mint(uint256 numberOfTokens)
      external
      payable
  {
    require(isPublicSaleActive, "No public sale yet.");
    require(totalSupply() + numberOfTokens <= maxSupply,"Sold out");
    require(numberOfTokens > 0,"WTF");
    require((minted[msg.sender] + freeminted[msg.sender] + numberOfTokens) <= maxperwallet, "Exceeds max per wallet");
    require(numberOfTokens <= maxpertx, "Exceeds max per transaction");
    require(msg.value >= numberOfTokens * price, "Incorrect ETH value");
  
    minted[msg.sender] = minted[msg.sender] + numberOfTokens;
    _safeMint(msg.sender, numberOfTokens);
  }

    function Freemint()
      external
  {
    require(isPublicSaleActive, "No public sale yet.");
    require(freeminted[msg.sender] == 0, "Don't be a greedy fuck");
    require(totalSupply() + freeperwallet <= maxSupply,"Sold out");
    require((minted[msg.sender] + freeminted[msg.sender] + freeperwallet) <= maxperwallet, "Exceeds max per wallet");
    freeminted[msg.sender] = freeperwallet;
    _safeMint(msg.sender, freeperwallet);
  }

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

  function ReserveMint(uint quantity, address user)
    public
    onlyOwner
  {
    require(
      quantity > 0,
      "Invalid mint amount"
    );
    require(
      totalSupply() + quantity <= maxSupply,
      "Maximum supply exceeded"
    );
    _safeMint(user, quantity);
  }

  function withdraw()
    public
    onlyOwner
    nonReentrant
  {
    Address.sendValue(payable(msg.sender), address(this).balance);
  }

  function tokenURI(uint _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    return string(abi.encodePacked(baseTokenURI, "/", _tokenId.toString(), ".json"));
  }

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

  function setIsPublicSaleActive(bool _isPublicSaleActive)
      external
      onlyOwner
  {
      isPublicSaleActive = _isPublicSaleActive;
  }

  function setNumFreeMints(uint256 _numfreemints)
      external
      onlyOwner
  {
      freeperwallet = _numfreemints;
  }

  function setSalePrice(uint256 _price)
      external
      onlyOwner
  {
      price = _price;
  }

  function setMaxLimitPerTransaction(uint256 _limit)
      external
      onlyOwner
  {
      maxpertx = _limit;
  }

  function setMaxperwallet(uint256 _maxperwallet)
      external
      onlyOwner
  {
      maxperwallet = _maxperwallet;
  }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Freemint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"user","type":"address"}],"name":"ReserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeminted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeperwallet","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":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxpertx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxperwallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxLimitPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxperwallet","type":"uint256"}],"name":"setMaxperwallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setSalePrice","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":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060600160405280603581526020016200411460359139600a90805190602001906200003592919062000236565b506115b3600b55600a600c55660b27d038984000600d556002600e55600c600f556000601060006101000a81548160ff0219169083151502179055503480156200007e57600080fd5b506040518060400160405280601781526020017f47656f6d6574726963205573656c657373204675636b730000000000000000008152506040518060400160405280600381526020017f475546000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200010392919062000236565b5080600390805190602001906200011c92919062000236565b506200012d6200016360201b60201c565b600081905550505062000155620001496200016860201b60201c565b6200017060201b60201c565b60016009819055506200034b565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024490620002e6565b90600052602060002090601f016020900481019282620002685760008555620002b4565b82601f106200028357805160ff1916838001178555620002b4565b82800160010185558215620002b4579182015b82811115620002b357825182559160200191906001019062000296565b5b509050620002c39190620002c7565b5090565b5b80821115620002e2576000816000905550600101620002c8565b5090565b60006002820490506001821680620002ff57607f821691505b602082108114156200031657620003156200031c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613db9806200035b6000396000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063c87b56dd116100a0578063e985e9c51161006f578063e985e9c514610752578063ef56267e1461078f578063ef75ea70146107cc578063eff60110146107f7578063f2fde38b146108225761020f565b8063c87b56dd14610694578063d547cfb7146106d1578063d5abeb01146106fc578063d8a216c5146107275761020f565b80639e9fcffc116100e75780639e9fcffc146105d2578063a035b1fe146105fb578063a0712d6814610626578063a22cb46514610642578063b88d4fde1461066b5761020f565b8063715018a61461053c5780638da5cb5b1461055357806392f4d3f61461057e57806395d89b41146105a75761020f565b80631e84c4131161019b5780633ccfd60b1161016a5780633ccfd60b1461045957806342842e0e1461047057806355f804b3146104995780636352211e146104c257806370a08231146104ff5761020f565b80631e84c413146103c557806323b872dd146103f0578063264517ec1461041957806328cad13d146104305761020f565b80630a00ae83116101e25780630a00ae83146102e257806314abf1771461030b57806318160ddd146103345780631919fed71461035f5780631e7269c5146103885761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612d94565b61084b565b604051610248919061331f565b60405180910390f35b34801561025d57600080fd5b506102666108dd565b604051610273919061333a565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612e37565b61096f565b6040516102b091906132b8565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612d27565b6109eb565b005b3480156102ee57600080fd5b5061030960048036038101906103049190612e37565b610b92565b005b34801561031757600080fd5b50610332600480360381019061032d9190612e37565b610c18565b005b34801561034057600080fd5b50610349610c9e565b604051610356919061353c565b60405180910390f35b34801561036b57600080fd5b5061038660048036038101906103819190612e37565b610cb5565b005b34801561039457600080fd5b506103af60048036038101906103aa9190612ba4565b610d3b565b6040516103bc919061353c565b60405180910390f35b3480156103d157600080fd5b506103da610d53565b6040516103e7919061331f565b60405180910390f35b3480156103fc57600080fd5b5061041760048036038101906104129190612c11565b610d66565b005b34801561042557600080fd5b5061042e610d76565b005b34801561043c57600080fd5b5061045760048036038101906104529190612d67565b610fcf565b005b34801561046557600080fd5b5061046e611068565b005b34801561047c57600080fd5b5061049760048036038101906104929190612c11565b611146565b005b3480156104a557600080fd5b506104c060048036038101906104bb9190612dee565b611166565b005b3480156104ce57600080fd5b506104e960048036038101906104e49190612e37565b6111fc565b6040516104f691906132b8565b60405180910390f35b34801561050b57600080fd5b5061052660048036038101906105219190612ba4565b61120e565b604051610533919061353c565b60405180910390f35b34801561054857600080fd5b506105516112c7565b005b34801561055f57600080fd5b5061056861134f565b60405161057591906132b8565b60405180910390f35b34801561058a57600080fd5b506105a560048036038101906105a09190612e64565b611379565b005b3480156105b357600080fd5b506105bc61149d565b6040516105c9919061333a565b60405180910390f35b3480156105de57600080fd5b506105f960048036038101906105f49190612e37565b61152f565b005b34801561060757600080fd5b506106106115b5565b60405161061d919061353c565b60405180910390f35b610640600480360381019061063b9190612e37565b6115bb565b005b34801561064e57600080fd5b5061066960048036038101906106649190612ce7565b6118ad565b005b34801561067757600080fd5b50610692600480360381019061068d9190612c64565b611a25565b005b3480156106a057600080fd5b506106bb60048036038101906106b69190612e37565b611a98565b6040516106c8919061333a565b60405180910390f35b3480156106dd57600080fd5b506106e6611b14565b6040516106f3919061333a565b60405180910390f35b34801561070857600080fd5b50610711611ba2565b60405161071e919061353c565b60405180910390f35b34801561073357600080fd5b5061073c611ba8565b604051610749919061353c565b60405180910390f35b34801561075e57600080fd5b5061077960048036038101906107749190612bd1565b611bae565b604051610786919061331f565b60405180910390f35b34801561079b57600080fd5b506107b660048036038101906107b19190612ba4565b611c42565b6040516107c3919061353c565b60405180910390f35b3480156107d857600080fd5b506107e1611c5a565b6040516107ee919061353c565b60405180910390f35b34801561080357600080fd5b5061080c611c60565b604051610819919061353c565b60405180910390f35b34801561082e57600080fd5b5061084960048036038101906108449190612ba4565b611c66565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108a657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108ec9061380c565b80601f01602080910402602001604051908101604052809291908181526020018280546109189061380c565b80156109655780601f1061093a57610100808354040283529160200191610965565b820191906000526020600020905b81548152906001019060200180831161094857829003601f168201915b5050505050905090565b600061097a82611d5e565b6109b0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109f682611dbd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a5e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a7d611e8b565b73ffffffffffffffffffffffffffffffffffffffff1614610ae057610aa981610aa4611e8b565b611bae565b610adf576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b9a611e93565b73ffffffffffffffffffffffffffffffffffffffff16610bb861134f565b73ffffffffffffffffffffffffffffffffffffffff1614610c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c059061343c565b60405180910390fd5b80600e8190555050565b610c20611e93565b73ffffffffffffffffffffffffffffffffffffffff16610c3e61134f565b73ffffffffffffffffffffffffffffffffffffffff1614610c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8b9061343c565b60405180910390fd5b80600f8190555050565b6000610ca8611e9b565b6001546000540303905090565b610cbd611e93565b73ffffffffffffffffffffffffffffffffffffffff16610cdb61134f565b73ffffffffffffffffffffffffffffffffffffffff1614610d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d289061343c565b60405180910390fd5b80600d8190555050565b60116020528060005260406000206000915090505481565b601060009054906101000a900460ff1681565b610d71838383611ea0565b505050565b601060009054906101000a900460ff16610dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbc906133fc565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3e9061337c565b60405180910390fd5b600b54600e54610e55610c9e565b610e5f9190613641565b1115610ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e979061349c565b60405180910390fd5b600f54600e54601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f309190613641565b610f3a9190613641565b1115610f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f72906134dc565b60405180910390fd5b600e54601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610fcd33600e5461224a565b565b610fd7611e93565b73ffffffffffffffffffffffffffffffffffffffff16610ff561134f565b73ffffffffffffffffffffffffffffffffffffffff161461104b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110429061343c565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b611070611e93565b73ffffffffffffffffffffffffffffffffffffffff1661108e61134f565b73ffffffffffffffffffffffffffffffffffffffff16146110e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110db9061343c565b60405180910390fd5b6002600954141561112a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611121906134fc565b60405180910390fd5b600260098190555061113c3347612268565b6001600981905550565b61116183838360405180602001604052806000815250611a25565b505050565b61116e611e93565b73ffffffffffffffffffffffffffffffffffffffff1661118c61134f565b73ffffffffffffffffffffffffffffffffffffffff16146111e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d99061343c565b60405180910390fd5b80600a90805190602001906111f89291906129b8565b5050565b600061120782611dbd565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611276576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112cf611e93565b73ffffffffffffffffffffffffffffffffffffffff166112ed61134f565b73ffffffffffffffffffffffffffffffffffffffff1614611343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133a9061343c565b60405180910390fd5b61134d600061235c565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611381611e93565b73ffffffffffffffffffffffffffffffffffffffff1661139f61134f565b73ffffffffffffffffffffffffffffffffffffffff16146113f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ec9061343c565b60405180910390fd5b60008211611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f906134bc565b60405180910390fd5b600b5482611444610c9e565b61144e9190613641565b111561148f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114869061341c565b60405180910390fd5b611499818361224a565b5050565b6060600380546114ac9061380c565b80601f01602080910402602001604051908101604052809291908181526020018280546114d89061380c565b80156115255780601f106114fa57610100808354040283529160200191611525565b820191906000526020600020905b81548152906001019060200180831161150857829003601f168201915b5050505050905090565b611537611e93565b73ffffffffffffffffffffffffffffffffffffffff1661155561134f565b73ffffffffffffffffffffffffffffffffffffffff16146115ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a29061343c565b60405180910390fd5b80600c8190555050565b600d5481565b601060009054906101000a900460ff1661160a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611601906133fc565b60405180910390fd5b600b5481611616610c9e565b6116209190613641565b1115611661576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116589061349c565b60405180910390fd5b600081116116a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169b9061335c565b60405180910390fd5b600f5481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117329190613641565b61173c9190613641565b111561177d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611774906134dc565b60405180910390fd5b600c548111156117c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b99061347c565b60405180910390fd5b600d54816117d091906136c8565b341015611812576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118099061351c565b60405180910390fd5b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461185d9190613641565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506118aa338261224a565b50565b6118b5611e8b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561191a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611927611e8b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119d4611e8b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a19919061331f565b60405180910390a35050565b611a30848484611ea0565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a9257611a5b84848484612422565b611a91576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611aa382611d5e565b611ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad99061345c565b60405180910390fd5b600a611aed83612582565b604051602001611afe929190613269565b6040516020818303038152906040529050919050565b600a8054611b219061380c565b80601f0160208091040260200160405190810160405280929190818152602001828054611b4d9061380c565b8015611b9a5780601f10611b6f57610100808354040283529160200191611b9a565b820191906000526020600020905b815481529060010190602001808311611b7d57829003601f168201915b505050505081565b600b5481565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60126020528060005260406000206000915090505481565b600e5481565b600c5481565b611c6e611e93565b73ffffffffffffffffffffffffffffffffffffffff16611c8c61134f565b73ffffffffffffffffffffffffffffffffffffffff1614611ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd99061343c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d499061339c565b60405180910390fd5b611d5b8161235c565b50565b600081611d69611e9b565b11158015611d78575060005482105b8015611db6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611dcc611e9b565b11611e5457600054811015611e535760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611e51575b6000811415611e47576004600083600190039350838152602001908152602001600020549050611e1c565b8092505050611e86565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b600090565b6000611eab82611dbd565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611f12576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611f33611e8b565b73ffffffffffffffffffffffffffffffffffffffff161480611f625750611f6185611f5c611e8b565b611bae565b5b80611fa75750611f70611e8b565b73ffffffffffffffffffffffffffffffffffffffff16611f8f8461096f565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611fe0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612047576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61205485858560016126e3565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b612151866126e9565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831614156121db5760006001840190506000600460008381526020019081526020016000205414156121d95760005481146121d8578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461224385858560016126f3565b5050505050565b6122648282604051806020016040528060008152506126f9565b5050565b804710156122ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a2906133dc565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516122d1906132a3565b60006040518083038185875af1925050503d806000811461230e576040519150601f19603f3d011682016040523d82523d6000602084013e612313565b606091505b5050905080612357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234e906133bc565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612448611e8b565b8786866040518563ffffffff1660e01b815260040161246a94939291906132d3565b602060405180830381600087803b15801561248457600080fd5b505af19250505080156124b557506040513d601f19601f820116820180604052508101906124b29190612dc1565b60015b61252f573d80600081146124e5576040519150601f19603f3d011682016040523d82523d6000602084013e6124ea565b606091505b50600081511415612527576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156125ca576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126de565b600082905060005b600082146125fc5780806125e59061386f565b915050600a826125f59190613697565b91506125d2565b60008167ffffffffffffffff811115612618576126176139a5565b5b6040519080825280601f01601f19166020018201604052801561264a5781602001600182028036833780820191505090505b5090505b600085146126d7576001826126639190613722565b9150600a8561267291906138b8565b603061267e9190613641565b60f81b81838151811061269457612693613976565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126d09190613697565b945061264e565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612766576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156127a1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127ae60008583866126e3565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612813600185146129ae565b901b60a042901b612823866126e9565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612927575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128d76000878480600101955087612422565b61290d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061286857826000541461292257600080fd5b612992565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612928575b8160008190555050506129a860008583866126f3565b50505050565b6000819050919050565b8280546129c49061380c565b90600052602060002090601f0160209004810192826129e65760008555612a2d565b82601f106129ff57805160ff1916838001178555612a2d565b82800160010185558215612a2d579182015b82811115612a2c578251825591602001919060010190612a11565b5b509050612a3a9190612a3e565b5090565b5b80821115612a57576000816000905550600101612a3f565b5090565b6000612a6e612a698461357c565b613557565b905082815260208101848484011115612a8a57612a896139d9565b5b612a958482856137ca565b509392505050565b6000612ab0612aab846135ad565b613557565b905082815260208101848484011115612acc57612acb6139d9565b5b612ad78482856137ca565b509392505050565b600081359050612aee81613d27565b92915050565b600081359050612b0381613d3e565b92915050565b600081359050612b1881613d55565b92915050565b600081519050612b2d81613d55565b92915050565b600082601f830112612b4857612b476139d4565b5b8135612b58848260208601612a5b565b91505092915050565b600082601f830112612b7657612b756139d4565b5b8135612b86848260208601612a9d565b91505092915050565b600081359050612b9e81613d6c565b92915050565b600060208284031215612bba57612bb96139e3565b5b6000612bc884828501612adf565b91505092915050565b60008060408385031215612be857612be76139e3565b5b6000612bf685828601612adf565b9250506020612c0785828601612adf565b9150509250929050565b600080600060608486031215612c2a57612c296139e3565b5b6000612c3886828701612adf565b9350506020612c4986828701612adf565b9250506040612c5a86828701612b8f565b9150509250925092565b60008060008060808587031215612c7e57612c7d6139e3565b5b6000612c8c87828801612adf565b9450506020612c9d87828801612adf565b9350506040612cae87828801612b8f565b925050606085013567ffffffffffffffff811115612ccf57612cce6139de565b5b612cdb87828801612b33565b91505092959194509250565b60008060408385031215612cfe57612cfd6139e3565b5b6000612d0c85828601612adf565b9250506020612d1d85828601612af4565b9150509250929050565b60008060408385031215612d3e57612d3d6139e3565b5b6000612d4c85828601612adf565b9250506020612d5d85828601612b8f565b9150509250929050565b600060208284031215612d7d57612d7c6139e3565b5b6000612d8b84828501612af4565b91505092915050565b600060208284031215612daa57612da96139e3565b5b6000612db884828501612b09565b91505092915050565b600060208284031215612dd757612dd66139e3565b5b6000612de584828501612b1e565b91505092915050565b600060208284031215612e0457612e036139e3565b5b600082013567ffffffffffffffff811115612e2257612e216139de565b5b612e2e84828501612b61565b91505092915050565b600060208284031215612e4d57612e4c6139e3565b5b6000612e5b84828501612b8f565b91505092915050565b60008060408385031215612e7b57612e7a6139e3565b5b6000612e8985828601612b8f565b9250506020612e9a85828601612adf565b9150509250929050565b612ead81613756565b82525050565b612ebc81613768565b82525050565b6000612ecd826135f3565b612ed78185613609565b9350612ee78185602086016137d9565b612ef0816139e8565b840191505092915050565b6000612f06826135fe565b612f108185613625565b9350612f208185602086016137d9565b612f29816139e8565b840191505092915050565b6000612f3f826135fe565b612f498185613636565b9350612f598185602086016137d9565b80840191505092915050565b60008154612f728161380c565b612f7c8186613636565b94506001821660008114612f975760018114612fa857612fdb565b60ff19831686528186019350612fdb565b612fb1856135de565b60005b83811015612fd357815481890152600182019150602081019050612fb4565b838801955050505b50505092915050565b6000612ff1600383613625565b9150612ffc826139f9565b602082019050919050565b6000613014601683613625565b915061301f82613a22565b602082019050919050565b6000613037602683613625565b915061304282613a4b565b604082019050919050565b600061305a603a83613625565b915061306582613a9a565b604082019050919050565b600061307d601d83613625565b915061308882613ae9565b602082019050919050565b60006130a0601383613625565b91506130ab82613b12565b602082019050919050565b60006130c3601783613625565b91506130ce82613b3b565b602082019050919050565b60006130e6600583613636565b91506130f182613b64565b600582019050919050565b6000613109602083613625565b915061311482613b8d565b602082019050919050565b600061312c602f83613625565b915061313782613bb6565b604082019050919050565b600061314f601b83613625565b915061315a82613c05565b602082019050919050565b600061317260008361361a565b915061317d82613c2e565b600082019050919050565b6000613195600883613625565b91506131a082613c31565b602082019050919050565b60006131b8601383613625565b91506131c382613c5a565b602082019050919050565b60006131db601683613625565b91506131e682613c83565b602082019050919050565b60006131fe601f83613625565b915061320982613cac565b602082019050919050565b6000613221601383613625565b915061322c82613cd5565b602082019050919050565b6000613244600183613636565b915061324f82613cfe565b600182019050919050565b613263816137c0565b82525050565b60006132758285612f65565b915061328082613237565b915061328c8284612f34565b9150613297826130d9565b91508190509392505050565b60006132ae82613165565b9150819050919050565b60006020820190506132cd6000830184612ea4565b92915050565b60006080820190506132e86000830187612ea4565b6132f56020830186612ea4565b613302604083018561325a565b81810360608301526133148184612ec2565b905095945050505050565b60006020820190506133346000830184612eb3565b92915050565b600060208201905081810360008301526133548184612efb565b905092915050565b6000602082019050818103600083015261337581612fe4565b9050919050565b6000602082019050818103600083015261339581613007565b9050919050565b600060208201905081810360008301526133b58161302a565b9050919050565b600060208201905081810360008301526133d58161304d565b9050919050565b600060208201905081810360008301526133f581613070565b9050919050565b6000602082019050818103600083015261341581613093565b9050919050565b60006020820190508181036000830152613435816130b6565b9050919050565b60006020820190508181036000830152613455816130fc565b9050919050565b600060208201905081810360008301526134758161311f565b9050919050565b6000602082019050818103600083015261349581613142565b9050919050565b600060208201905081810360008301526134b581613188565b9050919050565b600060208201905081810360008301526134d5816131ab565b9050919050565b600060208201905081810360008301526134f5816131ce565b9050919050565b60006020820190508181036000830152613515816131f1565b9050919050565b6000602082019050818103600083015261353581613214565b9050919050565b6000602082019050613551600083018461325a565b92915050565b6000613561613572565b905061356d828261383e565b919050565b6000604051905090565b600067ffffffffffffffff821115613597576135966139a5565b5b6135a0826139e8565b9050602081019050919050565b600067ffffffffffffffff8211156135c8576135c76139a5565b5b6135d1826139e8565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061364c826137c0565b9150613657836137c0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561368c5761368b6138e9565b5b828201905092915050565b60006136a2826137c0565b91506136ad836137c0565b9250826136bd576136bc613918565b5b828204905092915050565b60006136d3826137c0565b91506136de836137c0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613717576137166138e9565b5b828202905092915050565b600061372d826137c0565b9150613738836137c0565b92508282101561374b5761374a6138e9565b5b828203905092915050565b6000613761826137a0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156137f75780820151818401526020810190506137dc565b83811115613806576000848401525b50505050565b6000600282049050600182168061382457607f821691505b6020821081141561383857613837613947565b5b50919050565b613847826139e8565b810181811067ffffffffffffffff82111715613866576138656139a5565b5b80604052505050565b600061387a826137c0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138ad576138ac6138e9565b5b600182019050919050565b60006138c3826137c0565b91506138ce836137c0565b9250826138de576138dd613918565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5754460000000000000000000000000000000000000000000000000000000000600082015250565b7f446f6e2774206265206120677265656479206675636b00000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4e6f207075626c69632073616c65207965742e00000000000000000000000000600082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f45786365656473206d617820706572207472616e73616374696f6e0000000000600082015250565b50565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f45786365656473206d6178207065722077616c6c657400000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e636f7272656374204554482076616c756500000000000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b613d3081613756565b8114613d3b57600080fd5b50565b613d4781613768565b8114613d5257600080fd5b50565b613d5e81613774565b8114613d6957600080fd5b50565b613d75816137c0565b8114613d8057600080fd5b5056fea264697066735822122078e88642ab698e893633ad45b6953b8b7115fbd213772cddbd05063791fbf59c64736f6c63430008070033697066733a2f2f516d515a705170784b61394350635a725055636d53513553345264664a4136556a4741776b67546773555733656e

Deployed Bytecode

0x60806040526004361061020f5760003560e01c8063715018a611610118578063c87b56dd116100a0578063e985e9c51161006f578063e985e9c514610752578063ef56267e1461078f578063ef75ea70146107cc578063eff60110146107f7578063f2fde38b146108225761020f565b8063c87b56dd14610694578063d547cfb7146106d1578063d5abeb01146106fc578063d8a216c5146107275761020f565b80639e9fcffc116100e75780639e9fcffc146105d2578063a035b1fe146105fb578063a0712d6814610626578063a22cb46514610642578063b88d4fde1461066b5761020f565b8063715018a61461053c5780638da5cb5b1461055357806392f4d3f61461057e57806395d89b41146105a75761020f565b80631e84c4131161019b5780633ccfd60b1161016a5780633ccfd60b1461045957806342842e0e1461047057806355f804b3146104995780636352211e146104c257806370a08231146104ff5761020f565b80631e84c413146103c557806323b872dd146103f0578063264517ec1461041957806328cad13d146104305761020f565b80630a00ae83116101e25780630a00ae83146102e257806314abf1771461030b57806318160ddd146103345780631919fed71461035f5780631e7269c5146103885761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612d94565b61084b565b604051610248919061331f565b60405180910390f35b34801561025d57600080fd5b506102666108dd565b604051610273919061333a565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612e37565b61096f565b6040516102b091906132b8565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612d27565b6109eb565b005b3480156102ee57600080fd5b5061030960048036038101906103049190612e37565b610b92565b005b34801561031757600080fd5b50610332600480360381019061032d9190612e37565b610c18565b005b34801561034057600080fd5b50610349610c9e565b604051610356919061353c565b60405180910390f35b34801561036b57600080fd5b5061038660048036038101906103819190612e37565b610cb5565b005b34801561039457600080fd5b506103af60048036038101906103aa9190612ba4565b610d3b565b6040516103bc919061353c565b60405180910390f35b3480156103d157600080fd5b506103da610d53565b6040516103e7919061331f565b60405180910390f35b3480156103fc57600080fd5b5061041760048036038101906104129190612c11565b610d66565b005b34801561042557600080fd5b5061042e610d76565b005b34801561043c57600080fd5b5061045760048036038101906104529190612d67565b610fcf565b005b34801561046557600080fd5b5061046e611068565b005b34801561047c57600080fd5b5061049760048036038101906104929190612c11565b611146565b005b3480156104a557600080fd5b506104c060048036038101906104bb9190612dee565b611166565b005b3480156104ce57600080fd5b506104e960048036038101906104e49190612e37565b6111fc565b6040516104f691906132b8565b60405180910390f35b34801561050b57600080fd5b5061052660048036038101906105219190612ba4565b61120e565b604051610533919061353c565b60405180910390f35b34801561054857600080fd5b506105516112c7565b005b34801561055f57600080fd5b5061056861134f565b60405161057591906132b8565b60405180910390f35b34801561058a57600080fd5b506105a560048036038101906105a09190612e64565b611379565b005b3480156105b357600080fd5b506105bc61149d565b6040516105c9919061333a565b60405180910390f35b3480156105de57600080fd5b506105f960048036038101906105f49190612e37565b61152f565b005b34801561060757600080fd5b506106106115b5565b60405161061d919061353c565b60405180910390f35b610640600480360381019061063b9190612e37565b6115bb565b005b34801561064e57600080fd5b5061066960048036038101906106649190612ce7565b6118ad565b005b34801561067757600080fd5b50610692600480360381019061068d9190612c64565b611a25565b005b3480156106a057600080fd5b506106bb60048036038101906106b69190612e37565b611a98565b6040516106c8919061333a565b60405180910390f35b3480156106dd57600080fd5b506106e6611b14565b6040516106f3919061333a565b60405180910390f35b34801561070857600080fd5b50610711611ba2565b60405161071e919061353c565b60405180910390f35b34801561073357600080fd5b5061073c611ba8565b604051610749919061353c565b60405180910390f35b34801561075e57600080fd5b5061077960048036038101906107749190612bd1565b611bae565b604051610786919061331f565b60405180910390f35b34801561079b57600080fd5b506107b660048036038101906107b19190612ba4565b611c42565b6040516107c3919061353c565b60405180910390f35b3480156107d857600080fd5b506107e1611c5a565b6040516107ee919061353c565b60405180910390f35b34801561080357600080fd5b5061080c611c60565b604051610819919061353c565b60405180910390f35b34801561082e57600080fd5b5061084960048036038101906108449190612ba4565b611c66565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108a657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108ec9061380c565b80601f01602080910402602001604051908101604052809291908181526020018280546109189061380c565b80156109655780601f1061093a57610100808354040283529160200191610965565b820191906000526020600020905b81548152906001019060200180831161094857829003601f168201915b5050505050905090565b600061097a82611d5e565b6109b0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109f682611dbd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a5e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a7d611e8b565b73ffffffffffffffffffffffffffffffffffffffff1614610ae057610aa981610aa4611e8b565b611bae565b610adf576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b9a611e93565b73ffffffffffffffffffffffffffffffffffffffff16610bb861134f565b73ffffffffffffffffffffffffffffffffffffffff1614610c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c059061343c565b60405180910390fd5b80600e8190555050565b610c20611e93565b73ffffffffffffffffffffffffffffffffffffffff16610c3e61134f565b73ffffffffffffffffffffffffffffffffffffffff1614610c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8b9061343c565b60405180910390fd5b80600f8190555050565b6000610ca8611e9b565b6001546000540303905090565b610cbd611e93565b73ffffffffffffffffffffffffffffffffffffffff16610cdb61134f565b73ffffffffffffffffffffffffffffffffffffffff1614610d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d289061343c565b60405180910390fd5b80600d8190555050565b60116020528060005260406000206000915090505481565b601060009054906101000a900460ff1681565b610d71838383611ea0565b505050565b601060009054906101000a900460ff16610dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbc906133fc565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3e9061337c565b60405180910390fd5b600b54600e54610e55610c9e565b610e5f9190613641565b1115610ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e979061349c565b60405180910390fd5b600f54600e54601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f309190613641565b610f3a9190613641565b1115610f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f72906134dc565b60405180910390fd5b600e54601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610fcd33600e5461224a565b565b610fd7611e93565b73ffffffffffffffffffffffffffffffffffffffff16610ff561134f565b73ffffffffffffffffffffffffffffffffffffffff161461104b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110429061343c565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b611070611e93565b73ffffffffffffffffffffffffffffffffffffffff1661108e61134f565b73ffffffffffffffffffffffffffffffffffffffff16146110e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110db9061343c565b60405180910390fd5b6002600954141561112a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611121906134fc565b60405180910390fd5b600260098190555061113c3347612268565b6001600981905550565b61116183838360405180602001604052806000815250611a25565b505050565b61116e611e93565b73ffffffffffffffffffffffffffffffffffffffff1661118c61134f565b73ffffffffffffffffffffffffffffffffffffffff16146111e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d99061343c565b60405180910390fd5b80600a90805190602001906111f89291906129b8565b5050565b600061120782611dbd565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611276576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112cf611e93565b73ffffffffffffffffffffffffffffffffffffffff166112ed61134f565b73ffffffffffffffffffffffffffffffffffffffff1614611343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133a9061343c565b60405180910390fd5b61134d600061235c565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611381611e93565b73ffffffffffffffffffffffffffffffffffffffff1661139f61134f565b73ffffffffffffffffffffffffffffffffffffffff16146113f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ec9061343c565b60405180910390fd5b60008211611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f906134bc565b60405180910390fd5b600b5482611444610c9e565b61144e9190613641565b111561148f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114869061341c565b60405180910390fd5b611499818361224a565b5050565b6060600380546114ac9061380c565b80601f01602080910402602001604051908101604052809291908181526020018280546114d89061380c565b80156115255780601f106114fa57610100808354040283529160200191611525565b820191906000526020600020905b81548152906001019060200180831161150857829003601f168201915b5050505050905090565b611537611e93565b73ffffffffffffffffffffffffffffffffffffffff1661155561134f565b73ffffffffffffffffffffffffffffffffffffffff16146115ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a29061343c565b60405180910390fd5b80600c8190555050565b600d5481565b601060009054906101000a900460ff1661160a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611601906133fc565b60405180910390fd5b600b5481611616610c9e565b6116209190613641565b1115611661576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116589061349c565b60405180910390fd5b600081116116a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169b9061335c565b60405180910390fd5b600f5481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117329190613641565b61173c9190613641565b111561177d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611774906134dc565b60405180910390fd5b600c548111156117c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b99061347c565b60405180910390fd5b600d54816117d091906136c8565b341015611812576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118099061351c565b60405180910390fd5b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461185d9190613641565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506118aa338261224a565b50565b6118b5611e8b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561191a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611927611e8b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119d4611e8b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a19919061331f565b60405180910390a35050565b611a30848484611ea0565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a9257611a5b84848484612422565b611a91576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611aa382611d5e565b611ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad99061345c565b60405180910390fd5b600a611aed83612582565b604051602001611afe929190613269565b6040516020818303038152906040529050919050565b600a8054611b219061380c565b80601f0160208091040260200160405190810160405280929190818152602001828054611b4d9061380c565b8015611b9a5780601f10611b6f57610100808354040283529160200191611b9a565b820191906000526020600020905b815481529060010190602001808311611b7d57829003601f168201915b505050505081565b600b5481565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60126020528060005260406000206000915090505481565b600e5481565b600c5481565b611c6e611e93565b73ffffffffffffffffffffffffffffffffffffffff16611c8c61134f565b73ffffffffffffffffffffffffffffffffffffffff1614611ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd99061343c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d499061339c565b60405180910390fd5b611d5b8161235c565b50565b600081611d69611e9b565b11158015611d78575060005482105b8015611db6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611dcc611e9b565b11611e5457600054811015611e535760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611e51575b6000811415611e47576004600083600190039350838152602001908152602001600020549050611e1c565b8092505050611e86565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b600090565b6000611eab82611dbd565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611f12576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611f33611e8b565b73ffffffffffffffffffffffffffffffffffffffff161480611f625750611f6185611f5c611e8b565b611bae565b5b80611fa75750611f70611e8b565b73ffffffffffffffffffffffffffffffffffffffff16611f8f8461096f565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611fe0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612047576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61205485858560016126e3565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b612151866126e9565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831614156121db5760006001840190506000600460008381526020019081526020016000205414156121d95760005481146121d8578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461224385858560016126f3565b5050505050565b6122648282604051806020016040528060008152506126f9565b5050565b804710156122ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a2906133dc565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516122d1906132a3565b60006040518083038185875af1925050503d806000811461230e576040519150601f19603f3d011682016040523d82523d6000602084013e612313565b606091505b5050905080612357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234e906133bc565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612448611e8b565b8786866040518563ffffffff1660e01b815260040161246a94939291906132d3565b602060405180830381600087803b15801561248457600080fd5b505af19250505080156124b557506040513d601f19601f820116820180604052508101906124b29190612dc1565b60015b61252f573d80600081146124e5576040519150601f19603f3d011682016040523d82523d6000602084013e6124ea565b606091505b50600081511415612527576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156125ca576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126de565b600082905060005b600082146125fc5780806125e59061386f565b915050600a826125f59190613697565b91506125d2565b60008167ffffffffffffffff811115612618576126176139a5565b5b6040519080825280601f01601f19166020018201604052801561264a5781602001600182028036833780820191505090505b5090505b600085146126d7576001826126639190613722565b9150600a8561267291906138b8565b603061267e9190613641565b60f81b81838151811061269457612693613976565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126d09190613697565b945061264e565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612766576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156127a1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127ae60008583866126e3565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612813600185146129ae565b901b60a042901b612823866126e9565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612927575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128d76000878480600101955087612422565b61290d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061286857826000541461292257600080fd5b612992565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612928575b8160008190555050506129a860008583866126f3565b50505050565b6000819050919050565b8280546129c49061380c565b90600052602060002090601f0160209004810192826129e65760008555612a2d565b82601f106129ff57805160ff1916838001178555612a2d565b82800160010185558215612a2d579182015b82811115612a2c578251825591602001919060010190612a11565b5b509050612a3a9190612a3e565b5090565b5b80821115612a57576000816000905550600101612a3f565b5090565b6000612a6e612a698461357c565b613557565b905082815260208101848484011115612a8a57612a896139d9565b5b612a958482856137ca565b509392505050565b6000612ab0612aab846135ad565b613557565b905082815260208101848484011115612acc57612acb6139d9565b5b612ad78482856137ca565b509392505050565b600081359050612aee81613d27565b92915050565b600081359050612b0381613d3e565b92915050565b600081359050612b1881613d55565b92915050565b600081519050612b2d81613d55565b92915050565b600082601f830112612b4857612b476139d4565b5b8135612b58848260208601612a5b565b91505092915050565b600082601f830112612b7657612b756139d4565b5b8135612b86848260208601612a9d565b91505092915050565b600081359050612b9e81613d6c565b92915050565b600060208284031215612bba57612bb96139e3565b5b6000612bc884828501612adf565b91505092915050565b60008060408385031215612be857612be76139e3565b5b6000612bf685828601612adf565b9250506020612c0785828601612adf565b9150509250929050565b600080600060608486031215612c2a57612c296139e3565b5b6000612c3886828701612adf565b9350506020612c4986828701612adf565b9250506040612c5a86828701612b8f565b9150509250925092565b60008060008060808587031215612c7e57612c7d6139e3565b5b6000612c8c87828801612adf565b9450506020612c9d87828801612adf565b9350506040612cae87828801612b8f565b925050606085013567ffffffffffffffff811115612ccf57612cce6139de565b5b612cdb87828801612b33565b91505092959194509250565b60008060408385031215612cfe57612cfd6139e3565b5b6000612d0c85828601612adf565b9250506020612d1d85828601612af4565b9150509250929050565b60008060408385031215612d3e57612d3d6139e3565b5b6000612d4c85828601612adf565b9250506020612d5d85828601612b8f565b9150509250929050565b600060208284031215612d7d57612d7c6139e3565b5b6000612d8b84828501612af4565b91505092915050565b600060208284031215612daa57612da96139e3565b5b6000612db884828501612b09565b91505092915050565b600060208284031215612dd757612dd66139e3565b5b6000612de584828501612b1e565b91505092915050565b600060208284031215612e0457612e036139e3565b5b600082013567ffffffffffffffff811115612e2257612e216139de565b5b612e2e84828501612b61565b91505092915050565b600060208284031215612e4d57612e4c6139e3565b5b6000612e5b84828501612b8f565b91505092915050565b60008060408385031215612e7b57612e7a6139e3565b5b6000612e8985828601612b8f565b9250506020612e9a85828601612adf565b9150509250929050565b612ead81613756565b82525050565b612ebc81613768565b82525050565b6000612ecd826135f3565b612ed78185613609565b9350612ee78185602086016137d9565b612ef0816139e8565b840191505092915050565b6000612f06826135fe565b612f108185613625565b9350612f208185602086016137d9565b612f29816139e8565b840191505092915050565b6000612f3f826135fe565b612f498185613636565b9350612f598185602086016137d9565b80840191505092915050565b60008154612f728161380c565b612f7c8186613636565b94506001821660008114612f975760018114612fa857612fdb565b60ff19831686528186019350612fdb565b612fb1856135de565b60005b83811015612fd357815481890152600182019150602081019050612fb4565b838801955050505b50505092915050565b6000612ff1600383613625565b9150612ffc826139f9565b602082019050919050565b6000613014601683613625565b915061301f82613a22565b602082019050919050565b6000613037602683613625565b915061304282613a4b565b604082019050919050565b600061305a603a83613625565b915061306582613a9a565b604082019050919050565b600061307d601d83613625565b915061308882613ae9565b602082019050919050565b60006130a0601383613625565b91506130ab82613b12565b602082019050919050565b60006130c3601783613625565b91506130ce82613b3b565b602082019050919050565b60006130e6600583613636565b91506130f182613b64565b600582019050919050565b6000613109602083613625565b915061311482613b8d565b602082019050919050565b600061312c602f83613625565b915061313782613bb6565b604082019050919050565b600061314f601b83613625565b915061315a82613c05565b602082019050919050565b600061317260008361361a565b915061317d82613c2e565b600082019050919050565b6000613195600883613625565b91506131a082613c31565b602082019050919050565b60006131b8601383613625565b91506131c382613c5a565b602082019050919050565b60006131db601683613625565b91506131e682613c83565b602082019050919050565b60006131fe601f83613625565b915061320982613cac565b602082019050919050565b6000613221601383613625565b915061322c82613cd5565b602082019050919050565b6000613244600183613636565b915061324f82613cfe565b600182019050919050565b613263816137c0565b82525050565b60006132758285612f65565b915061328082613237565b915061328c8284612f34565b9150613297826130d9565b91508190509392505050565b60006132ae82613165565b9150819050919050565b60006020820190506132cd6000830184612ea4565b92915050565b60006080820190506132e86000830187612ea4565b6132f56020830186612ea4565b613302604083018561325a565b81810360608301526133148184612ec2565b905095945050505050565b60006020820190506133346000830184612eb3565b92915050565b600060208201905081810360008301526133548184612efb565b905092915050565b6000602082019050818103600083015261337581612fe4565b9050919050565b6000602082019050818103600083015261339581613007565b9050919050565b600060208201905081810360008301526133b58161302a565b9050919050565b600060208201905081810360008301526133d58161304d565b9050919050565b600060208201905081810360008301526133f581613070565b9050919050565b6000602082019050818103600083015261341581613093565b9050919050565b60006020820190508181036000830152613435816130b6565b9050919050565b60006020820190508181036000830152613455816130fc565b9050919050565b600060208201905081810360008301526134758161311f565b9050919050565b6000602082019050818103600083015261349581613142565b9050919050565b600060208201905081810360008301526134b581613188565b9050919050565b600060208201905081810360008301526134d5816131ab565b9050919050565b600060208201905081810360008301526134f5816131ce565b9050919050565b60006020820190508181036000830152613515816131f1565b9050919050565b6000602082019050818103600083015261353581613214565b9050919050565b6000602082019050613551600083018461325a565b92915050565b6000613561613572565b905061356d828261383e565b919050565b6000604051905090565b600067ffffffffffffffff821115613597576135966139a5565b5b6135a0826139e8565b9050602081019050919050565b600067ffffffffffffffff8211156135c8576135c76139a5565b5b6135d1826139e8565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061364c826137c0565b9150613657836137c0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561368c5761368b6138e9565b5b828201905092915050565b60006136a2826137c0565b91506136ad836137c0565b9250826136bd576136bc613918565b5b828204905092915050565b60006136d3826137c0565b91506136de836137c0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613717576137166138e9565b5b828202905092915050565b600061372d826137c0565b9150613738836137c0565b92508282101561374b5761374a6138e9565b5b828203905092915050565b6000613761826137a0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156137f75780820151818401526020810190506137dc565b83811115613806576000848401525b50505050565b6000600282049050600182168061382457607f821691505b6020821081141561383857613837613947565b5b50919050565b613847826139e8565b810181811067ffffffffffffffff82111715613866576138656139a5565b5b80604052505050565b600061387a826137c0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138ad576138ac6138e9565b5b600182019050919050565b60006138c3826137c0565b91506138ce836137c0565b9250826138de576138dd613918565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5754460000000000000000000000000000000000000000000000000000000000600082015250565b7f446f6e2774206265206120677265656479206675636b00000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4e6f207075626c69632073616c65207965742e00000000000000000000000000600082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f45786365656473206d617820706572207472616e73616374696f6e0000000000600082015250565b50565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f45786365656473206d6178207065722077616c6c657400000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e636f7272656374204554482076616c756500000000000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b613d3081613756565b8114613d3b57600080fd5b50565b613d4781613768565b8114613d5257600080fd5b50565b613d5e81613774565b8114613d6957600080fd5b50565b613d75816137c0565b8114613d8057600080fd5b5056fea264697066735822122078e88642ab698e893633ad45b6953b8b7115fbd213772cddbd05063791fbf59c64736f6c63430008070033

Deployed Bytecode Sourcemap

55260:3393:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29915:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34928:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36996:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36456:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58153:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58521:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28969:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58287:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55719:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55676:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37882:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56528:447;;;;;;;;;;;;;:::i;:::-;;57999:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57392:142;;;;;;;;;;;;;:::i;:::-;;38123:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56981:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34717:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30594:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16025:103;;;;;;;;;;;;;:::i;:::-;;15374:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57095:291;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35097:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58396:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55558:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55897:623;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37272:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38379:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57540:312;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55394:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55487:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55638:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37651:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55765:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55600:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55524:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16283:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29915:615;30000:4;30315:10;30300:25;;:11;:25;;;;:102;;;;30392:10;30377:25;;:11;:25;;;;30300:102;:179;;;;30469:10;30454:25;;:11;:25;;;;30300:179;30280:199;;29915:615;;;:::o;34928:100::-;34982:13;35015:5;35008:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34928:100;:::o;36996:204::-;37064:7;37089:16;37097:7;37089;:16::i;:::-;37084:64;;37114:34;;;;;;;;;;;;;;37084:64;37168:15;:24;37184:7;37168:24;;;;;;;;;;;;;;;;;;;;;37161:31;;36996:204;;;:::o;36456:474::-;36529:13;36561:27;36580:7;36561:18;:27::i;:::-;36529:61;;36611:5;36605:11;;:2;:11;;;36601:48;;;36625:24;;;;;;;;;;;;;;36601:48;36689:5;36666:28;;:19;:17;:19::i;:::-;:28;;;36662:175;;36714:44;36731:5;36738:19;:17;:19::i;:::-;36714:16;:44::i;:::-;36709:128;;36786:35;;;;;;;;;;;;;;36709:128;36662:175;36876:2;36849:15;:24;36865:7;36849:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36914:7;36910:2;36894:28;;36903:5;36894:28;;;;;;;;;;;;36518:412;36456:474;;:::o;58153:128::-;15605:12;:10;:12::i;:::-;15594:23;;:7;:5;:7::i;:::-;:23;;;15586:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58262:13:::1;58246;:29;;;;58153:128:::0;:::o;58521:127::-;15605:12;:10;:12::i;:::-;15594:23;;:7;:5;:7::i;:::-;:23;;;15586:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58629:13:::1;58614:12;:28;;;;58521:127:::0;:::o;28969:315::-;29022:7;29250:15;:13;:15::i;:::-;29235:12;;29219:13;;:28;:46;29212:53;;28969:315;:::o;58287:103::-;15605:12;:10;:12::i;:::-;15594:23;;:7;:5;:7::i;:::-;:23;;;15586:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58378:6:::1;58370:5;:14;;;;58287:103:::0;:::o;55719:41::-;;;;;;;;;;;;;;;;;:::o;55676:38::-;;;;;;;;;;;;;:::o;37882:170::-;38016:28;38026:4;38032:2;38036:7;38016:9;:28::i;:::-;37882:170;;;:::o;56528:447::-;56582:18;;;;;;;;;;;56574:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;56665:1;56639:10;:22;56650:10;56639:22;;;;;;;;;;;;;;;;:27;56631:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;56741:9;;56724:13;;56708;:11;:13::i;:::-;:29;;;;:::i;:::-;:42;;56700:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;56842:12;;56824:13;;56799:10;:22;56810:10;56799:22;;;;;;;;;;;;;;;;56778:6;:18;56785:10;56778:18;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;:59;;;;:::i;:::-;56777:77;;56769:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;56913:13;;56888:10;:22;56899:10;56888:22;;;;;;;;;;;;;;;:38;;;;56933:36;56943:10;56955:13;;56933:9;:36::i;:::-;56528:447::o;57999:148::-;15605:12;:10;:12::i;:::-;15594:23;;:7;:5;:7::i;:::-;:23;;;15586:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58122:19:::1;58101:18;;:40;;;;;;;;;;;;;;;;;;57999:148:::0;:::o;57392:142::-;15605:12;:10;:12::i;:::-;15594:23;;:7;:5;:7::i;:::-;:23;;;15586:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12472:1:::1;13070:7;;:19;;13062:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;12472:1;13203:7;:18;;;;57467:61:::2;57493:10;57506:21;57467:17;:61::i;:::-;12428:1:::1;13382:7;:22;;;;57392:142::o:0;38123:185::-;38261:39;38278:4;38284:2;38288:7;38261:39;;;;;;;;;;;;:16;:39::i;:::-;38123:185;;;:::o;56981:108::-;15605:12;:10;:12::i;:::-;15594:23;;:7;:5;:7::i;:::-;:23;;;15586:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57076:7:::1;57061:12;:22;;;;;;;;;;;;:::i;:::-;;56981:108:::0;:::o;34717:144::-;34781:7;34824:27;34843:7;34824:18;:27::i;:::-;34801:52;;34717:144;;;:::o;30594:224::-;30658:7;30699:1;30682:19;;:5;:19;;;30678:60;;;30710:28;;;;;;;;;;;;;;30678:60;25933:13;30756:18;:25;30775:5;30756:25;;;;;;;;;;;;;;;;:54;30749:61;;30594:224;;;:::o;16025:103::-;15605:12;:10;:12::i;:::-;15594:23;;:7;:5;:7::i;:::-;:23;;;15586:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16090:30:::1;16117:1;16090:18;:30::i;:::-;16025:103::o:0;15374:87::-;15420:7;15447:6;;;;;;;;;;;15440:13;;15374:87;:::o;57095:291::-;15605:12;:10;:12::i;:::-;15594:23;;:7;:5;:7::i;:::-;:23;;;15586:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57209:1:::1;57198:8;:12;57182:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;57298:9;;57286:8;57270:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;57254:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;57355:25;57365:4;57371:8;57355:9;:25::i;:::-;57095:291:::0;;:::o;35097:104::-;35153:13;35186:7;35179:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35097:104;:::o;58396:119::-;15605:12;:10;:12::i;:::-;15594:23;;:7;:5;:7::i;:::-;:23;;;15586:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58503:6:::1;58492:8;:17;;;;58396:119:::0;:::o;55558:37::-;;;;:::o;55897:623::-;55984:18;;;;;;;;;;;55976:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;56075:9;;56057:14;56041:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:43;;56033:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;56128:1;56111:14;:18;56103:33;;;;;;;;;;;;:::i;:::-;;;;;;;;;56217:12;;56198:14;56173:10;:22;56184:10;56173:22;;;;;;;;;;;;;;;;56152:6;:18;56159:10;56152:18;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;:60;;;;:::i;:::-;56151:78;;56143:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;56289:8;;56271:14;:26;;56263:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;56374:5;;56357:14;:22;;;;:::i;:::-;56344:9;:35;;56336:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;56456:14;56435:6;:18;56442:10;56435:18;;;;;;;;;;;;;;;;:35;;;;:::i;:::-;56414:6;:18;56421:10;56414:18;;;;;;;;;;;;;;;:56;;;;56477:37;56487:10;56499:14;56477:9;:37::i;:::-;55897:623;:::o;37272:308::-;37383:19;:17;:19::i;:::-;37371:31;;:8;:31;;;37367:61;;;37411:17;;;;;;;;;;;;;;37367:61;37493:8;37441:18;:39;37460:19;:17;:19::i;:::-;37441:39;;;;;;;;;;;;;;;:49;37481:8;37441:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;37553:8;37517:55;;37532:19;:17;:19::i;:::-;37517:55;;;37563:8;37517:55;;;;;;:::i;:::-;;;;;;;;37272:308;;:::o;38379:396::-;38546:28;38556:4;38562:2;38566:7;38546:9;:28::i;:::-;38607:1;38589:2;:14;;;:19;38585:183;;38628:56;38659:4;38665:2;38669:7;38678:5;38628:30;:56::i;:::-;38623:145;;38712:40;;;;;;;;;;;;;;38623:145;38585:183;38379:396;;;;:::o;57540:312::-;57636:13;57677:17;57685:8;57677:7;:17::i;:::-;57661:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;57797:12;57816:19;:8;:17;:19::i;:::-;57780:65;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57766:80;;57540:312;;;:::o;55394:86::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55487:32::-;;;;:::o;55638:33::-;;;;:::o;37651:164::-;37748:4;37772:18;:25;37791:5;37772:25;;;;;;;;;;;;;;;:35;37798:8;37772:35;;;;;;;;;;;;;;;;;;;;;;;;;37765:42;;37651:164;;;;:::o;55765:45::-;;;;;;;;;;;;;;;;;:::o;55600:33::-;;;;:::o;55524:29::-;;;;:::o;16283:201::-;15605:12;:10;:12::i;:::-;15594:23;;:7;:5;:7::i;:::-;:23;;;15586:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16392:1:::1;16372:22;;:8;:22;;;;16364:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;16448:28;16467:8;16448:18;:28::i;:::-;16283:201:::0;:::o;39030:273::-;39087:4;39143:7;39124:15;:13;:15::i;:::-;:26;;:66;;;;;39177:13;;39167:7;:23;39124:66;:152;;;;;39275:1;26703:8;39228:17;:26;39246:7;39228:26;;;;;;;;;;;;:43;:48;39124:152;39104:172;;39030:273;;;:::o;32232:1129::-;32299:7;32319:12;32334:7;32319:22;;32402:4;32383:15;:13;:15::i;:::-;:23;32379:915;;32436:13;;32429:4;:20;32425:869;;;32474:14;32491:17;:23;32509:4;32491:23;;;;;;;;;;;;32474:40;;32607:1;26703:8;32580:6;:23;:28;32576:699;;;33099:113;33116:1;33106:6;:11;33099:113;;;33159:17;:25;33177:6;;;;;;;33159:25;;;;;;;;;;;;33150:34;;33099:113;;;33245:6;33238:13;;;;;;32576:699;32451:843;32425:869;32379:915;33322:31;;;;;;;;;;;;;;32232:1129;;;;:::o;53012:105::-;53072:7;53099:10;53092:17;;53012:105;:::o;14098:98::-;14151:7;14178:10;14171:17;;14098:98;:::o;28492:92::-;28548:7;28492:92;:::o;44269:2515::-;44384:27;44414;44433:7;44414:18;:27::i;:::-;44384:57;;44499:4;44458:45;;44474:19;44458:45;;;44454:86;;44512:28;;;;;;;;;;;;;;44454:86;44553:22;44602:4;44579:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;44623:43;44640:4;44646:19;:17;:19::i;:::-;44623:16;:43::i;:::-;44579:87;:147;;;;44707:19;:17;:19::i;:::-;44683:43;;:20;44695:7;44683:11;:20::i;:::-;:43;;;44579:147;44553:174;;44745:17;44740:66;;44771:35;;;;;;;;;;;;;;44740:66;44835:1;44821:16;;:2;:16;;;44817:52;;;44846:23;;;;;;;;;;;;;;44817:52;44882:43;44904:4;44910:2;44914:7;44923:1;44882:21;:43::i;:::-;44998:15;:24;45014:7;44998:24;;;;;;;;;;;;44991:31;;;;;;;;;;;45390:18;:24;45409:4;45390:24;;;;;;;;;;;;;;;;45388:26;;;;;;;;;;;;45459:18;:22;45478:2;45459:22;;;;;;;;;;;;;;;;45457:24;;;;;;;;;;;26985:8;26587:3;45840:15;:41;;45798:21;45816:2;45798:17;:21::i;:::-;:84;:128;45752:17;:26;45770:7;45752:26;;;;;;;;;;;:174;;;;46096:1;26985:8;46046:19;:46;:51;46042:626;;;46118:19;46150:1;46140:7;:11;46118:33;;46307:1;46273:17;:30;46291:11;46273:30;;;;;;;;;;;;:35;46269:384;;;46411:13;;46396:11;:28;46392:242;;46591:19;46558:17;:30;46576:11;46558:30;;;;;;;;;;;:52;;;;46392:242;46269:384;46099:569;46042:626;46715:7;46711:2;46696:27;;46705:4;46696:27;;;;;;;;;;;;46734:42;46755:4;46761:2;46765:7;46774:1;46734:20;:42::i;:::-;44373:2411;;44269:2515;;;:::o;39387:104::-;39456:27;39466:2;39470:8;39456:27;;;;;;;;;;;;:9;:27::i;:::-;39387:104;;:::o;4651:317::-;4766:6;4741:21;:31;;4733:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4820:12;4838:9;:14;;4860:6;4838:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4819:52;;;4890:7;4882:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;4722:246;4651:317;;:::o;16644:191::-;16718:16;16737:6;;;;;;;;;;;16718:25;;16763:8;16754:6;;:17;;;;;;;;;;;;;;;;;;16818:8;16787:40;;16808:8;16787:40;;;;;;;;;;;;16707:128;16644:191;:::o;50481:716::-;50644:4;50690:2;50665:45;;;50711:19;:17;:19::i;:::-;50732:4;50738:7;50747:5;50665:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;50661:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50965:1;50948:6;:13;:18;50944:235;;;50994:40;;;;;;;;;;;;;;50944:235;51137:6;51131:13;51122:6;51118:2;51114:15;51107:38;50661:529;50834:54;;;50824:64;;;:6;:64;;;;50817:71;;;50481:716;;;;;;:::o;398:723::-;454:13;684:1;675:5;:10;671:53;;;702:10;;;;;;;;;;;;;;;;;;;;;671:53;734:12;749:5;734:20;;765:14;790:78;805:1;797:4;:9;790:78;;823:8;;;;;:::i;:::-;;;;854:2;846:10;;;;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;878:39;;928:154;944:1;935:5;:10;928:154;;972:1;962:11;;;;;:::i;:::-;;;1039:2;1031:5;:10;;;;:::i;:::-;1018:2;:24;;;;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1068:2;1059:11;;;;;:::i;:::-;;;928:154;;;1106:6;1092:21;;;;;398:723;;;;:::o;51845:159::-;;;;;:::o;36017:148::-;36081:14;36142:5;36132:15;;36017:148;;;:::o;52663:158::-;;;;;:::o;39864:2236::-;39987:20;40010:13;;39987:36;;40052:1;40038:16;;:2;:16;;;40034:48;;;40063:19;;;;;;;;;;;;;;40034:48;40109:1;40097:8;:13;40093:44;;;40119:18;;;;;;;;;;;;;;40093:44;40150:61;40180:1;40184:2;40188:12;40202:8;40150:21;:61::i;:::-;40754:1;26070:2;40725:1;:25;;40724:31;40712:8;:44;40686:18;:22;40705:2;40686:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;26850:3;41155:29;41182:1;41170:8;:13;41155:14;:29::i;:::-;:56;;26587:3;41092:15;:41;;41050:21;41068:2;41050:17;:21::i;:::-;:84;:162;40999:17;:31;41017:12;40999:31;;;;;;;;;;;:213;;;;41229:20;41252:12;41229:35;;41279:11;41308:8;41293:12;:23;41279:37;;41355:1;41337:2;:14;;;:19;41333:635;;41377:313;41433:12;41429:2;41408:38;;41425:1;41408:38;;;;;;;;;;;;41474:69;41513:1;41517:2;41521:14;;;;;;41537:5;41474:30;:69::i;:::-;41469:174;;41579:40;;;;;;;;;;;;;;41469:174;41685:3;41670:12;:18;41377:313;;41771:12;41754:13;;:29;41750:43;;41785:8;;;41750:43;41333:635;;;41834:119;41890:14;;;;;;41886:2;41865:40;;41882:1;41865:40;;;;;;;;;;;;41948:3;41933:12;:18;41834:119;;41333:635;41998:12;41982:13;:28;;;;40463:1559;;42032:60;42061:1;42065:2;42069:12;42083:8;42032:20;:60::i;:::-;39976:2124;39864:2236;;;:::o;36252:142::-;36310:14;36371:5;36361:15;;36252:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:118::-;8054:24;8072:5;8054:24;:::i;:::-;8049:3;8042:37;7967:118;;:::o;8091:109::-;8172:21;8187:5;8172:21;:::i;:::-;8167:3;8160:34;8091:109;;:::o;8206:360::-;8292:3;8320:38;8352:5;8320:38;:::i;:::-;8374:70;8437:6;8432:3;8374:70;:::i;:::-;8367:77;;8453:52;8498:6;8493:3;8486:4;8479:5;8475:16;8453:52;:::i;:::-;8530:29;8552:6;8530:29;:::i;:::-;8525:3;8521:39;8514:46;;8296:270;8206:360;;;;:::o;8572:364::-;8660:3;8688:39;8721:5;8688:39;:::i;:::-;8743:71;8807:6;8802:3;8743:71;:::i;:::-;8736:78;;8823:52;8868:6;8863:3;8856:4;8849:5;8845:16;8823:52;:::i;:::-;8900:29;8922:6;8900:29;:::i;:::-;8895:3;8891:39;8884:46;;8664:272;8572:364;;;;:::o;8942:377::-;9048:3;9076:39;9109:5;9076:39;:::i;:::-;9131:89;9213:6;9208:3;9131:89;:::i;:::-;9124:96;;9229:52;9274:6;9269:3;9262:4;9255:5;9251:16;9229:52;:::i;:::-;9306:6;9301:3;9297:16;9290:23;;9052:267;8942:377;;;;:::o;9349:845::-;9452:3;9489:5;9483:12;9518:36;9544:9;9518:36;:::i;:::-;9570:89;9652:6;9647:3;9570:89;:::i;:::-;9563:96;;9690:1;9679:9;9675:17;9706:1;9701:137;;;;9852:1;9847:341;;;;9668:520;;9701:137;9785:4;9781:9;9770;9766:25;9761:3;9754:38;9821:6;9816:3;9812:16;9805:23;;9701:137;;9847:341;9914:38;9946:5;9914:38;:::i;:::-;9974:1;9988:154;10002:6;9999:1;9996:13;9988:154;;;10076:7;10070:14;10066:1;10061:3;10057:11;10050:35;10126:1;10117:7;10113:15;10102:26;;10024:4;10021:1;10017:12;10012:17;;9988:154;;;10171:6;10166:3;10162:16;10155:23;;9854:334;;9668:520;;9456:738;;9349:845;;;;:::o;10200:365::-;10342:3;10363:66;10427:1;10422:3;10363:66;:::i;:::-;10356:73;;10438:93;10527:3;10438:93;:::i;:::-;10556:2;10551:3;10547:12;10540:19;;10200:365;;;:::o;10571:366::-;10713:3;10734:67;10798:2;10793:3;10734:67;:::i;:::-;10727:74;;10810:93;10899:3;10810:93;:::i;:::-;10928:2;10923:3;10919:12;10912:19;;10571:366;;;:::o;10943:::-;11085:3;11106:67;11170:2;11165:3;11106:67;:::i;:::-;11099:74;;11182:93;11271:3;11182:93;:::i;:::-;11300:2;11295:3;11291:12;11284:19;;10943:366;;;:::o;11315:::-;11457:3;11478:67;11542:2;11537:3;11478:67;:::i;:::-;11471:74;;11554:93;11643:3;11554:93;:::i;:::-;11672:2;11667:3;11663:12;11656:19;;11315:366;;;:::o;11687:::-;11829:3;11850:67;11914:2;11909:3;11850:67;:::i;:::-;11843:74;;11926:93;12015:3;11926:93;:::i;:::-;12044:2;12039:3;12035:12;12028:19;;11687:366;;;:::o;12059:::-;12201:3;12222:67;12286:2;12281:3;12222:67;:::i;:::-;12215:74;;12298:93;12387:3;12298:93;:::i;:::-;12416:2;12411:3;12407:12;12400:19;;12059:366;;;:::o;12431:::-;12573:3;12594:67;12658:2;12653:3;12594:67;:::i;:::-;12587:74;;12670:93;12759:3;12670:93;:::i;:::-;12788:2;12783:3;12779:12;12772:19;;12431:366;;;:::o;12803:400::-;12963:3;12984:84;13066:1;13061:3;12984:84;:::i;:::-;12977:91;;13077:93;13166:3;13077:93;:::i;:::-;13195:1;13190:3;13186:11;13179:18;;12803:400;;;:::o;13209:366::-;13351:3;13372:67;13436:2;13431:3;13372:67;:::i;:::-;13365:74;;13448:93;13537:3;13448:93;:::i;:::-;13566:2;13561:3;13557:12;13550:19;;13209:366;;;:::o;13581:::-;13723:3;13744:67;13808:2;13803:3;13744:67;:::i;:::-;13737:74;;13820:93;13909:3;13820:93;:::i;:::-;13938:2;13933:3;13929:12;13922:19;;13581:366;;;:::o;13953:::-;14095:3;14116:67;14180:2;14175:3;14116:67;:::i;:::-;14109:74;;14192:93;14281:3;14192:93;:::i;:::-;14310:2;14305:3;14301:12;14294:19;;13953:366;;;:::o;14325:398::-;14484:3;14505:83;14586:1;14581:3;14505:83;:::i;:::-;14498:90;;14597:93;14686:3;14597:93;:::i;:::-;14715:1;14710:3;14706:11;14699:18;;14325:398;;;:::o;14729:365::-;14871:3;14892:66;14956:1;14951:3;14892:66;:::i;:::-;14885:73;;14967:93;15056:3;14967:93;:::i;:::-;15085:2;15080:3;15076:12;15069:19;;14729:365;;;:::o;15100:366::-;15242:3;15263:67;15327:2;15322:3;15263:67;:::i;:::-;15256:74;;15339:93;15428:3;15339:93;:::i;:::-;15457:2;15452:3;15448:12;15441:19;;15100:366;;;:::o;15472:::-;15614:3;15635:67;15699:2;15694:3;15635:67;:::i;:::-;15628:74;;15711:93;15800:3;15711:93;:::i;:::-;15829:2;15824:3;15820:12;15813:19;;15472:366;;;:::o;15844:::-;15986:3;16007:67;16071:2;16066:3;16007:67;:::i;:::-;16000:74;;16083:93;16172:3;16083:93;:::i;:::-;16201:2;16196:3;16192:12;16185:19;;15844:366;;;:::o;16216:::-;16358:3;16379:67;16443:2;16438:3;16379:67;:::i;:::-;16372:74;;16455:93;16544:3;16455:93;:::i;:::-;16573:2;16568:3;16564:12;16557:19;;16216:366;;;:::o;16588:400::-;16748:3;16769:84;16851:1;16846:3;16769:84;:::i;:::-;16762:91;;16862:93;16951:3;16862:93;:::i;:::-;16980:1;16975:3;16971:11;16964:18;;16588:400;;;:::o;16994:118::-;17081:24;17099:5;17081:24;:::i;:::-;17076:3;17069:37;16994:118;;:::o;17118:961::-;17497:3;17519:92;17607:3;17598:6;17519:92;:::i;:::-;17512:99;;17628:148;17772:3;17628:148;:::i;:::-;17621:155;;17793:95;17884:3;17875:6;17793:95;:::i;:::-;17786:102;;17905:148;18049:3;17905:148;:::i;:::-;17898:155;;18070:3;18063:10;;17118:961;;;;;:::o;18085:379::-;18269:3;18291:147;18434:3;18291:147;:::i;:::-;18284:154;;18455:3;18448:10;;18085:379;;;:::o;18470:222::-;18563:4;18601:2;18590:9;18586:18;18578:26;;18614:71;18682:1;18671:9;18667:17;18658:6;18614:71;:::i;:::-;18470:222;;;;:::o;18698:640::-;18893:4;18931:3;18920:9;18916:19;18908:27;;18945:71;19013:1;19002:9;18998:17;18989:6;18945:71;:::i;:::-;19026:72;19094:2;19083:9;19079:18;19070:6;19026:72;:::i;:::-;19108;19176:2;19165:9;19161:18;19152:6;19108:72;:::i;:::-;19227:9;19221:4;19217:20;19212:2;19201:9;19197:18;19190:48;19255:76;19326:4;19317:6;19255:76;:::i;:::-;19247:84;;18698:640;;;;;;;:::o;19344:210::-;19431:4;19469:2;19458:9;19454:18;19446:26;;19482:65;19544:1;19533:9;19529:17;19520:6;19482:65;:::i;:::-;19344:210;;;;:::o;19560:313::-;19673:4;19711:2;19700:9;19696:18;19688:26;;19760:9;19754:4;19750:20;19746:1;19735:9;19731:17;19724:47;19788:78;19861:4;19852:6;19788:78;:::i;:::-;19780:86;;19560:313;;;;:::o;19879:419::-;20045:4;20083:2;20072:9;20068:18;20060:26;;20132:9;20126:4;20122:20;20118:1;20107:9;20103:17;20096:47;20160:131;20286:4;20160:131;:::i;:::-;20152:139;;19879:419;;;:::o;20304:::-;20470:4;20508:2;20497:9;20493:18;20485:26;;20557:9;20551:4;20547:20;20543:1;20532:9;20528:17;20521:47;20585:131;20711:4;20585:131;:::i;:::-;20577:139;;20304:419;;;:::o;20729:::-;20895:4;20933:2;20922:9;20918:18;20910:26;;20982:9;20976:4;20972:20;20968:1;20957:9;20953:17;20946:47;21010:131;21136:4;21010:131;:::i;:::-;21002:139;;20729:419;;;:::o;21154:::-;21320:4;21358:2;21347:9;21343:18;21335:26;;21407:9;21401:4;21397:20;21393:1;21382:9;21378:17;21371:47;21435:131;21561:4;21435:131;:::i;:::-;21427:139;;21154:419;;;:::o;21579:::-;21745:4;21783:2;21772:9;21768:18;21760:26;;21832:9;21826:4;21822:20;21818:1;21807:9;21803:17;21796:47;21860:131;21986:4;21860:131;:::i;:::-;21852:139;;21579:419;;;:::o;22004:::-;22170:4;22208:2;22197:9;22193:18;22185:26;;22257:9;22251:4;22247:20;22243:1;22232:9;22228:17;22221:47;22285:131;22411:4;22285:131;:::i;:::-;22277:139;;22004:419;;;:::o;22429:::-;22595:4;22633:2;22622:9;22618:18;22610:26;;22682:9;22676:4;22672:20;22668:1;22657:9;22653:17;22646:47;22710:131;22836:4;22710:131;:::i;:::-;22702:139;;22429:419;;;:::o;22854:::-;23020:4;23058:2;23047:9;23043:18;23035:26;;23107:9;23101:4;23097:20;23093:1;23082:9;23078:17;23071:47;23135:131;23261:4;23135:131;:::i;:::-;23127:139;;22854:419;;;:::o;23279:::-;23445:4;23483:2;23472:9;23468:18;23460:26;;23532:9;23526:4;23522:20;23518:1;23507:9;23503:17;23496:47;23560:131;23686:4;23560:131;:::i;:::-;23552:139;;23279:419;;;:::o;23704:::-;23870:4;23908:2;23897:9;23893:18;23885:26;;23957:9;23951:4;23947:20;23943:1;23932:9;23928:17;23921:47;23985:131;24111:4;23985:131;:::i;:::-;23977:139;;23704:419;;;:::o;24129:::-;24295:4;24333:2;24322:9;24318:18;24310:26;;24382:9;24376:4;24372:20;24368:1;24357:9;24353:17;24346:47;24410:131;24536:4;24410:131;:::i;:::-;24402:139;;24129:419;;;:::o;24554:::-;24720:4;24758:2;24747:9;24743:18;24735:26;;24807:9;24801:4;24797:20;24793:1;24782:9;24778:17;24771:47;24835:131;24961:4;24835:131;:::i;:::-;24827:139;;24554:419;;;:::o;24979:::-;25145:4;25183:2;25172:9;25168:18;25160:26;;25232:9;25226:4;25222:20;25218:1;25207:9;25203:17;25196:47;25260:131;25386:4;25260:131;:::i;:::-;25252:139;;24979:419;;;:::o;25404:::-;25570:4;25608:2;25597:9;25593:18;25585:26;;25657:9;25651:4;25647:20;25643:1;25632:9;25628:17;25621:47;25685:131;25811:4;25685:131;:::i;:::-;25677:139;;25404:419;;;:::o;25829:::-;25995:4;26033:2;26022:9;26018:18;26010:26;;26082:9;26076:4;26072:20;26068:1;26057:9;26053:17;26046:47;26110:131;26236:4;26110:131;:::i;:::-;26102:139;;25829:419;;;:::o;26254:222::-;26347:4;26385:2;26374:9;26370:18;26362:26;;26398:71;26466:1;26455:9;26451:17;26442:6;26398:71;:::i;:::-;26254:222;;;;:::o;26482:129::-;26516:6;26543:20;;:::i;:::-;26533:30;;26572:33;26600:4;26592:6;26572:33;:::i;:::-;26482:129;;;:::o;26617:75::-;26650:6;26683:2;26677:9;26667:19;;26617:75;:::o;26698:307::-;26759:4;26849:18;26841:6;26838:30;26835:56;;;26871:18;;:::i;:::-;26835:56;26909:29;26931:6;26909:29;:::i;:::-;26901:37;;26993:4;26987;26983:15;26975:23;;26698:307;;;:::o;27011:308::-;27073:4;27163:18;27155:6;27152:30;27149:56;;;27185:18;;:::i;:::-;27149:56;27223:29;27245:6;27223:29;:::i;:::-;27215:37;;27307:4;27301;27297:15;27289:23;;27011:308;;;:::o;27325:141::-;27374:4;27397:3;27389:11;;27420:3;27417:1;27410:14;27454:4;27451:1;27441:18;27433:26;;27325:141;;;:::o;27472:98::-;27523:6;27557:5;27551:12;27541:22;;27472:98;;;:::o;27576:99::-;27628:6;27662:5;27656:12;27646:22;;27576:99;;;:::o;27681:168::-;27764:11;27798:6;27793:3;27786:19;27838:4;27833:3;27829:14;27814:29;;27681:168;;;;:::o;27855:147::-;27956:11;27993:3;27978:18;;27855:147;;;;:::o;28008:169::-;28092:11;28126:6;28121:3;28114:19;28166:4;28161:3;28157:14;28142:29;;28008:169;;;;:::o;28183:148::-;28285:11;28322:3;28307:18;;28183:148;;;;:::o;28337:305::-;28377:3;28396:20;28414:1;28396:20;:::i;:::-;28391:25;;28430:20;28448:1;28430:20;:::i;:::-;28425:25;;28584:1;28516:66;28512:74;28509:1;28506:81;28503:107;;;28590:18;;:::i;:::-;28503:107;28634:1;28631;28627:9;28620:16;;28337:305;;;;:::o;28648:185::-;28688:1;28705:20;28723:1;28705:20;:::i;:::-;28700:25;;28739:20;28757:1;28739:20;:::i;:::-;28734:25;;28778:1;28768:35;;28783:18;;:::i;:::-;28768:35;28825:1;28822;28818:9;28813:14;;28648:185;;;;:::o;28839:348::-;28879:7;28902:20;28920:1;28902:20;:::i;:::-;28897:25;;28936:20;28954:1;28936:20;:::i;:::-;28931:25;;29124:1;29056:66;29052:74;29049:1;29046:81;29041:1;29034:9;29027:17;29023:105;29020:131;;;29131:18;;:::i;:::-;29020:131;29179:1;29176;29172:9;29161:20;;28839:348;;;;:::o;29193:191::-;29233:4;29253:20;29271:1;29253:20;:::i;:::-;29248:25;;29287:20;29305:1;29287:20;:::i;:::-;29282:25;;29326:1;29323;29320:8;29317:34;;;29331:18;;:::i;:::-;29317:34;29376:1;29373;29369:9;29361:17;;29193:191;;;;:::o;29390:96::-;29427:7;29456:24;29474:5;29456:24;:::i;:::-;29445:35;;29390:96;;;:::o;29492:90::-;29526:7;29569:5;29562:13;29555:21;29544:32;;29492:90;;;:::o;29588:149::-;29624:7;29664:66;29657:5;29653:78;29642:89;;29588:149;;;:::o;29743:126::-;29780:7;29820:42;29813:5;29809:54;29798:65;;29743:126;;;:::o;29875:77::-;29912:7;29941:5;29930:16;;29875:77;;;:::o;29958:154::-;30042:6;30037:3;30032;30019:30;30104:1;30095:6;30090:3;30086:16;30079:27;29958:154;;;:::o;30118:307::-;30186:1;30196:113;30210:6;30207:1;30204:13;30196:113;;;30295:1;30290:3;30286:11;30280:18;30276:1;30271:3;30267:11;30260:39;30232:2;30229:1;30225:10;30220:15;;30196:113;;;30327:6;30324:1;30321:13;30318:101;;;30407:1;30398:6;30393:3;30389:16;30382:27;30318:101;30167:258;30118:307;;;:::o;30431:320::-;30475:6;30512:1;30506:4;30502:12;30492:22;;30559:1;30553:4;30549:12;30580:18;30570:81;;30636:4;30628:6;30624:17;30614:27;;30570:81;30698:2;30690:6;30687:14;30667:18;30664:38;30661:84;;;30717:18;;:::i;:::-;30661:84;30482:269;30431:320;;;:::o;30757:281::-;30840:27;30862:4;30840:27;:::i;:::-;30832:6;30828:40;30970:6;30958:10;30955:22;30934:18;30922:10;30919:34;30916:62;30913:88;;;30981:18;;:::i;:::-;30913:88;31021:10;31017:2;31010:22;30800:238;30757:281;;:::o;31044:233::-;31083:3;31106:24;31124:5;31106:24;:::i;:::-;31097:33;;31152:66;31145:5;31142:77;31139:103;;;31222:18;;:::i;:::-;31139:103;31269:1;31262:5;31258:13;31251:20;;31044:233;;;:::o;31283:176::-;31315:1;31332:20;31350:1;31332:20;:::i;:::-;31327:25;;31366:20;31384:1;31366:20;:::i;:::-;31361:25;;31405:1;31395:35;;31410:18;;:::i;:::-;31395:35;31451:1;31448;31444:9;31439:14;;31283:176;;;;:::o;31465:180::-;31513:77;31510:1;31503:88;31610:4;31607:1;31600:15;31634:4;31631:1;31624:15;31651:180;31699:77;31696:1;31689:88;31796:4;31793:1;31786:15;31820:4;31817:1;31810:15;31837:180;31885:77;31882:1;31875:88;31982:4;31979:1;31972:15;32006:4;32003:1;31996:15;32023:180;32071:77;32068:1;32061:88;32168:4;32165:1;32158:15;32192:4;32189:1;32182:15;32209:180;32257:77;32254:1;32247:88;32354:4;32351:1;32344:15;32378:4;32375:1;32368:15;32395:117;32504:1;32501;32494:12;32518:117;32627:1;32624;32617:12;32641:117;32750:1;32747;32740:12;32764:117;32873:1;32870;32863:12;32887:102;32928:6;32979:2;32975:7;32970:2;32963:5;32959:14;32955:28;32945:38;;32887:102;;;:::o;32995:153::-;33135:5;33131:1;33123:6;33119:14;33112:29;32995:153;:::o;33154:172::-;33294:24;33290:1;33282:6;33278:14;33271:48;33154:172;:::o;33332:225::-;33472:34;33468:1;33460:6;33456:14;33449:58;33541:8;33536:2;33528:6;33524:15;33517:33;33332:225;:::o;33563:245::-;33703:34;33699:1;33691:6;33687:14;33680:58;33772:28;33767:2;33759:6;33755:15;33748:53;33563:245;:::o;33814:179::-;33954:31;33950:1;33942:6;33938:14;33931:55;33814:179;:::o;33999:169::-;34139:21;34135:1;34127:6;34123:14;34116:45;33999:169;:::o;34174:173::-;34314:25;34310:1;34302:6;34298:14;34291:49;34174:173;:::o;34353:155::-;34493:7;34489:1;34481:6;34477:14;34470:31;34353:155;:::o;34514:182::-;34654:34;34650:1;34642:6;34638:14;34631:58;34514:182;:::o;34702:234::-;34842:34;34838:1;34830:6;34826:14;34819:58;34911:17;34906:2;34898:6;34894:15;34887:42;34702:234;:::o;34942:177::-;35082:29;35078:1;35070:6;35066:14;35059:53;34942:177;:::o;35125:114::-;;:::o;35245:158::-;35385:10;35381:1;35373:6;35369:14;35362:34;35245:158;:::o;35409:169::-;35549:21;35545:1;35537:6;35533:14;35526:45;35409:169;:::o;35584:172::-;35724:24;35720:1;35712:6;35708:14;35701:48;35584:172;:::o;35762:181::-;35902:33;35898:1;35890:6;35886:14;35879:57;35762:181;:::o;35949:169::-;36089:21;36085:1;36077:6;36073:14;36066:45;35949:169;:::o;36124:151::-;36264:3;36260:1;36252:6;36248:14;36241:27;36124:151;:::o;36281:122::-;36354:24;36372:5;36354:24;:::i;:::-;36347:5;36344:35;36334:63;;36393:1;36390;36383:12;36334:63;36281:122;:::o;36409:116::-;36479:21;36494:5;36479:21;:::i;:::-;36472:5;36469:32;36459:60;;36515:1;36512;36505:12;36459:60;36409:116;:::o;36531:120::-;36603:23;36620:5;36603:23;:::i;:::-;36596:5;36593:34;36583:62;;36641:1;36638;36631:12;36583:62;36531:120;:::o;36657:122::-;36730:24;36748:5;36730:24;:::i;:::-;36723:5;36720:35;36710:63;;36769:1;36766;36759:12;36710:63;36657:122;:::o

Swarm Source

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