ETH Price: $2,527.31 (+0.64%)

Token

ALPHA PENGUINS (PNGUINS)
 

Overview

Max Total Supply

379 PNGUINS

Holders

124

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
*我右拳打开了天化身为龙.eth
Balance
3 PNGUINS
0x41f3cbbaa1eda77ecce61e3f6814a843f77cd1ed
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:
ALPHAPENGUINS

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: GPL-3.0
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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



//Developer : FazelPejmanfar , Twitter :@Pejmanfarfazel



pragma solidity >=0.7.0 <0.9.0;





contract ALPHAPENGUINS is ERC721A, Ownable, ReentrancyGuard {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 0.002 ether;
  uint256 public maxSupply = 888;
  uint256 public FreeSupply = 333;
  uint256 public MaxperTx = 10;
  uint256 public MaxperTxFree = 3;
  bool public paused = true;

  constructor() ERC721A("ALPHA PENGUINS", "PNGUINS") {
    setBaseURI("ipfs://QmPJJFSqLKDSxBHc29sCinXU9LkNtKGVZtbV6Cvb5iK9J5/");
  }

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

  // public
  function mint(uint256 tokens) public payable nonReentrant {
    require(!paused, "PNGUINS: oops contract is paused");
    uint256 supply = totalSupply();
    require(tokens > 0, "PNGUINS: need to mint at least 1 NFT");
    require(tokens <= MaxperTx, "PNGUINS: max mint amount per tx exceeded");
    require(supply + tokens <= maxSupply, "PNGUINS: We Soldout");
    require(msg.value >= cost * tokens, "PNGUINS: insufficient funds");

      _safeMint(_msgSender(), tokens);
    
  }

    function freemint(uint256 tokens) public payable nonReentrant {
    require(!paused, "PNGUINS: oops contract is paused");
    uint256 supply = totalSupply();
    require(tokens > 0, "PNGUINS: need to mint at least 1 NFT");
    require(tokens <= MaxperTxFree, "PNGUINS: max mint per Tx exceeded");
    require(supply + tokens <= FreeSupply, "PNGUINS: Whitelist MaxSupply exceeded");


      _safeMint(_msgSender(), tokens);
    
  }


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

      _safeMint(destination, _mintAmount);
    
  }

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

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

  //only owner
  function setMaxPerTx(uint256 _limit) public onlyOwner {
    MaxperTx = _limit;
  }

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

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

    function setFreesupply(uint256 _newsupply) public onlyOwner {
    FreeSupply = _newsupply;
  }

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

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

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }

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

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":"FreeSupply","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":"MaxperTxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"freemint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setFreeMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setFreesupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setMaxsupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90805190602001906200005192919062000356565b5066071afd498d0000600c55610378600d5561014d600e55600a600f5560036010556001601160006101000a81548160ff0219169083151502179055503480156200009b57600080fd5b506040518060400160405280600e81526020017f414c5048412050454e4755494e530000000000000000000000000000000000008152506040518060400160405280600781526020017f504e4755494e530000000000000000000000000000000000000000000000000081525081600290805190602001906200012092919062000356565b5080600390805190602001906200013992919062000356565b506200014a620001aa60201b60201c565b60008190555050506200017262000166620001b360201b60201c565b620001bb60201b60201c565b6001600981905550620001a46040518060600160405280603681526020016200420c603691396200028160201b60201c565b620004ee565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000291620001b360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002b76200032c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000310576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000307906200042d565b60405180910390fd5b80600a90805190602001906200032892919062000356565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003649062000460565b90600052602060002090601f016020900481019282620003885760008555620003d4565b82601f10620003a357805160ff1916838001178555620003d4565b82800160010185558215620003d4579182015b82811115620003d3578251825591602001919060010190620003b6565b5b509050620003e39190620003e7565b5090565b5b8082111562000402576000816000905550600101620003e8565b5090565b6000620004156020836200044f565b91506200042282620004c5565b602082019050919050565b60006020820190508181036000830152620004488162000406565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200047957607f821691505b6020821081141562000490576200048f62000496565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613d0e80620004fe6000396000f3fe60806040526004361061021a5760003560e01c80636c0360eb11610123578063c13c45d2116100ab578063da3ef23f1161006f578063da3ef23f1461076e578063e1cf8baa14610797578063e985e9c5146107c0578063f2fde38b146107fd578063ff645691146108265761021a565b8063c13c45d214610687578063c6682862146106b2578063c6f6f216146106dd578063c87b56dd14610706578063d5abeb01146107435761021a565b80638da5cb5b116100f25780638da5cb5b146105c357806395d89b41146105ee578063a0712d6814610619578063a22cb46514610635578063b88d4fde1461065e5761021a565b80636c0360eb1461051b57806370a0823114610546578063715018a61461058357806383a076be1461059a5761021a565b806323b872dd116101a65780634fe07b00116101755780634fe07b001461043657806350839bef1461045f57806355f804b31461048a5780635c975abb146104b35780636352211e146104de5761021a565b806323b872dd146103b15780633ccfd60b146103da57806342842e0e146103e457806344a0d68a1461040d5761021a565b8063095ea7b3116101ed578063095ea7b3146102ed5780630fbe4fe21461031657806313faede614610332578063149835a01461035d57806318160ddd146103865761021a565b806301ffc9a71461021f57806302329a291461025c57806306fdde0314610285578063081812fc146102b0575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612df0565b610851565b60405161025391906132e6565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e9190612dc3565b6108e3565b005b34801561029157600080fd5b5061029a61097c565b6040516102a79190613301565b60405180910390f35b3480156102bc57600080fd5b506102d760048036038101906102d29190612e93565b610a0e565b6040516102e4919061327f565b60405180910390f35b3480156102f957600080fd5b50610314600480360381019061030f9190612d83565b610a8a565b005b610330600480360381019061032b9190612e93565b610c31565b005b34801561033e57600080fd5b50610347610dd0565b60405161035491906134c3565b60405180910390f35b34801561036957600080fd5b50610384600480360381019061037f9190612e93565b610dd6565b005b34801561039257600080fd5b5061039b610e5c565b6040516103a891906134c3565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190612c6d565b610e73565b005b6103e2610e83565b005b3480156103f057600080fd5b5061040b60048036038101906104069190612c6d565b610fce565b005b34801561041957600080fd5b50610434600480360381019061042f9190612e93565b610fee565b005b34801561044257600080fd5b5061045d60048036038101906104589190612e93565b611074565b005b34801561046b57600080fd5b506104746110fa565b60405161048191906134c3565b60405180910390f35b34801561049657600080fd5b506104b160048036038101906104ac9190612e4a565b611100565b005b3480156104bf57600080fd5b506104c8611196565b6040516104d591906132e6565b60405180910390f35b3480156104ea57600080fd5b5061050560048036038101906105009190612e93565b6111a9565b604051610512919061327f565b60405180910390f35b34801561052757600080fd5b506105306111bb565b60405161053d9190613301565b60405180910390f35b34801561055257600080fd5b5061056d60048036038101906105689190612c00565b611249565b60405161057a91906134c3565b60405180910390f35b34801561058f57600080fd5b50610598611302565b005b3480156105a657600080fd5b506105c160048036038101906105bc9190612ec0565b61138a565b005b3480156105cf57600080fd5b506105d861150a565b6040516105e5919061327f565b60405180910390f35b3480156105fa57600080fd5b50610603611534565b6040516106109190613301565b60405180910390f35b610633600480360381019061062e9190612e93565b6115c6565b005b34801561064157600080fd5b5061065c60048036038101906106579190612d43565b6117b5565b005b34801561066a57600080fd5b5061068560048036038101906106809190612cc0565b61192d565b005b34801561069357600080fd5b5061069c6119a0565b6040516106a991906134c3565b60405180910390f35b3480156106be57600080fd5b506106c76119a6565b6040516106d49190613301565b60405180910390f35b3480156106e957600080fd5b5061070460048036038101906106ff9190612e93565b611a34565b005b34801561071257600080fd5b5061072d60048036038101906107289190612e93565b611aba565b60405161073a9190613301565b60405180910390f35b34801561074f57600080fd5b50610758611b64565b60405161076591906134c3565b60405180910390f35b34801561077a57600080fd5b5061079560048036038101906107909190612e4a565b611b6a565b005b3480156107a357600080fd5b506107be60048036038101906107b99190612e93565b611c00565b005b3480156107cc57600080fd5b506107e760048036038101906107e29190612c2d565b611c86565b6040516107f491906132e6565b60405180910390f35b34801561080957600080fd5b50610824600480360381019061081f9190612c00565b611d1a565b005b34801561083257600080fd5b5061083b611e12565b60405161084891906134c3565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ac57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108dc5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6108eb611e18565b73ffffffffffffffffffffffffffffffffffffffff1661090961150a565b73ffffffffffffffffffffffffffffffffffffffff161461095f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095690613403565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b60606002805461098b90613793565b80601f01602080910402602001604051908101604052809291908181526020018280546109b790613793565b8015610a045780601f106109d957610100808354040283529160200191610a04565b820191906000526020600020905b8154815290600101906020018083116109e757829003601f168201915b5050505050905090565b6000610a1982611e20565b610a4f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a9582611e7f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610afd576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b1c611f4d565b73ffffffffffffffffffffffffffffffffffffffff1614610b7f57610b4881610b43611f4d565b611c86565b610b7e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60026009541415610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e90613483565b60405180910390fd5b6002600981905550601160009054906101000a900460ff1615610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc690613383565b60405180910390fd5b6000610cd9610e5c565b905060008211610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1590613423565b60405180910390fd5b601054821115610d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5a90613363565b60405180910390fd5b600e548282610d7291906135c8565b1115610db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daa90613463565b60405180910390fd5b610dc4610dbe611e18565b83611f55565b50600160098190555050565b600c5481565b610dde611e18565b73ffffffffffffffffffffffffffffffffffffffff16610dfc61150a565b73ffffffffffffffffffffffffffffffffffffffff1614610e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4990613403565b60405180910390fd5b80600d8190555050565b6000610e66611f73565b6001546000540303905090565b610e7e838383611f7c565b505050565b610e8b611e18565b73ffffffffffffffffffffffffffffffffffffffff16610ea961150a565b73ffffffffffffffffffffffffffffffffffffffff1614610eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef690613403565b60405180910390fd5b60026009541415610f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3c90613483565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610f739061326a565b60006040518083038185875af1925050503d8060008114610fb0576040519150601f19603f3d011682016040523d82523d6000602084013e610fb5565b606091505b5050905080610fc357600080fd5b506001600981905550565b610fe98383836040518060200160405280600081525061192d565b505050565b610ff6611e18565b73ffffffffffffffffffffffffffffffffffffffff1661101461150a565b73ffffffffffffffffffffffffffffffffffffffff161461106a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106190613403565b60405180910390fd5b80600c8190555050565b61107c611e18565b73ffffffffffffffffffffffffffffffffffffffff1661109a61150a565b73ffffffffffffffffffffffffffffffffffffffff16146110f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e790613403565b60405180910390fd5b8060108190555050565b600e5481565b611108611e18565b73ffffffffffffffffffffffffffffffffffffffff1661112661150a565b73ffffffffffffffffffffffffffffffffffffffff161461117c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117390613403565b60405180910390fd5b80600a9080519060200190611192929190612a14565b5050565b601160009054906101000a900460ff1681565b60006111b482611e7f565b9050919050565b600a80546111c890613793565b80601f01602080910402602001604051908101604052809291908181526020018280546111f490613793565b80156112415780601f1061121657610100808354040283529160200191611241565b820191906000526020600020905b81548152906001019060200180831161122457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112b1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61130a611e18565b73ffffffffffffffffffffffffffffffffffffffff1661132861150a565b73ffffffffffffffffffffffffffffffffffffffff161461137e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137590613403565b60405180910390fd5b6113886000612326565b565b611392611e18565b73ffffffffffffffffffffffffffffffffffffffff166113b061150a565b73ffffffffffffffffffffffffffffffffffffffff1614611406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fd90613403565b60405180910390fd5b6002600954141561144c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144390613483565b60405180910390fd5b600260098190555060008211611497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148e906134a3565b60405180910390fd5b60006114a1610e5c565b9050600d5483826114b291906135c8565b11156114f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ea906133e3565b60405180910390fd5b6114fd8284611f55565b5060016009819055505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461154390613793565b80601f016020809104026020016040519081016040528092919081815260200182805461156f90613793565b80156115bc5780601f10611591576101008083540402835291602001916115bc565b820191906000526020600020905b81548152906001019060200180831161159f57829003601f168201915b5050505050905090565b6002600954141561160c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160390613483565b60405180910390fd5b6002600981905550601160009054906101000a900460ff1615611664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165b90613383565b60405180910390fd5b600061166e610e5c565b9050600082116116b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116aa90613423565b60405180910390fd5b600f548211156116f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ef906133a3565b60405180910390fd5b600d54828261170791906135c8565b1115611748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173f90613443565b60405180910390fd5b81600c54611756919061364f565b341015611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f906133c3565b60405180910390fd5b6117a96117a3611e18565b83611f55565b50600160098190555050565b6117bd611f4d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611822576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061182f611f4d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118dc611f4d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161192191906132e6565b60405180910390a35050565b611938848484611f7c565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461199a57611963848484846123ec565b611999576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60105481565b600b80546119b390613793565b80601f01602080910402602001604051908101604052809291908181526020018280546119df90613793565b8015611a2c5780601f10611a0157610100808354040283529160200191611a2c565b820191906000526020600020905b815481529060010190602001808311611a0f57829003601f168201915b505050505081565b611a3c611e18565b73ffffffffffffffffffffffffffffffffffffffff16611a5a61150a565b73ffffffffffffffffffffffffffffffffffffffff1614611ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa790613403565b60405180910390fd5b80600f8190555050565b6060611ac582611e20565b611b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afb90613323565b60405180910390fd5b6000611b0e61254c565b90506000815111611b2e5760405180602001604052806000815250611b5c565b80611b38846125de565b600b604051602001611b4c93929190613239565b6040516020818303038152906040525b915050919050565b600d5481565b611b72611e18565b73ffffffffffffffffffffffffffffffffffffffff16611b9061150a565b73ffffffffffffffffffffffffffffffffffffffff1614611be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdd90613403565b60405180910390fd5b80600b9080519060200190611bfc929190612a14565b5050565b611c08611e18565b73ffffffffffffffffffffffffffffffffffffffff16611c2661150a565b73ffffffffffffffffffffffffffffffffffffffff1614611c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7390613403565b60405180910390fd5b80600e8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d22611e18565b73ffffffffffffffffffffffffffffffffffffffff16611d4061150a565b73ffffffffffffffffffffffffffffffffffffffff1614611d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8d90613403565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfd90613343565b60405180910390fd5b611e0f81612326565b50565b600f5481565b600033905090565b600081611e2b611f73565b11158015611e3a575060005482105b8015611e78575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611e8e611f73565b11611f1657600054811015611f155760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611f13575b6000811415611f09576004600083600190039350838152602001908152602001600020549050611ede565b8092505050611f48565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b611f6f82826040518060200160405280600081525061273f565b5050565b60006001905090565b6000611f8782611e7f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611fee576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661200f611f4d565b73ffffffffffffffffffffffffffffffffffffffff16148061203e575061203d85612038611f4d565b611c86565b5b80612083575061204c611f4d565b73ffffffffffffffffffffffffffffffffffffffff1661206b84610a0e565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806120bc576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612123576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61213085858560016129f4565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61222d866129fa565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831614156122b75760006001840190506000600460008381526020019081526020016000205414156122b55760005481146122b4578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461231f8585856001612a04565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612412611f4d565b8786866040518563ffffffff1660e01b8152600401612434949392919061329a565b602060405180830381600087803b15801561244e57600080fd5b505af192505050801561247f57506040513d601f19601f8201168201806040525081019061247c9190612e1d565b60015b6124f9573d80600081146124af576040519150601f19603f3d011682016040523d82523d6000602084013e6124b4565b606091505b506000815114156124f1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461255b90613793565b80601f016020809104026020016040519081016040528092919081815260200182805461258790613793565b80156125d45780601f106125a9576101008083540402835291602001916125d4565b820191906000526020600020905b8154815290600101906020018083116125b757829003601f168201915b5050505050905090565b60606000821415612626576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061273a565b600082905060005b60008214612658578080612641906137f6565b915050600a82612651919061361e565b915061262e565b60008167ffffffffffffffff8111156126745761267361392c565b5b6040519080825280601f01601f1916602001820160405280156126a65781602001600182028036833780820191505090505b5090505b60008514612733576001826126bf91906136a9565b9150600a856126ce919061383f565b60306126da91906135c8565b60f81b8183815181106126f0576126ef6138fd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561272c919061361e565b94506126aa565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156127ac576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156127e7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127f460008583866129f4565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161285960018514612a0a565b901b60a042901b612869866129fa565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1461296d575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461291d60008784806001019550876123ec565b612953576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106128ae57826000541461296857600080fd5b6129d8565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061296e575b8160008190555050506129ee6000858386612a04565b50505050565b50505050565b6000819050919050565b50505050565b6000819050919050565b828054612a2090613793565b90600052602060002090601f016020900481019282612a425760008555612a89565b82601f10612a5b57805160ff1916838001178555612a89565b82800160010185558215612a89579182015b82811115612a88578251825591602001919060010190612a6d565b5b509050612a969190612a9a565b5090565b5b80821115612ab3576000816000905550600101612a9b565b5090565b6000612aca612ac584613503565b6134de565b905082815260208101848484011115612ae657612ae5613960565b5b612af1848285613751565b509392505050565b6000612b0c612b0784613534565b6134de565b905082815260208101848484011115612b2857612b27613960565b5b612b33848285613751565b509392505050565b600081359050612b4a81613c7c565b92915050565b600081359050612b5f81613c93565b92915050565b600081359050612b7481613caa565b92915050565b600081519050612b8981613caa565b92915050565b600082601f830112612ba457612ba361395b565b5b8135612bb4848260208601612ab7565b91505092915050565b600082601f830112612bd257612bd161395b565b5b8135612be2848260208601612af9565b91505092915050565b600081359050612bfa81613cc1565b92915050565b600060208284031215612c1657612c1561396a565b5b6000612c2484828501612b3b565b91505092915050565b60008060408385031215612c4457612c4361396a565b5b6000612c5285828601612b3b565b9250506020612c6385828601612b3b565b9150509250929050565b600080600060608486031215612c8657612c8561396a565b5b6000612c9486828701612b3b565b9350506020612ca586828701612b3b565b9250506040612cb686828701612beb565b9150509250925092565b60008060008060808587031215612cda57612cd961396a565b5b6000612ce887828801612b3b565b9450506020612cf987828801612b3b565b9350506040612d0a87828801612beb565b925050606085013567ffffffffffffffff811115612d2b57612d2a613965565b5b612d3787828801612b8f565b91505092959194509250565b60008060408385031215612d5a57612d5961396a565b5b6000612d6885828601612b3b565b9250506020612d7985828601612b50565b9150509250929050565b60008060408385031215612d9a57612d9961396a565b5b6000612da885828601612b3b565b9250506020612db985828601612beb565b9150509250929050565b600060208284031215612dd957612dd861396a565b5b6000612de784828501612b50565b91505092915050565b600060208284031215612e0657612e0561396a565b5b6000612e1484828501612b65565b91505092915050565b600060208284031215612e3357612e3261396a565b5b6000612e4184828501612b7a565b91505092915050565b600060208284031215612e6057612e5f61396a565b5b600082013567ffffffffffffffff811115612e7e57612e7d613965565b5b612e8a84828501612bbd565b91505092915050565b600060208284031215612ea957612ea861396a565b5b6000612eb784828501612beb565b91505092915050565b60008060408385031215612ed757612ed661396a565b5b6000612ee585828601612beb565b9250506020612ef685828601612b3b565b9150509250929050565b612f09816136dd565b82525050565b612f18816136ef565b82525050565b6000612f298261357a565b612f338185613590565b9350612f43818560208601613760565b612f4c8161396f565b840191505092915050565b6000612f6282613585565b612f6c81856135ac565b9350612f7c818560208601613760565b612f858161396f565b840191505092915050565b6000612f9b82613585565b612fa581856135bd565b9350612fb5818560208601613760565b80840191505092915050565b60008154612fce81613793565b612fd881866135bd565b94506001821660008114612ff3576001811461300457613037565b60ff19831686528186019350613037565b61300d85613565565b60005b8381101561302f57815481890152600182019150602081019050613010565b838801955050505b50505092915050565b600061304d6030836135ac565b915061305882613980565b604082019050919050565b60006130706026836135ac565b915061307b826139cf565b604082019050919050565b60006130936021836135ac565b915061309e82613a1e565b604082019050919050565b60006130b66020836135ac565b91506130c182613a6d565b602082019050919050565b60006130d96028836135ac565b91506130e482613a96565b604082019050919050565b60006130fc601b836135ac565b915061310782613ae5565b602082019050919050565b600061311f6016836135ac565b915061312a82613b0e565b602082019050919050565b60006131426020836135ac565b915061314d82613b37565b602082019050919050565b60006131656000836135a1565b915061317082613b60565b600082019050919050565b60006131886024836135ac565b915061319382613b63565b604082019050919050565b60006131ab6013836135ac565b91506131b682613bb2565b602082019050919050565b60006131ce6025836135ac565b91506131d982613bdb565b604082019050919050565b60006131f1601f836135ac565b91506131fc82613c2a565b602082019050919050565b6000613214601b836135ac565b915061321f82613c53565b602082019050919050565b61323381613747565b82525050565b60006132458286612f90565b91506132518285612f90565b915061325d8284612fc1565b9150819050949350505050565b600061327582613158565b9150819050919050565b60006020820190506132946000830184612f00565b92915050565b60006080820190506132af6000830187612f00565b6132bc6020830186612f00565b6132c9604083018561322a565b81810360608301526132db8184612f1e565b905095945050505050565b60006020820190506132fb6000830184612f0f565b92915050565b6000602082019050818103600083015261331b8184612f57565b905092915050565b6000602082019050818103600083015261333c81613040565b9050919050565b6000602082019050818103600083015261335c81613063565b9050919050565b6000602082019050818103600083015261337c81613086565b9050919050565b6000602082019050818103600083015261339c816130a9565b9050919050565b600060208201905081810360008301526133bc816130cc565b9050919050565b600060208201905081810360008301526133dc816130ef565b9050919050565b600060208201905081810360008301526133fc81613112565b9050919050565b6000602082019050818103600083015261341c81613135565b9050919050565b6000602082019050818103600083015261343c8161317b565b9050919050565b6000602082019050818103600083015261345c8161319e565b9050919050565b6000602082019050818103600083015261347c816131c1565b9050919050565b6000602082019050818103600083015261349c816131e4565b9050919050565b600060208201905081810360008301526134bc81613207565b9050919050565b60006020820190506134d8600083018461322a565b92915050565b60006134e86134f9565b90506134f482826137c5565b919050565b6000604051905090565b600067ffffffffffffffff82111561351e5761351d61392c565b5b6135278261396f565b9050602081019050919050565b600067ffffffffffffffff82111561354f5761354e61392c565b5b6135588261396f565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006135d382613747565b91506135de83613747565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561361357613612613870565b5b828201905092915050565b600061362982613747565b915061363483613747565b9250826136445761364361389f565b5b828204905092915050565b600061365a82613747565b915061366583613747565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561369e5761369d613870565b5b828202905092915050565b60006136b482613747565b91506136bf83613747565b9250828210156136d2576136d1613870565b5b828203905092915050565b60006136e882613727565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561377e578082015181840152602081019050613763565b8381111561378d576000848401525b50505050565b600060028204905060018216806137ab57607f821691505b602082108114156137bf576137be6138ce565b5b50919050565b6137ce8261396f565b810181811067ffffffffffffffff821117156137ed576137ec61392c565b5b80604052505050565b600061380182613747565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561383457613833613870565b5b600182019050919050565b600061384a82613747565b915061385583613747565b9250826138655761386461389f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f504e4755494e533a206d6178206d696e7420706572205478206578636565646560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b7f504e4755494e533a206f6f707320636f6e747261637420697320706175736564600082015250565b7f504e4755494e533a206d6178206d696e7420616d6f756e74207065722074782060008201527f6578636565646564000000000000000000000000000000000000000000000000602082015250565b7f504e4755494e533a20696e73756666696369656e742066756e64730000000000600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f504e4755494e533a206e65656420746f206d696e74206174206c65617374203160008201527f204e465400000000000000000000000000000000000000000000000000000000602082015250565b7f504e4755494e533a20576520536f6c646f757400000000000000000000000000600082015250565b7f504e4755494e533a2057686974656c697374204d6178537570706c792065786360008201527f6565646564000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b613c85816136dd565b8114613c9057600080fd5b50565b613c9c816136ef565b8114613ca757600080fd5b50565b613cb3816136fb565b8114613cbe57600080fd5b50565b613cca81613747565b8114613cd557600080fd5b5056fea264697066735822122050cbebb17068ecb61c3ea943f802e81ba825793e72c444d755a88501cd6e9f7f64736f6c63430008070033697066733a2f2f516d504a4a4653714c4b44537842486332397343696e5855394c6b4e744b47565a7462563643766235694b394a352f

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80636c0360eb11610123578063c13c45d2116100ab578063da3ef23f1161006f578063da3ef23f1461076e578063e1cf8baa14610797578063e985e9c5146107c0578063f2fde38b146107fd578063ff645691146108265761021a565b8063c13c45d214610687578063c6682862146106b2578063c6f6f216146106dd578063c87b56dd14610706578063d5abeb01146107435761021a565b80638da5cb5b116100f25780638da5cb5b146105c357806395d89b41146105ee578063a0712d6814610619578063a22cb46514610635578063b88d4fde1461065e5761021a565b80636c0360eb1461051b57806370a0823114610546578063715018a61461058357806383a076be1461059a5761021a565b806323b872dd116101a65780634fe07b00116101755780634fe07b001461043657806350839bef1461045f57806355f804b31461048a5780635c975abb146104b35780636352211e146104de5761021a565b806323b872dd146103b15780633ccfd60b146103da57806342842e0e146103e457806344a0d68a1461040d5761021a565b8063095ea7b3116101ed578063095ea7b3146102ed5780630fbe4fe21461031657806313faede614610332578063149835a01461035d57806318160ddd146103865761021a565b806301ffc9a71461021f57806302329a291461025c57806306fdde0314610285578063081812fc146102b0575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612df0565b610851565b60405161025391906132e6565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e9190612dc3565b6108e3565b005b34801561029157600080fd5b5061029a61097c565b6040516102a79190613301565b60405180910390f35b3480156102bc57600080fd5b506102d760048036038101906102d29190612e93565b610a0e565b6040516102e4919061327f565b60405180910390f35b3480156102f957600080fd5b50610314600480360381019061030f9190612d83565b610a8a565b005b610330600480360381019061032b9190612e93565b610c31565b005b34801561033e57600080fd5b50610347610dd0565b60405161035491906134c3565b60405180910390f35b34801561036957600080fd5b50610384600480360381019061037f9190612e93565b610dd6565b005b34801561039257600080fd5b5061039b610e5c565b6040516103a891906134c3565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190612c6d565b610e73565b005b6103e2610e83565b005b3480156103f057600080fd5b5061040b60048036038101906104069190612c6d565b610fce565b005b34801561041957600080fd5b50610434600480360381019061042f9190612e93565b610fee565b005b34801561044257600080fd5b5061045d60048036038101906104589190612e93565b611074565b005b34801561046b57600080fd5b506104746110fa565b60405161048191906134c3565b60405180910390f35b34801561049657600080fd5b506104b160048036038101906104ac9190612e4a565b611100565b005b3480156104bf57600080fd5b506104c8611196565b6040516104d591906132e6565b60405180910390f35b3480156104ea57600080fd5b5061050560048036038101906105009190612e93565b6111a9565b604051610512919061327f565b60405180910390f35b34801561052757600080fd5b506105306111bb565b60405161053d9190613301565b60405180910390f35b34801561055257600080fd5b5061056d60048036038101906105689190612c00565b611249565b60405161057a91906134c3565b60405180910390f35b34801561058f57600080fd5b50610598611302565b005b3480156105a657600080fd5b506105c160048036038101906105bc9190612ec0565b61138a565b005b3480156105cf57600080fd5b506105d861150a565b6040516105e5919061327f565b60405180910390f35b3480156105fa57600080fd5b50610603611534565b6040516106109190613301565b60405180910390f35b610633600480360381019061062e9190612e93565b6115c6565b005b34801561064157600080fd5b5061065c60048036038101906106579190612d43565b6117b5565b005b34801561066a57600080fd5b5061068560048036038101906106809190612cc0565b61192d565b005b34801561069357600080fd5b5061069c6119a0565b6040516106a991906134c3565b60405180910390f35b3480156106be57600080fd5b506106c76119a6565b6040516106d49190613301565b60405180910390f35b3480156106e957600080fd5b5061070460048036038101906106ff9190612e93565b611a34565b005b34801561071257600080fd5b5061072d60048036038101906107289190612e93565b611aba565b60405161073a9190613301565b60405180910390f35b34801561074f57600080fd5b50610758611b64565b60405161076591906134c3565b60405180910390f35b34801561077a57600080fd5b5061079560048036038101906107909190612e4a565b611b6a565b005b3480156107a357600080fd5b506107be60048036038101906107b99190612e93565b611c00565b005b3480156107cc57600080fd5b506107e760048036038101906107e29190612c2d565b611c86565b6040516107f491906132e6565b60405180910390f35b34801561080957600080fd5b50610824600480360381019061081f9190612c00565b611d1a565b005b34801561083257600080fd5b5061083b611e12565b60405161084891906134c3565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ac57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108dc5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6108eb611e18565b73ffffffffffffffffffffffffffffffffffffffff1661090961150a565b73ffffffffffffffffffffffffffffffffffffffff161461095f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095690613403565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b60606002805461098b90613793565b80601f01602080910402602001604051908101604052809291908181526020018280546109b790613793565b8015610a045780601f106109d957610100808354040283529160200191610a04565b820191906000526020600020905b8154815290600101906020018083116109e757829003601f168201915b5050505050905090565b6000610a1982611e20565b610a4f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a9582611e7f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610afd576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b1c611f4d565b73ffffffffffffffffffffffffffffffffffffffff1614610b7f57610b4881610b43611f4d565b611c86565b610b7e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60026009541415610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e90613483565b60405180910390fd5b6002600981905550601160009054906101000a900460ff1615610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc690613383565b60405180910390fd5b6000610cd9610e5c565b905060008211610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1590613423565b60405180910390fd5b601054821115610d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5a90613363565b60405180910390fd5b600e548282610d7291906135c8565b1115610db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daa90613463565b60405180910390fd5b610dc4610dbe611e18565b83611f55565b50600160098190555050565b600c5481565b610dde611e18565b73ffffffffffffffffffffffffffffffffffffffff16610dfc61150a565b73ffffffffffffffffffffffffffffffffffffffff1614610e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4990613403565b60405180910390fd5b80600d8190555050565b6000610e66611f73565b6001546000540303905090565b610e7e838383611f7c565b505050565b610e8b611e18565b73ffffffffffffffffffffffffffffffffffffffff16610ea961150a565b73ffffffffffffffffffffffffffffffffffffffff1614610eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef690613403565b60405180910390fd5b60026009541415610f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3c90613483565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610f739061326a565b60006040518083038185875af1925050503d8060008114610fb0576040519150601f19603f3d011682016040523d82523d6000602084013e610fb5565b606091505b5050905080610fc357600080fd5b506001600981905550565b610fe98383836040518060200160405280600081525061192d565b505050565b610ff6611e18565b73ffffffffffffffffffffffffffffffffffffffff1661101461150a565b73ffffffffffffffffffffffffffffffffffffffff161461106a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106190613403565b60405180910390fd5b80600c8190555050565b61107c611e18565b73ffffffffffffffffffffffffffffffffffffffff1661109a61150a565b73ffffffffffffffffffffffffffffffffffffffff16146110f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e790613403565b60405180910390fd5b8060108190555050565b600e5481565b611108611e18565b73ffffffffffffffffffffffffffffffffffffffff1661112661150a565b73ffffffffffffffffffffffffffffffffffffffff161461117c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117390613403565b60405180910390fd5b80600a9080519060200190611192929190612a14565b5050565b601160009054906101000a900460ff1681565b60006111b482611e7f565b9050919050565b600a80546111c890613793565b80601f01602080910402602001604051908101604052809291908181526020018280546111f490613793565b80156112415780601f1061121657610100808354040283529160200191611241565b820191906000526020600020905b81548152906001019060200180831161122457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112b1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61130a611e18565b73ffffffffffffffffffffffffffffffffffffffff1661132861150a565b73ffffffffffffffffffffffffffffffffffffffff161461137e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137590613403565b60405180910390fd5b6113886000612326565b565b611392611e18565b73ffffffffffffffffffffffffffffffffffffffff166113b061150a565b73ffffffffffffffffffffffffffffffffffffffff1614611406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fd90613403565b60405180910390fd5b6002600954141561144c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144390613483565b60405180910390fd5b600260098190555060008211611497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148e906134a3565b60405180910390fd5b60006114a1610e5c565b9050600d5483826114b291906135c8565b11156114f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ea906133e3565b60405180910390fd5b6114fd8284611f55565b5060016009819055505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461154390613793565b80601f016020809104026020016040519081016040528092919081815260200182805461156f90613793565b80156115bc5780601f10611591576101008083540402835291602001916115bc565b820191906000526020600020905b81548152906001019060200180831161159f57829003601f168201915b5050505050905090565b6002600954141561160c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160390613483565b60405180910390fd5b6002600981905550601160009054906101000a900460ff1615611664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165b90613383565b60405180910390fd5b600061166e610e5c565b9050600082116116b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116aa90613423565b60405180910390fd5b600f548211156116f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ef906133a3565b60405180910390fd5b600d54828261170791906135c8565b1115611748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173f90613443565b60405180910390fd5b81600c54611756919061364f565b341015611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f906133c3565b60405180910390fd5b6117a96117a3611e18565b83611f55565b50600160098190555050565b6117bd611f4d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611822576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061182f611f4d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118dc611f4d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161192191906132e6565b60405180910390a35050565b611938848484611f7c565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461199a57611963848484846123ec565b611999576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60105481565b600b80546119b390613793565b80601f01602080910402602001604051908101604052809291908181526020018280546119df90613793565b8015611a2c5780601f10611a0157610100808354040283529160200191611a2c565b820191906000526020600020905b815481529060010190602001808311611a0f57829003601f168201915b505050505081565b611a3c611e18565b73ffffffffffffffffffffffffffffffffffffffff16611a5a61150a565b73ffffffffffffffffffffffffffffffffffffffff1614611ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa790613403565b60405180910390fd5b80600f8190555050565b6060611ac582611e20565b611b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afb90613323565b60405180910390fd5b6000611b0e61254c565b90506000815111611b2e5760405180602001604052806000815250611b5c565b80611b38846125de565b600b604051602001611b4c93929190613239565b6040516020818303038152906040525b915050919050565b600d5481565b611b72611e18565b73ffffffffffffffffffffffffffffffffffffffff16611b9061150a565b73ffffffffffffffffffffffffffffffffffffffff1614611be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdd90613403565b60405180910390fd5b80600b9080519060200190611bfc929190612a14565b5050565b611c08611e18565b73ffffffffffffffffffffffffffffffffffffffff16611c2661150a565b73ffffffffffffffffffffffffffffffffffffffff1614611c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7390613403565b60405180910390fd5b80600e8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d22611e18565b73ffffffffffffffffffffffffffffffffffffffff16611d4061150a565b73ffffffffffffffffffffffffffffffffffffffff1614611d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8d90613403565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfd90613343565b60405180910390fd5b611e0f81612326565b50565b600f5481565b600033905090565b600081611e2b611f73565b11158015611e3a575060005482105b8015611e78575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611e8e611f73565b11611f1657600054811015611f155760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611f13575b6000811415611f09576004600083600190039350838152602001908152602001600020549050611ede565b8092505050611f48565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b611f6f82826040518060200160405280600081525061273f565b5050565b60006001905090565b6000611f8782611e7f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611fee576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661200f611f4d565b73ffffffffffffffffffffffffffffffffffffffff16148061203e575061203d85612038611f4d565b611c86565b5b80612083575061204c611f4d565b73ffffffffffffffffffffffffffffffffffffffff1661206b84610a0e565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806120bc576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612123576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61213085858560016129f4565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61222d866129fa565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831614156122b75760006001840190506000600460008381526020019081526020016000205414156122b55760005481146122b4578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461231f8585856001612a04565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612412611f4d565b8786866040518563ffffffff1660e01b8152600401612434949392919061329a565b602060405180830381600087803b15801561244e57600080fd5b505af192505050801561247f57506040513d601f19601f8201168201806040525081019061247c9190612e1d565b60015b6124f9573d80600081146124af576040519150601f19603f3d011682016040523d82523d6000602084013e6124b4565b606091505b506000815114156124f1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461255b90613793565b80601f016020809104026020016040519081016040528092919081815260200182805461258790613793565b80156125d45780601f106125a9576101008083540402835291602001916125d4565b820191906000526020600020905b8154815290600101906020018083116125b757829003601f168201915b5050505050905090565b60606000821415612626576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061273a565b600082905060005b60008214612658578080612641906137f6565b915050600a82612651919061361e565b915061262e565b60008167ffffffffffffffff8111156126745761267361392c565b5b6040519080825280601f01601f1916602001820160405280156126a65781602001600182028036833780820191505090505b5090505b60008514612733576001826126bf91906136a9565b9150600a856126ce919061383f565b60306126da91906135c8565b60f81b8183815181106126f0576126ef6138fd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561272c919061361e565b94506126aa565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156127ac576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156127e7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127f460008583866129f4565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161285960018514612a0a565b901b60a042901b612869866129fa565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1461296d575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461291d60008784806001019550876123ec565b612953576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106128ae57826000541461296857600080fd5b6129d8565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061296e575b8160008190555050506129ee6000858386612a04565b50505050565b50505050565b6000819050919050565b50505050565b6000819050919050565b828054612a2090613793565b90600052602060002090601f016020900481019282612a425760008555612a89565b82601f10612a5b57805160ff1916838001178555612a89565b82800160010185558215612a89579182015b82811115612a88578251825591602001919060010190612a6d565b5b509050612a969190612a9a565b5090565b5b80821115612ab3576000816000905550600101612a9b565b5090565b6000612aca612ac584613503565b6134de565b905082815260208101848484011115612ae657612ae5613960565b5b612af1848285613751565b509392505050565b6000612b0c612b0784613534565b6134de565b905082815260208101848484011115612b2857612b27613960565b5b612b33848285613751565b509392505050565b600081359050612b4a81613c7c565b92915050565b600081359050612b5f81613c93565b92915050565b600081359050612b7481613caa565b92915050565b600081519050612b8981613caa565b92915050565b600082601f830112612ba457612ba361395b565b5b8135612bb4848260208601612ab7565b91505092915050565b600082601f830112612bd257612bd161395b565b5b8135612be2848260208601612af9565b91505092915050565b600081359050612bfa81613cc1565b92915050565b600060208284031215612c1657612c1561396a565b5b6000612c2484828501612b3b565b91505092915050565b60008060408385031215612c4457612c4361396a565b5b6000612c5285828601612b3b565b9250506020612c6385828601612b3b565b9150509250929050565b600080600060608486031215612c8657612c8561396a565b5b6000612c9486828701612b3b565b9350506020612ca586828701612b3b565b9250506040612cb686828701612beb565b9150509250925092565b60008060008060808587031215612cda57612cd961396a565b5b6000612ce887828801612b3b565b9450506020612cf987828801612b3b565b9350506040612d0a87828801612beb565b925050606085013567ffffffffffffffff811115612d2b57612d2a613965565b5b612d3787828801612b8f565b91505092959194509250565b60008060408385031215612d5a57612d5961396a565b5b6000612d6885828601612b3b565b9250506020612d7985828601612b50565b9150509250929050565b60008060408385031215612d9a57612d9961396a565b5b6000612da885828601612b3b565b9250506020612db985828601612beb565b9150509250929050565b600060208284031215612dd957612dd861396a565b5b6000612de784828501612b50565b91505092915050565b600060208284031215612e0657612e0561396a565b5b6000612e1484828501612b65565b91505092915050565b600060208284031215612e3357612e3261396a565b5b6000612e4184828501612b7a565b91505092915050565b600060208284031215612e6057612e5f61396a565b5b600082013567ffffffffffffffff811115612e7e57612e7d613965565b5b612e8a84828501612bbd565b91505092915050565b600060208284031215612ea957612ea861396a565b5b6000612eb784828501612beb565b91505092915050565b60008060408385031215612ed757612ed661396a565b5b6000612ee585828601612beb565b9250506020612ef685828601612b3b565b9150509250929050565b612f09816136dd565b82525050565b612f18816136ef565b82525050565b6000612f298261357a565b612f338185613590565b9350612f43818560208601613760565b612f4c8161396f565b840191505092915050565b6000612f6282613585565b612f6c81856135ac565b9350612f7c818560208601613760565b612f858161396f565b840191505092915050565b6000612f9b82613585565b612fa581856135bd565b9350612fb5818560208601613760565b80840191505092915050565b60008154612fce81613793565b612fd881866135bd565b94506001821660008114612ff3576001811461300457613037565b60ff19831686528186019350613037565b61300d85613565565b60005b8381101561302f57815481890152600182019150602081019050613010565b838801955050505b50505092915050565b600061304d6030836135ac565b915061305882613980565b604082019050919050565b60006130706026836135ac565b915061307b826139cf565b604082019050919050565b60006130936021836135ac565b915061309e82613a1e565b604082019050919050565b60006130b66020836135ac565b91506130c182613a6d565b602082019050919050565b60006130d96028836135ac565b91506130e482613a96565b604082019050919050565b60006130fc601b836135ac565b915061310782613ae5565b602082019050919050565b600061311f6016836135ac565b915061312a82613b0e565b602082019050919050565b60006131426020836135ac565b915061314d82613b37565b602082019050919050565b60006131656000836135a1565b915061317082613b60565b600082019050919050565b60006131886024836135ac565b915061319382613b63565b604082019050919050565b60006131ab6013836135ac565b91506131b682613bb2565b602082019050919050565b60006131ce6025836135ac565b91506131d982613bdb565b604082019050919050565b60006131f1601f836135ac565b91506131fc82613c2a565b602082019050919050565b6000613214601b836135ac565b915061321f82613c53565b602082019050919050565b61323381613747565b82525050565b60006132458286612f90565b91506132518285612f90565b915061325d8284612fc1565b9150819050949350505050565b600061327582613158565b9150819050919050565b60006020820190506132946000830184612f00565b92915050565b60006080820190506132af6000830187612f00565b6132bc6020830186612f00565b6132c9604083018561322a565b81810360608301526132db8184612f1e565b905095945050505050565b60006020820190506132fb6000830184612f0f565b92915050565b6000602082019050818103600083015261331b8184612f57565b905092915050565b6000602082019050818103600083015261333c81613040565b9050919050565b6000602082019050818103600083015261335c81613063565b9050919050565b6000602082019050818103600083015261337c81613086565b9050919050565b6000602082019050818103600083015261339c816130a9565b9050919050565b600060208201905081810360008301526133bc816130cc565b9050919050565b600060208201905081810360008301526133dc816130ef565b9050919050565b600060208201905081810360008301526133fc81613112565b9050919050565b6000602082019050818103600083015261341c81613135565b9050919050565b6000602082019050818103600083015261343c8161317b565b9050919050565b6000602082019050818103600083015261345c8161319e565b9050919050565b6000602082019050818103600083015261347c816131c1565b9050919050565b6000602082019050818103600083015261349c816131e4565b9050919050565b600060208201905081810360008301526134bc81613207565b9050919050565b60006020820190506134d8600083018461322a565b92915050565b60006134e86134f9565b90506134f482826137c5565b919050565b6000604051905090565b600067ffffffffffffffff82111561351e5761351d61392c565b5b6135278261396f565b9050602081019050919050565b600067ffffffffffffffff82111561354f5761354e61392c565b5b6135588261396f565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006135d382613747565b91506135de83613747565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561361357613612613870565b5b828201905092915050565b600061362982613747565b915061363483613747565b9250826136445761364361389f565b5b828204905092915050565b600061365a82613747565b915061366583613747565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561369e5761369d613870565b5b828202905092915050565b60006136b482613747565b91506136bf83613747565b9250828210156136d2576136d1613870565b5b828203905092915050565b60006136e882613727565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561377e578082015181840152602081019050613763565b8381111561378d576000848401525b50505050565b600060028204905060018216806137ab57607f821691505b602082108114156137bf576137be6138ce565b5b50919050565b6137ce8261396f565b810181811067ffffffffffffffff821117156137ed576137ec61392c565b5b80604052505050565b600061380182613747565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561383457613833613870565b5b600182019050919050565b600061384a82613747565b915061385583613747565b9250826138655761386461389f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f504e4755494e533a206d6178206d696e7420706572205478206578636565646560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b7f504e4755494e533a206f6f707320636f6e747261637420697320706175736564600082015250565b7f504e4755494e533a206d6178206d696e7420616d6f756e74207065722074782060008201527f6578636565646564000000000000000000000000000000000000000000000000602082015250565b7f504e4755494e533a20696e73756666696369656e742066756e64730000000000600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f504e4755494e533a206e65656420746f206d696e74206174206c65617374203160008201527f204e465400000000000000000000000000000000000000000000000000000000602082015250565b7f504e4755494e533a20576520536f6c646f757400000000000000000000000000600082015250565b7f504e4755494e533a2057686974656c697374204d6178537570706c792065786360008201527f6565646564000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b613c85816136dd565b8114613c9057600080fd5b50565b613c9c816136ef565b8114613ca757600080fd5b50565b613cb3816136fb565b8114613cbe57600080fd5b50565b613cca81613747565b8114613cd557600080fd5b5056fea264697066735822122050cbebb17068ecb61c3ea943f802e81ba825793e72c444d755a88501cd6e9f7f64736f6c63430008070033

Deployed Bytecode Sourcemap

46825:3510:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21416:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50079:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26429:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28497:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27957:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48083:441;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46990:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49643:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20470:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29383:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50161:171;;;:::i;:::-;;29624:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49555:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49455:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47063:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49847:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47168:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26218:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46922:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22095:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7526:103;;;;;;;;;;;;;:::i;:::-;;48589:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6875:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26598:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47583:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28773:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29880:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47132:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46948:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49363:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48917:424;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47028:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49951:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49745:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29152:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7784:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47099:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21416:615;21501:4;21816:10;21801:25;;:11;:25;;;;:102;;;;21893:10;21878:25;;:11;:25;;;;21801:102;:179;;;;21970:10;21955:25;;:11;:25;;;;21801:179;21781:199;;21416:615;;;:::o;50079:73::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50140:6:::1;50131;;:15;;;;;;;;;;;;;;;;;;50079:73:::0;:::o;26429:100::-;26483:13;26516:5;26509:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26429:100;:::o;28497:204::-;28565:7;28590:16;28598:7;28590;:16::i;:::-;28585:64;;28615:34;;;;;;;;;;;;;;28585:64;28669:15;:24;28685:7;28669:24;;;;;;;;;;;;;;;;;;;;;28662:31;;28497:204;;;:::o;27957:474::-;28030:13;28062:27;28081:7;28062:18;:27::i;:::-;28030:61;;28112:5;28106:11;;:2;:11;;;28102:48;;;28126:24;;;;;;;;;;;;;;28102:48;28190:5;28167:28;;:19;:17;:19::i;:::-;:28;;;28163:175;;28215:44;28232:5;28239:19;:17;:19::i;:::-;28215:16;:44::i;:::-;28210:128;;28287:35;;;;;;;;;;;;;;28210:128;28163:175;28377:2;28350:15;:24;28366:7;28350:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;28415:7;28411:2;28395:28;;28404:5;28395:28;;;;;;;;;;;;28019:412;27957:474;;:::o;48083:441::-;1849:1;2447:7;;:19;;2439:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1849:1;2580:7;:18;;;;48161:6:::1;;;;;;;;;;;48160:7;48152:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;48211:14;48228:13;:11;:13::i;:::-;48211:30;;48265:1;48256:6;:10;48248:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;48332:12;;48322:6;:22;;48314:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48416:10;;48406:6;48397;:15;;;;:::i;:::-;:29;;48389:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;48481:31;48491:12;:10;:12::i;:::-;48505:6;48481:9;:31::i;:::-;48145:379;1805:1:::0;2759:7;:22;;;;48083:441;:::o;46990:33::-;;;;:::o;49643:94::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49721:10:::1;49709:9;:22;;;;49643:94:::0;:::o;20470:315::-;20523:7;20751:15;:13;:15::i;:::-;20736:12;;20720:13;;:28;:46;20713:53;;20470:315;:::o;29383:170::-;29517:28;29527:4;29533:2;29537:7;29517:9;:28::i;:::-;29383:170;;;:::o;50161:171::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1849:1:::1;2447:7;;:19;;2439:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1849:1;2580:7;:18;;;;50227:12:::2;50253:10;50245:24;;50277:21;50245:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50226:77;;;50318:7;50310:16;;;::::0;::::2;;50219:113;1805:1:::1;2759:7;:22;;;;50161:171::o:0;29624:185::-;29762:39;29779:4;29785:2;29789:7;29762:39;;;;;;;;;;;;:16;:39::i;:::-;29624:185;;;:::o;49555:80::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49621:8:::1;49614:4;:15;;;;49555:80:::0;:::o;49455:92::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49535:6:::1;49520:12;:21;;;;49455:92:::0;:::o;47063:31::-;;;;:::o;49847:98::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49928:11:::1;49918:7;:21;;;;;;;;;;;;:::i;:::-;;49847:98:::0;:::o;47168:25::-;;;;;;;;;;;;;:::o;26218:144::-;26282:7;26325:27;26344:7;26325:18;:27::i;:::-;26302:52;;26218:144;;;:::o;46922:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22095:224::-;22159:7;22200:1;22183:19;;:5;:19;;;22179:60;;;22211:28;;;;;;;;;;;;;;22179:60;17434:13;22257:18;:25;22276:5;22257:25;;;;;;;;;;;;;;;;:54;22250:61;;22095:224;;;:::o;7526:103::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7591:30:::1;7618:1;7591:18;:30::i;:::-;7526:103::o:0;48589:318::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1849:1:::1;2447:7;;:19;;2439:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1849:1;2580:7;:18;;;;48704:1:::2;48690:11;:15;48682:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;48744:14;48761:13;:11;:13::i;:::-;48744:30;;48813:9;;48798:11;48789:6;:20;;;;:::i;:::-;:33;;48781:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48860:35;48870:11;48883;48860:9;:35::i;:::-;48675:232;1805:1:::1;2759:7;:22;;;;48589:318:::0;;:::o;6875:87::-;6921:7;6948:6;;;;;;;;;;;6941:13;;6875:87;:::o;26598:104::-;26654:13;26687:7;26680:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26598:104;:::o;47583:492::-;1849:1;2447:7;;:19;;2439:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1849:1;2580:7;:18;;;;47657:6:::1;;;;;;;;;;;47656:7;47648:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;47707:14;47724:13;:11;:13::i;:::-;47707:30;;47761:1;47752:6;:10;47744:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;47828:8;;47818:6;:18;;47810:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;47915:9;;47905:6;47896;:15;;;;:::i;:::-;:28;;47888:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;47983:6;47976:4;;:13;;;;:::i;:::-;47963:9;:26;;47955:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;48032:31;48042:12;:10;:12::i;:::-;48056:6;48032:9;:31::i;:::-;47641:434;1805:1:::0;2759:7;:22;;;;47583:492;:::o;28773:308::-;28884:19;:17;:19::i;:::-;28872:31;;:8;:31;;;28868:61;;;28912:17;;;;;;;;;;;;;;28868:61;28994:8;28942:18;:39;28961:19;:17;:19::i;:::-;28942:39;;;;;;;;;;;;;;;:49;28982:8;28942:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;29054:8;29018:55;;29033:19;:17;:19::i;:::-;29018:55;;;29064:8;29018:55;;;;;;:::i;:::-;;;;;;;;28773:308;;:::o;29880:396::-;30047:28;30057:4;30063:2;30067:7;30047:9;:28::i;:::-;30108:1;30090:2;:14;;;:19;30086:183;;30129:56;30160:4;30166:2;30170:7;30179:5;30129:30;:56::i;:::-;30124:145;;30213:40;;;;;;;;;;;;;;30124:145;30086:183;29880:396;;;;:::o;47132:31::-;;;;:::o;46948:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49363:84::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49435:6:::1;49424:8;:17;;;;49363:84:::0;:::o;48917:424::-;49015:13;49056:16;49064:7;49056;:16::i;:::-;49040:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;49147:28;49178:10;:8;:10::i;:::-;49147:41;;49233:1;49208:14;49202:28;:32;:133;;;;;;;;;;;;;;;;;49270:14;49286:18;:7;:16;:18::i;:::-;49306:13;49253:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49202:133;49195:140;;;48917:424;;;:::o;47028:30::-;;;;:::o;49951:122::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50050:17:::1;50034:13;:33;;;;;;;;;;;;:::i;:::-;;49951:122:::0;:::o;49745:96::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49825:10:::1;49812;:23;;;;49745:96:::0;:::o;29152:164::-;29249:4;29273:18;:25;29292:5;29273:25;;;;;;;;;;;;;;;:35;29299:8;29273:35;;;;;;;;;;;;;;;;;;;;;;;;;29266:42;;29152:164;;;;:::o;7784:201::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7893:1:::1;7873:22;;:8;:22;;;;7865:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7949:28;7968:8;7949:18;:28::i;:::-;7784:201:::0;:::o;47099:28::-;;;;:::o;5599:98::-;5652:7;5679:10;5672:17;;5599:98;:::o;30531:273::-;30588:4;30644:7;30625:15;:13;:15::i;:::-;:26;;:66;;;;;30678:13;;30668:7;:23;30625:66;:152;;;;;30776:1;18204:8;30729:17;:26;30747:7;30729:26;;;;;;;;;;;;:43;:48;30625:152;30605:172;;30531:273;;;:::o;23733:1129::-;23800:7;23820:12;23835:7;23820:22;;23903:4;23884:15;:13;:15::i;:::-;:23;23880:915;;23937:13;;23930:4;:20;23926:869;;;23975:14;23992:17;:23;24010:4;23992:23;;;;;;;;;;;;23975:40;;24108:1;18204:8;24081:6;:23;:28;24077:699;;;24600:113;24617:1;24607:6;:11;24600:113;;;24660:17;:25;24678:6;;;;;;;24660:25;;;;;;;;;;;;24651:34;;24600:113;;;24746:6;24739:13;;;;;;24077:699;23952:843;23926:869;23880:915;24823:31;;;;;;;;;;;;;;23733:1129;;;;:::o;44513:105::-;44573:7;44600:10;44593:17;;44513:105;:::o;30888:104::-;30957:27;30967:2;30971:8;30957:27;;;;;;;;;;;;:9;:27::i;:::-;30888:104;;:::o;47463:101::-;47528:7;47555:1;47548:8;;47463:101;:::o;35770:2515::-;35885:27;35915;35934:7;35915:18;:27::i;:::-;35885:57;;36000:4;35959:45;;35975:19;35959:45;;;35955:86;;36013:28;;;;;;;;;;;;;;35955:86;36054:22;36103:4;36080:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;36124:43;36141:4;36147:19;:17;:19::i;:::-;36124:16;:43::i;:::-;36080:87;:147;;;;36208:19;:17;:19::i;:::-;36184:43;;:20;36196:7;36184:11;:20::i;:::-;:43;;;36080:147;36054:174;;36246:17;36241:66;;36272:35;;;;;;;;;;;;;;36241:66;36336:1;36322:16;;:2;:16;;;36318:52;;;36347:23;;;;;;;;;;;;;;36318:52;36383:43;36405:4;36411:2;36415:7;36424:1;36383:21;:43::i;:::-;36499:15;:24;36515:7;36499:24;;;;;;;;;;;;36492:31;;;;;;;;;;;36891:18;:24;36910:4;36891:24;;;;;;;;;;;;;;;;36889:26;;;;;;;;;;;;36960:18;:22;36979:2;36960:22;;;;;;;;;;;;;;;;36958:24;;;;;;;;;;;18486:8;18088:3;37341:15;:41;;37299:21;37317:2;37299:17;:21::i;:::-;:84;:128;37253:17;:26;37271:7;37253:26;;;;;;;;;;;:174;;;;37597:1;18486:8;37547:19;:46;:51;37543:626;;;37619:19;37651:1;37641:7;:11;37619:33;;37808:1;37774:17;:30;37792:11;37774:30;;;;;;;;;;;;:35;37770:384;;;37912:13;;37897:11;:28;37893:242;;38092:19;38059:17;:30;38077:11;38059:30;;;;;;;;;;;:52;;;;37893:242;37770:384;37600:569;37543:626;38216:7;38212:2;38197:27;;38206:4;38197:27;;;;;;;;;;;;38235:42;38256:4;38262:2;38266:7;38275:1;38235:20;:42::i;:::-;35874:2411;;35770:2515;;;:::o;8145:191::-;8219:16;8238:6;;;;;;;;;;;8219:25;;8264:8;8255:6;;:17;;;;;;;;;;;;;;;;;;8319:8;8288:40;;8309:8;8288:40;;;;;;;;;;;;8208:128;8145:191;:::o;41982:716::-;42145:4;42191:2;42166:45;;;42212:19;:17;:19::i;:::-;42233:4;42239:7;42248:5;42166:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42162:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42466:1;42449:6;:13;:18;42445:235;;;42495:40;;;;;;;;;;;;;;42445:235;42638:6;42632:13;42623:6;42619:2;42615:15;42608:38;42162:529;42335:54;;;42325:64;;;:6;:64;;;;42318:71;;;41982:716;;;;;;:::o;47353:102::-;47413:13;47442:7;47435:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47353:102;:::o;3161:723::-;3217:13;3447:1;3438:5;:10;3434:53;;;3465:10;;;;;;;;;;;;;;;;;;;;;3434:53;3497:12;3512:5;3497:20;;3528:14;3553:78;3568:1;3560:4;:9;3553:78;;3586:8;;;;;:::i;:::-;;;;3617:2;3609:10;;;;;:::i;:::-;;;3553:78;;;3641:19;3673:6;3663:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3641:39;;3691:154;3707:1;3698:5;:10;3691:154;;3735:1;3725:11;;;;;:::i;:::-;;;3802:2;3794:5;:10;;;;:::i;:::-;3781:2;:24;;;;:::i;:::-;3768:39;;3751:6;3758;3751:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3831:2;3822:11;;;;;:::i;:::-;;;3691:154;;;3869:6;3855:21;;;;;3161:723;;;;:::o;31365:2236::-;31488:20;31511:13;;31488:36;;31553:1;31539:16;;:2;:16;;;31535:48;;;31564:19;;;;;;;;;;;;;;31535:48;31610:1;31598:8;:13;31594:44;;;31620:18;;;;;;;;;;;;;;31594:44;31651:61;31681:1;31685:2;31689:12;31703:8;31651:21;:61::i;:::-;32255:1;17571:2;32226:1;:25;;32225:31;32213:8;:44;32187:18;:22;32206:2;32187:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;18351:3;32656:29;32683:1;32671:8;:13;32656:14;:29::i;:::-;:56;;18088:3;32593:15;:41;;32551:21;32569:2;32551:17;:21::i;:::-;:84;:162;32500:17;:31;32518:12;32500:31;;;;;;;;;;;:213;;;;32730:20;32753:12;32730:35;;32780:11;32809:8;32794:12;:23;32780:37;;32856:1;32838:2;:14;;;:19;32834:635;;32878:313;32934:12;32930:2;32909:38;;32926:1;32909:38;;;;;;;;;;;;32975:69;33014:1;33018:2;33022:14;;;;;;33038:5;32975:30;:69::i;:::-;32970:174;;33080:40;;;;;;;;;;;;;;32970:174;33186:3;33171:12;:18;32878:313;;33272:12;33255:13;;:29;33251:43;;33286:8;;;33251:43;32834:635;;;33335:119;33391:14;;;;;;33387:2;33366:40;;33383:1;33366:40;;;;;;;;;;;;33449:3;33434:12;:18;33335:119;;32834:635;33499:12;33483:13;:28;;;;31964:1559;;33533:60;33562:1;33566:2;33570:12;33584:8;33533:20;:60::i;:::-;31477:2124;31365:2236;;;:::o;43346:159::-;;;;;:::o;27518:148::-;27582:14;27643:5;27633:15;;27518:148;;;:::o;44164:158::-;;;;;:::o;27753:142::-;27811:14;27872:5;27862:15;;27753: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:366::-;10342:3;10363:67;10427:2;10422:3;10363:67;:::i;:::-;10356:74;;10439:93;10528:3;10439:93;:::i;:::-;10557:2;10552:3;10548:12;10541:19;;10200:366;;;:::o;10572:::-;10714:3;10735:67;10799:2;10794:3;10735:67;:::i;:::-;10728:74;;10811:93;10900:3;10811:93;:::i;:::-;10929:2;10924:3;10920:12;10913:19;;10572:366;;;:::o;10944:::-;11086:3;11107:67;11171:2;11166:3;11107:67;:::i;:::-;11100:74;;11183:93;11272:3;11183:93;:::i;:::-;11301:2;11296:3;11292:12;11285:19;;10944:366;;;:::o;11316:::-;11458:3;11479:67;11543:2;11538:3;11479:67;:::i;:::-;11472:74;;11555:93;11644:3;11555:93;:::i;:::-;11673:2;11668:3;11664:12;11657:19;;11316:366;;;:::o;11688:::-;11830:3;11851:67;11915:2;11910:3;11851:67;:::i;:::-;11844:74;;11927:93;12016:3;11927:93;:::i;:::-;12045:2;12040:3;12036:12;12029:19;;11688:366;;;:::o;12060:::-;12202:3;12223:67;12287:2;12282:3;12223:67;:::i;:::-;12216:74;;12299:93;12388:3;12299:93;:::i;:::-;12417:2;12412:3;12408:12;12401:19;;12060:366;;;:::o;12432:::-;12574:3;12595:67;12659:2;12654:3;12595:67;:::i;:::-;12588:74;;12671:93;12760:3;12671:93;:::i;:::-;12789:2;12784:3;12780:12;12773:19;;12432:366;;;:::o;12804:::-;12946:3;12967:67;13031:2;13026:3;12967:67;:::i;:::-;12960:74;;13043:93;13132:3;13043:93;:::i;:::-;13161:2;13156:3;13152:12;13145:19;;12804:366;;;:::o;13176:398::-;13335:3;13356:83;13437:1;13432:3;13356:83;:::i;:::-;13349:90;;13448:93;13537:3;13448:93;:::i;:::-;13566:1;13561:3;13557:11;13550:18;;13176:398;;;:::o;13580:366::-;13722:3;13743:67;13807:2;13802:3;13743:67;:::i;:::-;13736:74;;13819:93;13908:3;13819:93;:::i;:::-;13937:2;13932:3;13928:12;13921:19;;13580:366;;;:::o;13952:::-;14094:3;14115:67;14179:2;14174:3;14115:67;:::i;:::-;14108:74;;14191:93;14280:3;14191:93;:::i;:::-;14309:2;14304:3;14300:12;14293:19;;13952:366;;;:::o;14324:::-;14466:3;14487:67;14551:2;14546:3;14487:67;:::i;:::-;14480:74;;14563:93;14652:3;14563:93;:::i;:::-;14681:2;14676:3;14672:12;14665:19;;14324:366;;;:::o;14696:::-;14838:3;14859:67;14923:2;14918:3;14859:67;:::i;:::-;14852:74;;14935:93;15024:3;14935:93;:::i;:::-;15053:2;15048:3;15044:12;15037:19;;14696:366;;;:::o;15068:::-;15210:3;15231:67;15295:2;15290:3;15231:67;:::i;:::-;15224:74;;15307:93;15396:3;15307:93;:::i;:::-;15425:2;15420:3;15416:12;15409:19;;15068:366;;;:::o;15440:118::-;15527:24;15545:5;15527:24;:::i;:::-;15522:3;15515:37;15440:118;;:::o;15564:589::-;15789:3;15811:95;15902:3;15893:6;15811:95;:::i;:::-;15804:102;;15923:95;16014:3;16005:6;15923:95;:::i;:::-;15916:102;;16035:92;16123:3;16114:6;16035:92;:::i;:::-;16028:99;;16144:3;16137:10;;15564:589;;;;;;:::o;16159:379::-;16343:3;16365:147;16508:3;16365:147;:::i;:::-;16358:154;;16529:3;16522:10;;16159:379;;;:::o;16544:222::-;16637:4;16675:2;16664:9;16660:18;16652:26;;16688:71;16756:1;16745:9;16741:17;16732:6;16688:71;:::i;:::-;16544:222;;;;:::o;16772:640::-;16967:4;17005:3;16994:9;16990:19;16982:27;;17019:71;17087:1;17076:9;17072:17;17063:6;17019:71;:::i;:::-;17100:72;17168:2;17157:9;17153:18;17144:6;17100:72;:::i;:::-;17182;17250:2;17239:9;17235:18;17226:6;17182:72;:::i;:::-;17301:9;17295:4;17291:20;17286:2;17275:9;17271:18;17264:48;17329:76;17400:4;17391:6;17329:76;:::i;:::-;17321:84;;16772:640;;;;;;;:::o;17418:210::-;17505:4;17543:2;17532:9;17528:18;17520:26;;17556:65;17618:1;17607:9;17603:17;17594:6;17556:65;:::i;:::-;17418:210;;;;:::o;17634:313::-;17747:4;17785:2;17774:9;17770:18;17762:26;;17834:9;17828:4;17824:20;17820:1;17809:9;17805:17;17798:47;17862:78;17935:4;17926:6;17862:78;:::i;:::-;17854:86;;17634:313;;;;:::o;17953:419::-;18119:4;18157:2;18146:9;18142:18;18134:26;;18206:9;18200:4;18196:20;18192:1;18181:9;18177:17;18170:47;18234:131;18360:4;18234:131;:::i;:::-;18226:139;;17953:419;;;:::o;18378:::-;18544:4;18582:2;18571:9;18567:18;18559:26;;18631:9;18625:4;18621:20;18617:1;18606:9;18602:17;18595:47;18659:131;18785:4;18659:131;:::i;:::-;18651:139;;18378:419;;;:::o;18803:::-;18969:4;19007:2;18996:9;18992:18;18984:26;;19056:9;19050:4;19046:20;19042:1;19031:9;19027:17;19020:47;19084:131;19210:4;19084:131;:::i;:::-;19076:139;;18803:419;;;:::o;19228:::-;19394:4;19432:2;19421:9;19417:18;19409:26;;19481:9;19475:4;19471:20;19467:1;19456:9;19452:17;19445:47;19509:131;19635:4;19509:131;:::i;:::-;19501:139;;19228:419;;;:::o;19653:::-;19819:4;19857:2;19846:9;19842:18;19834:26;;19906:9;19900:4;19896:20;19892:1;19881:9;19877:17;19870:47;19934:131;20060:4;19934:131;:::i;:::-;19926:139;;19653:419;;;:::o;20078:::-;20244:4;20282:2;20271:9;20267:18;20259:26;;20331:9;20325:4;20321:20;20317:1;20306:9;20302:17;20295:47;20359:131;20485:4;20359:131;:::i;:::-;20351:139;;20078:419;;;:::o;20503:::-;20669:4;20707:2;20696:9;20692:18;20684:26;;20756:9;20750:4;20746:20;20742:1;20731:9;20727:17;20720:47;20784:131;20910:4;20784:131;:::i;:::-;20776:139;;20503:419;;;:::o;20928:::-;21094:4;21132:2;21121:9;21117:18;21109:26;;21181:9;21175:4;21171:20;21167:1;21156:9;21152:17;21145:47;21209:131;21335:4;21209:131;:::i;:::-;21201:139;;20928:419;;;:::o;21353:::-;21519:4;21557:2;21546:9;21542:18;21534:26;;21606:9;21600:4;21596:20;21592:1;21581:9;21577:17;21570:47;21634:131;21760:4;21634:131;:::i;:::-;21626:139;;21353:419;;;:::o;21778:::-;21944:4;21982:2;21971:9;21967:18;21959:26;;22031:9;22025:4;22021:20;22017:1;22006:9;22002:17;21995:47;22059:131;22185:4;22059:131;:::i;:::-;22051:139;;21778:419;;;:::o;22203:::-;22369:4;22407:2;22396:9;22392:18;22384:26;;22456:9;22450:4;22446:20;22442:1;22431:9;22427:17;22420:47;22484:131;22610:4;22484:131;:::i;:::-;22476:139;;22203:419;;;:::o;22628:::-;22794:4;22832:2;22821:9;22817:18;22809:26;;22881:9;22875:4;22871:20;22867:1;22856:9;22852:17;22845:47;22909:131;23035:4;22909:131;:::i;:::-;22901:139;;22628:419;;;:::o;23053:::-;23219:4;23257:2;23246:9;23242:18;23234:26;;23306:9;23300:4;23296:20;23292:1;23281:9;23277:17;23270:47;23334:131;23460:4;23334:131;:::i;:::-;23326:139;;23053:419;;;:::o;23478:222::-;23571:4;23609:2;23598:9;23594:18;23586:26;;23622:71;23690:1;23679:9;23675:17;23666:6;23622:71;:::i;:::-;23478:222;;;;:::o;23706:129::-;23740:6;23767:20;;:::i;:::-;23757:30;;23796:33;23824:4;23816:6;23796:33;:::i;:::-;23706:129;;;:::o;23841:75::-;23874:6;23907:2;23901:9;23891:19;;23841:75;:::o;23922:307::-;23983:4;24073:18;24065:6;24062:30;24059:56;;;24095:18;;:::i;:::-;24059:56;24133:29;24155:6;24133:29;:::i;:::-;24125:37;;24217:4;24211;24207:15;24199:23;;23922:307;;;:::o;24235:308::-;24297:4;24387:18;24379:6;24376:30;24373:56;;;24409:18;;:::i;:::-;24373:56;24447:29;24469:6;24447:29;:::i;:::-;24439:37;;24531:4;24525;24521:15;24513:23;;24235:308;;;:::o;24549:141::-;24598:4;24621:3;24613:11;;24644:3;24641:1;24634:14;24678:4;24675:1;24665:18;24657:26;;24549:141;;;:::o;24696:98::-;24747:6;24781:5;24775:12;24765:22;;24696:98;;;:::o;24800:99::-;24852:6;24886:5;24880:12;24870:22;;24800:99;;;:::o;24905:168::-;24988:11;25022:6;25017:3;25010:19;25062:4;25057:3;25053:14;25038:29;;24905:168;;;;:::o;25079:147::-;25180:11;25217:3;25202:18;;25079:147;;;;:::o;25232:169::-;25316:11;25350:6;25345:3;25338:19;25390:4;25385:3;25381:14;25366:29;;25232:169;;;;:::o;25407:148::-;25509:11;25546:3;25531:18;;25407:148;;;;:::o;25561:305::-;25601:3;25620:20;25638:1;25620:20;:::i;:::-;25615:25;;25654:20;25672:1;25654:20;:::i;:::-;25649:25;;25808:1;25740:66;25736:74;25733:1;25730:81;25727:107;;;25814:18;;:::i;:::-;25727:107;25858:1;25855;25851:9;25844:16;;25561:305;;;;:::o;25872:185::-;25912:1;25929:20;25947:1;25929:20;:::i;:::-;25924:25;;25963:20;25981:1;25963:20;:::i;:::-;25958:25;;26002:1;25992:35;;26007:18;;:::i;:::-;25992:35;26049:1;26046;26042:9;26037:14;;25872:185;;;;:::o;26063:348::-;26103:7;26126:20;26144:1;26126:20;:::i;:::-;26121:25;;26160:20;26178:1;26160:20;:::i;:::-;26155:25;;26348:1;26280:66;26276:74;26273:1;26270:81;26265:1;26258:9;26251:17;26247:105;26244:131;;;26355:18;;:::i;:::-;26244:131;26403:1;26400;26396:9;26385:20;;26063:348;;;;:::o;26417:191::-;26457:4;26477:20;26495:1;26477:20;:::i;:::-;26472:25;;26511:20;26529:1;26511:20;:::i;:::-;26506:25;;26550:1;26547;26544:8;26541:34;;;26555:18;;:::i;:::-;26541:34;26600:1;26597;26593:9;26585:17;;26417:191;;;;:::o;26614:96::-;26651:7;26680:24;26698:5;26680:24;:::i;:::-;26669:35;;26614:96;;;:::o;26716:90::-;26750:7;26793:5;26786:13;26779:21;26768:32;;26716:90;;;:::o;26812:149::-;26848:7;26888:66;26881:5;26877:78;26866:89;;26812:149;;;:::o;26967:126::-;27004:7;27044:42;27037:5;27033:54;27022:65;;26967:126;;;:::o;27099:77::-;27136:7;27165:5;27154:16;;27099:77;;;:::o;27182:154::-;27266:6;27261:3;27256;27243:30;27328:1;27319:6;27314:3;27310:16;27303:27;27182:154;;;:::o;27342:307::-;27410:1;27420:113;27434:6;27431:1;27428:13;27420:113;;;27519:1;27514:3;27510:11;27504:18;27500:1;27495:3;27491:11;27484:39;27456:2;27453:1;27449:10;27444:15;;27420:113;;;27551:6;27548:1;27545:13;27542:101;;;27631:1;27622:6;27617:3;27613:16;27606:27;27542:101;27391:258;27342:307;;;:::o;27655:320::-;27699:6;27736:1;27730:4;27726:12;27716:22;;27783:1;27777:4;27773:12;27804:18;27794:81;;27860:4;27852:6;27848:17;27838:27;;27794:81;27922:2;27914:6;27911:14;27891:18;27888:38;27885:84;;;27941:18;;:::i;:::-;27885:84;27706:269;27655:320;;;:::o;27981:281::-;28064:27;28086:4;28064:27;:::i;:::-;28056:6;28052:40;28194:6;28182:10;28179:22;28158:18;28146:10;28143:34;28140:62;28137:88;;;28205:18;;:::i;:::-;28137:88;28245:10;28241:2;28234:22;28024:238;27981:281;;:::o;28268:233::-;28307:3;28330:24;28348:5;28330:24;:::i;:::-;28321:33;;28376:66;28369:5;28366:77;28363:103;;;28446:18;;:::i;:::-;28363:103;28493:1;28486:5;28482:13;28475:20;;28268:233;;;:::o;28507:176::-;28539:1;28556:20;28574:1;28556:20;:::i;:::-;28551:25;;28590:20;28608:1;28590:20;:::i;:::-;28585:25;;28629:1;28619:35;;28634:18;;:::i;:::-;28619:35;28675:1;28672;28668:9;28663:14;;28507:176;;;;:::o;28689:180::-;28737:77;28734:1;28727:88;28834:4;28831:1;28824:15;28858:4;28855:1;28848:15;28875:180;28923:77;28920:1;28913:88;29020:4;29017:1;29010:15;29044:4;29041:1;29034:15;29061:180;29109:77;29106:1;29099:88;29206:4;29203:1;29196:15;29230:4;29227:1;29220:15;29247:180;29295:77;29292:1;29285:88;29392:4;29389:1;29382:15;29416:4;29413:1;29406:15;29433:180;29481:77;29478:1;29471:88;29578:4;29575:1;29568:15;29602:4;29599:1;29592:15;29619:117;29728:1;29725;29718:12;29742:117;29851:1;29848;29841:12;29865:117;29974:1;29971;29964:12;29988:117;30097:1;30094;30087:12;30111:102;30152:6;30203:2;30199:7;30194:2;30187:5;30183:14;30179:28;30169:38;;30111:102;;;:::o;30219:235::-;30359:34;30355:1;30347:6;30343:14;30336:58;30428:18;30423:2;30415:6;30411:15;30404:43;30219:235;:::o;30460:225::-;30600:34;30596:1;30588:6;30584:14;30577:58;30669:8;30664:2;30656:6;30652:15;30645:33;30460:225;:::o;30691:220::-;30831:34;30827:1;30819:6;30815:14;30808:58;30900:3;30895:2;30887:6;30883:15;30876:28;30691:220;:::o;30917:182::-;31057:34;31053:1;31045:6;31041:14;31034:58;30917:182;:::o;31105:227::-;31245:34;31241:1;31233:6;31229:14;31222:58;31314:10;31309:2;31301:6;31297:15;31290:35;31105:227;:::o;31338:177::-;31478:29;31474:1;31466:6;31462:14;31455:53;31338:177;:::o;31521:172::-;31661:24;31657:1;31649:6;31645:14;31638:48;31521:172;:::o;31699:182::-;31839:34;31835:1;31827:6;31823:14;31816:58;31699:182;:::o;31887:114::-;;:::o;32007:223::-;32147:34;32143:1;32135:6;32131:14;32124:58;32216:6;32211:2;32203:6;32199:15;32192:31;32007:223;:::o;32236:169::-;32376:21;32372:1;32364:6;32360:14;32353:45;32236:169;:::o;32411:224::-;32551:34;32547:1;32539:6;32535:14;32528:58;32620:7;32615:2;32607:6;32603:15;32596:32;32411:224;:::o;32641:181::-;32781:33;32777:1;32769:6;32765:14;32758:57;32641:181;:::o;32828:177::-;32968:29;32964:1;32956:6;32952:14;32945:53;32828:177;:::o;33011:122::-;33084:24;33102:5;33084:24;:::i;:::-;33077:5;33074:35;33064:63;;33123:1;33120;33113:12;33064:63;33011:122;:::o;33139:116::-;33209:21;33224:5;33209:21;:::i;:::-;33202:5;33199:32;33189:60;;33245:1;33242;33235:12;33189:60;33139:116;:::o;33261:120::-;33333:23;33350:5;33333:23;:::i;:::-;33326:5;33323:34;33313:62;;33371:1;33368;33361:12;33313:62;33261:120;:::o;33387:122::-;33460:24;33478:5;33460:24;:::i;:::-;33453:5;33450:35;33440:63;;33499:1;33496;33489:12;33440:63;33387:122;:::o

Swarm Source

ipfs://50cbebb17068ecb61c3ea943f802e81ba825793e72c444d755a88501cd6e9f7f
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.