ETH Price: $3,440.41 (+7.78%)
Gas: 14 Gwei

Token

Kogake Carbon (KogakeCarbon)
 

Overview

Max Total Supply

471 KogakeCarbon

Holders

52

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
tesstickle.eth
Balance
2 KogakeCarbon
0xad666002f89aa7d5d802e0eed643541ca52725e3
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:
KogakeCarbon

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : KogakeCarbon.sol
// SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.7;

import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "./ERC721A.sol";

import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

interface IERC20Mintable {
    function mint(address account_, uint256 amount_) external;

    function decimals() external view returns (uint8);
}

contract KogakeCarbon is ERC721A, Ownable, ReentrancyGuard {
    using SafeERC20 for IERC20;

    bool public mintStarted = false;
    bool public mintWhitelistStarted = false;

    mapping(address => bool) public blacklist;
    mapping(address => uint16) public whitelist;

    uint256 internal batchLimit = 5;
    uint256 public constant mintPrice = 0.055 ether;
    uint256 private constant maxNFTs = 5555;
    uint256 private constant fee = 20;
    string private URI = "https://api.kogakecarbon.com/nft/";

    address public treasuryAddr;
    address public tokenAddr;

    constructor(address _treasury, address _token)
        ERC721A("Kogake Carbon", "KogakeCarbon")
    {
        require(_treasury != address(0) && _token != address(0), "zero addr");
        treasuryAddr = _treasury;
        tokenAddr = _token;
    }

    function mint(uint256 amount) public payable {
        require(blacklist[msg.sender] != true, "User is blacklisted");
        require(mintStarted, "Mint is not started");
        require(amount <= batchLimit && amount != 0, "Not in batch limit");
        require(msg.value >= mintPrice * amount, "Not enough ether");
        require(_totalMinted() + amount < maxNFTs, "Too much to mint");

        _mintLogic(amount);
    }

    function whitelistMint(uint256 amount) public {
        require(blacklist[msg.sender] != true, "User is blacklisted");
        require(mintWhitelistStarted, "Mint for whitelist is not started");
        require(_totalMinted() + amount < maxNFTs, "Too much to mint");
        require(
            whitelistMintable() >= amount && amount != 0,
            "Over minting limit"
        );

        _mintLogic(amount);

        whitelist[msg.sender] -= uint16(amount);
    }

    function _mintLogic(uint256 amount) internal nonReentrant {
        _safeMint(msg.sender, amount);

        IERC20Mintable(tokenAddr).mint(
            msg.sender,
            10**IERC20Mintable(tokenAddr).decimals() * amount
        );
    }

    function whitelistMintable() public view returns (uint256) {
        return whitelist[msg.sender];
    }

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

    function setBaseURI(string memory newBaseURI) external onlyOwner {
        URI = newBaseURI;
    }

    function mintedTotal() public view returns (uint256) {
        return _totalMinted();
    }

    function totalMintable() public pure returns (uint256) {
        return maxNFTs;
    }

    function startMint() external onlyOwner {
        mintStarted = true;
    }

    function pauseMint() external onlyOwner {
        mintStarted = false;
    }

    function startWhitelistMint() external onlyOwner {
        mintWhitelistStarted = true;
    }

    function pauseWhitelistMint() external onlyOwner {
        mintWhitelistStarted = false;
    }

    function updateBlacklist(address[] memory users, bool[] memory blackListed)
        external
        onlyOwner
    {
        uint256 length = users.length;
        require(length == blackListed.length);
        for (uint256 i = 0; i < length; i++) {
            blacklist[users[i]] = blackListed[i];
        }
    }

    function updateWhitelist(
        address[] memory users,
        uint16[] memory allowedMechs
    ) external onlyOwner {
        uint256 length = users.length;
        require(length == allowedMechs.length);
        for (uint256 i = 0; i < length; i++) {
            whitelist[users[i]] = allowedMechs[i];
        }
    }

    function withdraw() public onlyOwner {
        uint256 value = address(this).balance;
        uint256 feeToSend = (value * fee) / 100;
        uint256 treasuryPayout = value - feeToSend;
        (bool success, ) = payable(treasuryAddr).call{value: treasuryPayout}(
            ""
        );
        require(success, "Transfer to treasury failed");

        (success, ) = payable(owner()).call{value: feeToSend}("");
        require(success, "Fee transfer failed");

        payable(owner()).transfer(address(this).balance);
    }

    function recoverERC20(address tokenAddress, uint256 tokenAmount)
        external
        onlyOwner
    {
        IERC20(tokenAddress).safeTransfer(msg.sender, tokenAmount);
    }
}

File 2 of 9 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 3 of 9 : ERC721A.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;

import "./IERC721A.sol";

/**
 * @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 4 of 9 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// 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 5 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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 6 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 7 of 9 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 9 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.7;

/**
 * @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 9 of 9 : Context.sol
// SPDX-License-Identifier: MIT
// 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;
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_treasury","type":"address"},{"internalType":"address","name":"_token","type":"address"}],"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintWhitelistStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintedTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pauseWhitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","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":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startWhitelistMint","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":[],"name":"tokenAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"totalMintable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":"treasuryAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"bool[]","name":"blackListed","type":"bool[]"}],"name":"updateBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"uint16[]","name":"allowedMechs","type":"uint16[]"}],"name":"updateWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMintable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055506005600d5560405180606001604052806021815260200162004e6460219139600e9080519060200190620000709291906200038c565b503480156200007e57600080fd5b5060405162004e8538038062004e858339818101604052810190620000a4919062000453565b6040518060400160405280600d81526020017f4b6f67616b6520436172626f6e000000000000000000000000000000000000008152506040518060400160405280600c81526020017f4b6f67616b65436172626f6e00000000000000000000000000000000000000008152508160029080519060200190620001289291906200038c565b508060039080519060200190620001419291906200038c565b5062000152620002b960201b60201c565b60008190555050506200017a6200016e620002be60201b60201c565b620002c660201b60201c565b6001600981905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015620001ed5750600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b6200022f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200022690620004c1565b60405180910390fd5b81600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050620005d5565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200039a9062000528565b90600052602060002090601f016020900481019282620003be57600085556200040a565b82601f10620003d957805160ff19168380011785556200040a565b828001600101855582156200040a579182015b8281111562000409578251825591602001919060010190620003ec565b5b5090506200041991906200041d565b5090565b5b80821115620004385760008160009055506001016200041e565b5090565b6000815190506200044d81620005bb565b92915050565b600080604083850312156200046d576200046c6200058d565b5b60006200047d858286016200043c565b925050602062000490858286016200043c565b9150509250929050565b6000620004a9600983620004e3565b9150620004b68262000592565b602082019050919050565b60006020820190508181036000830152620004dc816200049a565b9050919050565b600082825260208201905092915050565b6000620005018262000508565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200054157607f821691505b602082108114156200055857620005576200055e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b7f7a65726f20616464720000000000000000000000000000000000000000000000600082015250565b620005c681620004f4565b8114620005d257600080fd5b50565b61487f80620005e56000396000f3fe6080604052600436106102255760003560e01c80637907b22b11610123578063a22cb465116100ab578063c87b56dd1161006f578063c87b56dd14610788578063cd85cdb5146107c5578063e985e9c5146107dc578063f2fde38b14610819578063f9f92be41461084257610225565b8063a22cb465146106c9578063a9722cf3146106f2578063adb889961461071d578063b70196d714610748578063b88d4fde1461075f57610225565b80638da5cb5b116100f25780638da5cb5b146105f157806395d89b411461061c5780639ad4949d146106475780639b19251a14610670578063a0712d68146106ad57610225565b80637907b22b14610549578063868ff4a214610574578063891aaf681461059d5780638980f11f146105c857610225565b806335ac3bcc116101b15780635fbe4d1d116101755780635fbe4d1d146104625780636352211e1461048d5780636817c76c146104ca57806370a08231146104f5578063715018a61461053257610225565b806335ac3bcc146103b95780633ccfd60b146103d05780633d857400146103e757806342842e0e1461041057806355f804b31461043957610225565b806318160ddd116101f857806318160ddd146102f857806323b872dd14610323578063260ae1551461034c5780632be095611461037757806330d9a62a1461038e57610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c919061369b565b61087f565b60405161025e9190613bb8565b60405180910390f35b34801561027357600080fd5b5061027c610911565b6040516102899190613bd3565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b4919061373e565b6109a3565b6040516102c69190613b28565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f1919061353e565b610a1f565b005b34801561030457600080fd5b5061030d610bc6565b60405161031a9190613df0565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190613428565b610bdd565b005b34801561035857600080fd5b50610361610bed565b60405161036e9190613df0565b60405180910390f35b34801561038357600080fd5b5061038c610c46565b005b34801561039a57600080fd5b506103a3610cdf565b6040516103b09190613b28565b60405180910390f35b3480156103c557600080fd5b506103ce610d05565b005b3480156103dc57600080fd5b506103e5610d9e565b005b3480156103f357600080fd5b5061040e600480360381019061040991906135f6565b611021565b005b34801561041c57600080fd5b5061043760048036038101906104329190613428565b611162565b005b34801561044557600080fd5b50610460600480360381019061045b91906136f5565b611182565b005b34801561046e57600080fd5b50610477611218565b6040516104849190613b28565b60405180910390f35b34801561049957600080fd5b506104b460048036038101906104af919061373e565b61123e565b6040516104c19190613b28565b60405180910390f35b3480156104d657600080fd5b506104df611250565b6040516104ec9190613df0565b60405180910390f35b34801561050157600080fd5b5061051c600480360381019061051791906133bb565b61125b565b6040516105299190613df0565b60405180910390f35b34801561053e57600080fd5b50610547611314565b005b34801561055557600080fd5b5061055e61139c565b60405161056b9190613bb8565b60405180910390f35b34801561058057600080fd5b5061059b6004803603810190610596919061373e565b6113af565b005b3480156105a957600080fd5b506105b26115c1565b6040516105bf9190613df0565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea919061353e565b6115d0565b005b3480156105fd57600080fd5b5061060661167b565b6040516106139190613b28565b60405180910390f35b34801561062857600080fd5b506106316116a5565b60405161063e9190613bd3565b60405180910390f35b34801561065357600080fd5b5061066e6004803603810190610669919061357e565b611737565b005b34801561067c57600080fd5b50610697600480360381019061069291906133bb565b611875565b6040516106a49190613dd5565b60405180910390f35b6106c760048036038101906106c2919061373e565b611896565b005b3480156106d557600080fd5b506106f060048036038101906106eb91906134fe565b611a82565b005b3480156106fe57600080fd5b50610707611bfa565b6040516107149190613bb8565b60405180910390f35b34801561072957600080fd5b50610732611c0d565b60405161073f9190613df0565b60405180910390f35b34801561075457600080fd5b5061075d611c17565b005b34801561076b57600080fd5b506107866004803603810190610781919061347b565b611cb0565b005b34801561079457600080fd5b506107af60048036038101906107aa919061373e565b611d23565b6040516107bc9190613bd3565b60405180910390f35b3480156107d157600080fd5b506107da611dc2565b005b3480156107e857600080fd5b5061080360048036038101906107fe91906133e8565b611e5b565b6040516108109190613bb8565b60405180910390f35b34801561082557600080fd5b50610840600480360381019061083b91906133bb565b611eef565b005b34801561084e57600080fd5b50610869600480360381019061086491906133bb565b611fe7565b6040516108769190613bb8565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108da57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061090a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610920906142ef565b80601f016020809104026020016040519081016040528092919081815260200182805461094c906142ef565b80156109995780601f1061096e57610100808354040283529160200191610999565b820191906000526020600020905b81548152906001019060200180831161097c57829003601f168201915b5050505050905090565b60006109ae82612007565b6109e4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2a82612066565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a92576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ab1612134565b73ffffffffffffffffffffffffffffffffffffffff1614610b1457610add81610ad8612134565b611e5b565b610b13576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610bd061213c565b6001546000540303905090565b610be8838383612141565b505050565b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff1661ffff16905090565b610c4e6124eb565b73ffffffffffffffffffffffffffffffffffffffff16610c6c61167b565b73ffffffffffffffffffffffffffffffffffffffff1614610cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb990613d15565b60405180910390fd5b6001600a60006101000a81548160ff021916908315150217905550565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d0d6124eb565b73ffffffffffffffffffffffffffffffffffffffff16610d2b61167b565b73ffffffffffffffffffffffffffffffffffffffff1614610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7890613d15565b60405180910390fd5b6000600a60016101000a81548160ff021916908315150217905550565b610da66124eb565b73ffffffffffffffffffffffffffffffffffffffff16610dc461167b565b73ffffffffffffffffffffffffffffffffffffffff1614610e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1190613d15565b60405180910390fd5b600047905060006064601483610e30919061415c565b610e3a9190613fba565b905060008183610e4a91906141ea565b90506000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610e9490613b13565b60006040518083038185875af1925050503d8060008114610ed1576040519150601f19603f3d011682016040523d82523d6000602084013e610ed6565b606091505b5050905080610f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1190613c95565b60405180910390fd5b610f2261167b565b73ffffffffffffffffffffffffffffffffffffffff1683604051610f4590613b13565b60006040518083038185875af1925050503d8060008114610f82576040519150601f19603f3d011682016040523d82523d6000602084013e610f87565b606091505b50508091505080610fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc490613c75565b60405180910390fd5b610fd561167b565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561101a573d6000803e3d6000fd5b5050505050565b6110296124eb565b73ffffffffffffffffffffffffffffffffffffffff1661104761167b565b73ffffffffffffffffffffffffffffffffffffffff161461109d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109490613d15565b60405180910390fd5b600082519050815181146110b057600080fd5b60005b8181101561115c578281815181106110ce576110cd614428565b5b6020026020010151600c60008684815181106110ed576110ec614428565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548161ffff021916908361ffff160217905550808061115490614352565b9150506110b3565b50505050565b61117d83838360405180602001604052806000815250611cb0565b505050565b61118a6124eb565b73ffffffffffffffffffffffffffffffffffffffff166111a861167b565b73ffffffffffffffffffffffffffffffffffffffff16146111fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f590613d15565b60405180910390fd5b80600e9080519060200190611214929190612fb6565b5050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061124982612066565b9050919050565b66c3663566a5800081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112c3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61131c6124eb565b73ffffffffffffffffffffffffffffffffffffffff1661133a61167b565b73ffffffffffffffffffffffffffffffffffffffff1614611390576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138790613d15565b60405180910390fd5b61139a60006124f3565b565b600a60019054906101000a900460ff1681565b60011515600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a90613cd5565b60405180910390fd5b600a60019054906101000a900460ff16611492576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148990613d35565b60405180910390fd5b6115b38161149e6125b9565b6114a89190613f64565b106114e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114df90613c35565b60405180910390fd5b806114f1610bed565b10158015611500575060008114155b61153f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153690613cb5565b60405180910390fd5b611548816125cc565b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900461ffff166115a491906141b6565b92506101000a81548161ffff021916908361ffff16021790555050565b60006115cb6125b9565b905090565b6115d86124eb565b73ffffffffffffffffffffffffffffffffffffffff166115f661167b565b73ffffffffffffffffffffffffffffffffffffffff161461164c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164390613d15565b60405180910390fd5b61167733828473ffffffffffffffffffffffffffffffffffffffff166127749092919063ffffffff16565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546116b4906142ef565b80601f01602080910402602001604051908101604052809291908181526020018280546116e0906142ef565b801561172d5780601f106117025761010080835404028352916020019161172d565b820191906000526020600020905b81548152906001019060200180831161171057829003601f168201915b5050505050905090565b61173f6124eb565b73ffffffffffffffffffffffffffffffffffffffff1661175d61167b565b73ffffffffffffffffffffffffffffffffffffffff16146117b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117aa90613d15565b60405180910390fd5b600082519050815181146117c657600080fd5b60005b8181101561186f578281815181106117e4576117e3614428565b5b6020026020010151600b600086848151811061180357611802614428565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061186790614352565b9150506117c9565b50505050565b600c6020528060005260406000206000915054906101000a900461ffff1681565b60011515600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515141561192a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192190613cd5565b60405180910390fd5b600a60009054906101000a900460ff16611979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197090613cf5565b60405180910390fd5b600d54811115801561198c575060008114155b6119cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c290613d55565b60405180910390fd5b8066c3663566a580006119de919061415c565b341015611a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1790613bf5565b60405180910390fd5b6115b381611a2c6125b9565b611a369190613f64565b10611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d90613c35565b60405180910390fd5b611a7f816125cc565b50565b611a8a612134565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aef576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611afc612134565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ba9612134565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bee9190613bb8565b60405180910390a35050565b600a60009054906101000a900460ff1681565b60006115b3905090565b611c1f6124eb565b73ffffffffffffffffffffffffffffffffffffffff16611c3d61167b565b73ffffffffffffffffffffffffffffffffffffffff1614611c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8a90613d15565b60405180910390fd5b6001600a60016101000a81548160ff021916908315150217905550565b611cbb848484612141565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d1d57611ce6848484846127fa565b611d1c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611d2e82612007565b611d64576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611d6e61295a565b9050600081511415611d8f5760405180602001604052806000815250611dba565b80611d99846129ec565b604051602001611daa929190613aef565b6040516020818303038152906040525b915050919050565b611dca6124eb565b73ffffffffffffffffffffffffffffffffffffffff16611de861167b565b73ffffffffffffffffffffffffffffffffffffffff1614611e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3590613d15565b60405180910390fd5b6000600a60006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ef76124eb565b73ffffffffffffffffffffffffffffffffffffffff16611f1561167b565b73ffffffffffffffffffffffffffffffffffffffff1614611f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6290613d15565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd290613c15565b60405180910390fd5b611fe4816124f3565b50565b600b6020528060005260406000206000915054906101000a900460ff1681565b60008161201261213c565b11158015612021575060005482105b801561205f575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061207561213c565b116120fd576000548110156120fc5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156120fa575b60008114156120f05760046000836001900393508381526020019081526020016000205490506120c5565b809250505061212f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600061214c82612066565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146121b3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166121d4612134565b73ffffffffffffffffffffffffffffffffffffffff1614806122035750612202856121fd612134565b611e5b565b5b806122485750612211612134565b73ffffffffffffffffffffffffffffffffffffffff16612230846109a3565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612281576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122e8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122f58585856001612a46565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6123f286612a4c565b1717600460008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316141561247c57600060018401905060006004600083815260200190815260200160002054141561247a576000548114612479578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124e48585856001612a56565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006125c361213c565b60005403905090565b60026009541415612612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260990613db5565b60405180910390fd5b60026009819055506126243382612a5c565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f193383601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b1580156126cc57600080fd5b505afa1580156126e0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612704919061376b565b600a612710919061403e565b61271a919061415c565b6040518363ffffffff1660e01b8152600401612737929190613b8f565b600060405180830381600087803b15801561275157600080fd5b505af1158015612765573d6000803e3d6000fd5b50505050600160098190555050565b6127f58363a9059cbb60e01b8484604051602401612793929190613b8f565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612a7a565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612820612134565b8786866040518563ffffffff1660e01b81526004016128429493929190613b43565b602060405180830381600087803b15801561285c57600080fd5b505af192505050801561288d57506040513d601f19601f8201168201806040525081019061288a91906136c8565b60015b612907573d80600081146128bd576040519150601f19603f3d011682016040523d82523d6000602084013e6128c2565b606091505b506000815114156128ff576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e8054612969906142ef565b80601f0160208091040260200160405190810160405280929190818152602001828054612995906142ef565b80156129e25780601f106129b7576101008083540402835291602001916129e2565b820191906000526020600020905b8154815290600101906020018083116129c557829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015612a3257600183039250600a81066030018353600a81049050612a12565b508181036020830392508083525050919050565b50505050565b6000819050919050565b50505050565b612a76828260405180602001604052806000815250612b41565b5050565b6000612adc826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16612df69092919063ffffffff16565b9050600081511115612b3c5780806020019051810190612afc919061366e565b612b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3290613d95565b60405180910390fd5b5b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612bae576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612be9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612bf66000858386612a46565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612c5b60018514612e0e565b901b60a042901b612c6b86612a4c565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612d6f575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d1f60008784806001019550876127fa565b612d55576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612cb0578260005414612d6a57600080fd5b612dda565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612d70575b816000819055505050612df06000858386612a56565b50505050565b6060612e058484600085612e18565b90509392505050565b6000819050919050565b606082471015612e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5490613c55565b60405180910390fd5b612e6685612f2c565b612ea5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9c90613d75565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051612ece9190613ad8565b60006040518083038185875af1925050503d8060008114612f0b576040519150601f19603f3d011682016040523d82523d6000602084013e612f10565b606091505b5091509150612f20828286612f4f565b92505050949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60608315612f5f57829050612faf565b600083511115612f725782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa69190613bd3565b60405180910390fd5b9392505050565b828054612fc2906142ef565b90600052602060002090601f016020900481019282612fe4576000855561302b565b82601f10612ffd57805160ff191683800117855561302b565b8280016001018555821561302b579182015b8281111561302a57825182559160200191906001019061300f565b5b509050613038919061303c565b5090565b5b8082111561305557600081600090555060010161303d565b5090565b600061306c61306784613e30565b613e0b565b9050808382526020820190508285602086028201111561308f5761308e61448b565b5b60005b858110156130bf57816130a5888261322d565b845260208401935060208301925050600181019050613092565b5050509392505050565b60006130dc6130d784613e5c565b613e0b565b905080838252602082019050828560208602820111156130ff576130fe61448b565b5b60005b8581101561312f578161311588826132cc565b845260208401935060208301925050600181019050613102565b5050509392505050565b600061314c61314784613e88565b613e0b565b9050808382526020820190508285602086028201111561316f5761316e61448b565b5b60005b8581101561319f5781613185888261337c565b845260208401935060208301925050600181019050613172565b5050509392505050565b60006131bc6131b784613eb4565b613e0b565b9050828152602081018484840111156131d8576131d7614490565b5b6131e38482856142ad565b509392505050565b60006131fe6131f984613ee5565b613e0b565b90508281526020810184848401111561321a57613219614490565b5b6132258482856142ad565b509392505050565b60008135905061323c816147bf565b92915050565b600082601f83011261325757613256614486565b5b8135613267848260208601613059565b91505092915050565b600082601f83011261328557613284614486565b5b81356132958482602086016130c9565b91505092915050565b600082601f8301126132b3576132b2614486565b5b81356132c3848260208601613139565b91505092915050565b6000813590506132db816147d6565b92915050565b6000815190506132f0816147d6565b92915050565b600081359050613305816147ed565b92915050565b60008151905061331a816147ed565b92915050565b600082601f83011261333557613334614486565b5b81356133458482602086016131a9565b91505092915050565b600082601f83011261336357613362614486565b5b81356133738482602086016131eb565b91505092915050565b60008135905061338b81614804565b92915050565b6000813590506133a08161481b565b92915050565b6000815190506133b581614832565b92915050565b6000602082840312156133d1576133d061449a565b5b60006133df8482850161322d565b91505092915050565b600080604083850312156133ff576133fe61449a565b5b600061340d8582860161322d565b925050602061341e8582860161322d565b9150509250929050565b6000806000606084860312156134415761344061449a565b5b600061344f8682870161322d565b93505060206134608682870161322d565b925050604061347186828701613391565b9150509250925092565b600080600080608085870312156134955761349461449a565b5b60006134a38782880161322d565b94505060206134b48782880161322d565b93505060406134c587828801613391565b925050606085013567ffffffffffffffff8111156134e6576134e5614495565b5b6134f287828801613320565b91505092959194509250565b600080604083850312156135155761351461449a565b5b60006135238582860161322d565b9250506020613534858286016132cc565b9150509250929050565b600080604083850312156135555761355461449a565b5b60006135638582860161322d565b925050602061357485828601613391565b9150509250929050565b600080604083850312156135955761359461449a565b5b600083013567ffffffffffffffff8111156135b3576135b2614495565b5b6135bf85828601613242565b925050602083013567ffffffffffffffff8111156135e0576135df614495565b5b6135ec85828601613270565b9150509250929050565b6000806040838503121561360d5761360c61449a565b5b600083013567ffffffffffffffff81111561362b5761362a614495565b5b61363785828601613242565b925050602083013567ffffffffffffffff81111561365857613657614495565b5b6136648582860161329e565b9150509250929050565b6000602082840312156136845761368361449a565b5b6000613692848285016132e1565b91505092915050565b6000602082840312156136b1576136b061449a565b5b60006136bf848285016132f6565b91505092915050565b6000602082840312156136de576136dd61449a565b5b60006136ec8482850161330b565b91505092915050565b60006020828403121561370b5761370a61449a565b5b600082013567ffffffffffffffff81111561372957613728614495565b5b6137358482850161334e565b91505092915050565b6000602082840312156137545761375361449a565b5b600061376284828501613391565b91505092915050565b6000602082840312156137815761378061449a565b5b600061378f848285016133a6565b91505092915050565b6137a18161421e565b82525050565b6137b081614230565b82525050565b60006137c182613f16565b6137cb8185613f2c565b93506137db8185602086016142bc565b6137e48161449f565b840191505092915050565b60006137fa82613f16565b6138048185613f3d565b93506138148185602086016142bc565b80840191505092915050565b600061382b82613f21565b6138358185613f48565b93506138458185602086016142bc565b61384e8161449f565b840191505092915050565b600061386482613f21565b61386e8185613f59565b935061387e8185602086016142bc565b80840191505092915050565b6000613897601083613f48565b91506138a2826144bd565b602082019050919050565b60006138ba602683613f48565b91506138c5826144e6565b604082019050919050565b60006138dd601083613f48565b91506138e882614535565b602082019050919050565b6000613900602683613f48565b915061390b8261455e565b604082019050919050565b6000613923601383613f48565b915061392e826145ad565b602082019050919050565b6000613946601b83613f48565b9150613951826145d6565b602082019050919050565b6000613969601283613f48565b9150613974826145ff565b602082019050919050565b600061398c601383613f48565b915061399782614628565b602082019050919050565b60006139af601383613f48565b91506139ba82614651565b602082019050919050565b60006139d2602083613f48565b91506139dd8261467a565b602082019050919050565b60006139f5602183613f48565b9150613a00826146a3565b604082019050919050565b6000613a18601283613f48565b9150613a23826146f2565b602082019050919050565b6000613a3b600083613f3d565b9150613a468261471b565b600082019050919050565b6000613a5e601d83613f48565b9150613a698261471e565b602082019050919050565b6000613a81602a83613f48565b9150613a8c82614747565b604082019050919050565b6000613aa4601f83613f48565b9150613aaf82614796565b602082019050919050565b613ac381614268565b82525050565b613ad281614296565b82525050565b6000613ae482846137ef565b915081905092915050565b6000613afb8285613859565b9150613b078284613859565b91508190509392505050565b6000613b1e82613a2e565b9150819050919050565b6000602082019050613b3d6000830184613798565b92915050565b6000608082019050613b586000830187613798565b613b656020830186613798565b613b726040830185613ac9565b8181036060830152613b8481846137b6565b905095945050505050565b6000604082019050613ba46000830185613798565b613bb16020830184613ac9565b9392505050565b6000602082019050613bcd60008301846137a7565b92915050565b60006020820190508181036000830152613bed8184613820565b905092915050565b60006020820190508181036000830152613c0e8161388a565b9050919050565b60006020820190508181036000830152613c2e816138ad565b9050919050565b60006020820190508181036000830152613c4e816138d0565b9050919050565b60006020820190508181036000830152613c6e816138f3565b9050919050565b60006020820190508181036000830152613c8e81613916565b9050919050565b60006020820190508181036000830152613cae81613939565b9050919050565b60006020820190508181036000830152613cce8161395c565b9050919050565b60006020820190508181036000830152613cee8161397f565b9050919050565b60006020820190508181036000830152613d0e816139a2565b9050919050565b60006020820190508181036000830152613d2e816139c5565b9050919050565b60006020820190508181036000830152613d4e816139e8565b9050919050565b60006020820190508181036000830152613d6e81613a0b565b9050919050565b60006020820190508181036000830152613d8e81613a51565b9050919050565b60006020820190508181036000830152613dae81613a74565b9050919050565b60006020820190508181036000830152613dce81613a97565b9050919050565b6000602082019050613dea6000830184613aba565b92915050565b6000602082019050613e056000830184613ac9565b92915050565b6000613e15613e26565b9050613e218282614321565b919050565b6000604051905090565b600067ffffffffffffffff821115613e4b57613e4a614457565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613e7757613e76614457565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613ea357613ea2614457565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613ecf57613ece614457565b5b613ed88261449f565b9050602081019050919050565b600067ffffffffffffffff821115613f0057613eff614457565b5b613f098261449f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f6f82614296565b9150613f7a83614296565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613faf57613fae61439b565b5b828201905092915050565b6000613fc582614296565b9150613fd083614296565b925082613fe057613fdf6143ca565b5b828204905092915050565b6000808291508390505b6001851115614035578086048111156140115761401061439b565b5b60018516156140205780820291505b808102905061402e856144b0565b9450613ff5565b94509492505050565b600061404982614296565b9150614054836142a0565b92506140817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484614089565b905092915050565b6000826140995760019050614155565b816140a75760009050614155565b81600181146140bd57600281146140c7576140f6565b6001915050614155565b60ff8411156140d9576140d861439b565b5b8360020a9150848211156140f0576140ef61439b565b5b50614155565b5060208310610133831016604e8410600b841016171561412b5782820a9050838111156141265761412561439b565b5b614155565b6141388484846001613feb565b9250905081840481111561414f5761414e61439b565b5b81810290505b9392505050565b600061416782614296565b915061417283614296565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141ab576141aa61439b565b5b828202905092915050565b60006141c182614268565b91506141cc83614268565b9250828210156141df576141de61439b565b5b828203905092915050565b60006141f582614296565b915061420083614296565b9250828210156142135761421261439b565b5b828203905092915050565b600061422982614276565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156142da5780820151818401526020810190506142bf565b838111156142e9576000848401525b50505050565b6000600282049050600182168061430757607f821691505b6020821081141561431b5761431a6143f9565b5b50919050565b61432a8261449f565b810181811067ffffffffffffffff8211171561434957614348614457565b5b80604052505050565b600061435d82614296565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143905761438f61439b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f4e6f7420656e6f75676820657468657200000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f546f6f206d75636820746f206d696e7400000000000000000000000000000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f466565207472616e73666572206661696c656400000000000000000000000000600082015250565b7f5472616e7366657220746f207472656173757279206661696c65640000000000600082015250565b7f4f766572206d696e74696e67206c696d69740000000000000000000000000000600082015250565b7f5573657220697320626c61636b6c697374656400000000000000000000000000600082015250565b7f4d696e74206973206e6f74207374617274656400000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e7420666f722077686974656c697374206973206e6f742073746172746560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420696e206261746368206c696d69740000000000000000000000000000600082015250565b50565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6147c88161421e565b81146147d357600080fd5b50565b6147df81614230565b81146147ea57600080fd5b50565b6147f68161423c565b811461480157600080fd5b50565b61480d81614268565b811461481857600080fd5b50565b61482481614296565b811461482f57600080fd5b50565b61483b816142a0565b811461484657600080fd5b5056fea26469706673582212201bb98eacb2f3e2d8ba83c515f1a22fa058b7d4bcf50eae4dcf23005ee988e84c64736f6c6343000807003368747470733a2f2f6170692e6b6f67616b65636172626f6e2e636f6d2f6e66742f000000000000000000000000ff3eb36da6a64d62a63942c52adb5b5ce47a270e00000000000000000000000042fc35685a24214a871b4f9ac22fbdfbde31fae2

Deployed Bytecode

0x6080604052600436106102255760003560e01c80637907b22b11610123578063a22cb465116100ab578063c87b56dd1161006f578063c87b56dd14610788578063cd85cdb5146107c5578063e985e9c5146107dc578063f2fde38b14610819578063f9f92be41461084257610225565b8063a22cb465146106c9578063a9722cf3146106f2578063adb889961461071d578063b70196d714610748578063b88d4fde1461075f57610225565b80638da5cb5b116100f25780638da5cb5b146105f157806395d89b411461061c5780639ad4949d146106475780639b19251a14610670578063a0712d68146106ad57610225565b80637907b22b14610549578063868ff4a214610574578063891aaf681461059d5780638980f11f146105c857610225565b806335ac3bcc116101b15780635fbe4d1d116101755780635fbe4d1d146104625780636352211e1461048d5780636817c76c146104ca57806370a08231146104f5578063715018a61461053257610225565b806335ac3bcc146103b95780633ccfd60b146103d05780633d857400146103e757806342842e0e1461041057806355f804b31461043957610225565b806318160ddd116101f857806318160ddd146102f857806323b872dd14610323578063260ae1551461034c5780632be095611461037757806330d9a62a1461038e57610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c919061369b565b61087f565b60405161025e9190613bb8565b60405180910390f35b34801561027357600080fd5b5061027c610911565b6040516102899190613bd3565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b4919061373e565b6109a3565b6040516102c69190613b28565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f1919061353e565b610a1f565b005b34801561030457600080fd5b5061030d610bc6565b60405161031a9190613df0565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190613428565b610bdd565b005b34801561035857600080fd5b50610361610bed565b60405161036e9190613df0565b60405180910390f35b34801561038357600080fd5b5061038c610c46565b005b34801561039a57600080fd5b506103a3610cdf565b6040516103b09190613b28565b60405180910390f35b3480156103c557600080fd5b506103ce610d05565b005b3480156103dc57600080fd5b506103e5610d9e565b005b3480156103f357600080fd5b5061040e600480360381019061040991906135f6565b611021565b005b34801561041c57600080fd5b5061043760048036038101906104329190613428565b611162565b005b34801561044557600080fd5b50610460600480360381019061045b91906136f5565b611182565b005b34801561046e57600080fd5b50610477611218565b6040516104849190613b28565b60405180910390f35b34801561049957600080fd5b506104b460048036038101906104af919061373e565b61123e565b6040516104c19190613b28565b60405180910390f35b3480156104d657600080fd5b506104df611250565b6040516104ec9190613df0565b60405180910390f35b34801561050157600080fd5b5061051c600480360381019061051791906133bb565b61125b565b6040516105299190613df0565b60405180910390f35b34801561053e57600080fd5b50610547611314565b005b34801561055557600080fd5b5061055e61139c565b60405161056b9190613bb8565b60405180910390f35b34801561058057600080fd5b5061059b6004803603810190610596919061373e565b6113af565b005b3480156105a957600080fd5b506105b26115c1565b6040516105bf9190613df0565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea919061353e565b6115d0565b005b3480156105fd57600080fd5b5061060661167b565b6040516106139190613b28565b60405180910390f35b34801561062857600080fd5b506106316116a5565b60405161063e9190613bd3565b60405180910390f35b34801561065357600080fd5b5061066e6004803603810190610669919061357e565b611737565b005b34801561067c57600080fd5b50610697600480360381019061069291906133bb565b611875565b6040516106a49190613dd5565b60405180910390f35b6106c760048036038101906106c2919061373e565b611896565b005b3480156106d557600080fd5b506106f060048036038101906106eb91906134fe565b611a82565b005b3480156106fe57600080fd5b50610707611bfa565b6040516107149190613bb8565b60405180910390f35b34801561072957600080fd5b50610732611c0d565b60405161073f9190613df0565b60405180910390f35b34801561075457600080fd5b5061075d611c17565b005b34801561076b57600080fd5b506107866004803603810190610781919061347b565b611cb0565b005b34801561079457600080fd5b506107af60048036038101906107aa919061373e565b611d23565b6040516107bc9190613bd3565b60405180910390f35b3480156107d157600080fd5b506107da611dc2565b005b3480156107e857600080fd5b5061080360048036038101906107fe91906133e8565b611e5b565b6040516108109190613bb8565b60405180910390f35b34801561082557600080fd5b50610840600480360381019061083b91906133bb565b611eef565b005b34801561084e57600080fd5b50610869600480360381019061086491906133bb565b611fe7565b6040516108769190613bb8565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108da57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061090a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610920906142ef565b80601f016020809104026020016040519081016040528092919081815260200182805461094c906142ef565b80156109995780601f1061096e57610100808354040283529160200191610999565b820191906000526020600020905b81548152906001019060200180831161097c57829003601f168201915b5050505050905090565b60006109ae82612007565b6109e4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2a82612066565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a92576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ab1612134565b73ffffffffffffffffffffffffffffffffffffffff1614610b1457610add81610ad8612134565b611e5b565b610b13576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610bd061213c565b6001546000540303905090565b610be8838383612141565b505050565b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff1661ffff16905090565b610c4e6124eb565b73ffffffffffffffffffffffffffffffffffffffff16610c6c61167b565b73ffffffffffffffffffffffffffffffffffffffff1614610cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb990613d15565b60405180910390fd5b6001600a60006101000a81548160ff021916908315150217905550565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d0d6124eb565b73ffffffffffffffffffffffffffffffffffffffff16610d2b61167b565b73ffffffffffffffffffffffffffffffffffffffff1614610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7890613d15565b60405180910390fd5b6000600a60016101000a81548160ff021916908315150217905550565b610da66124eb565b73ffffffffffffffffffffffffffffffffffffffff16610dc461167b565b73ffffffffffffffffffffffffffffffffffffffff1614610e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1190613d15565b60405180910390fd5b600047905060006064601483610e30919061415c565b610e3a9190613fba565b905060008183610e4a91906141ea565b90506000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610e9490613b13565b60006040518083038185875af1925050503d8060008114610ed1576040519150601f19603f3d011682016040523d82523d6000602084013e610ed6565b606091505b5050905080610f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1190613c95565b60405180910390fd5b610f2261167b565b73ffffffffffffffffffffffffffffffffffffffff1683604051610f4590613b13565b60006040518083038185875af1925050503d8060008114610f82576040519150601f19603f3d011682016040523d82523d6000602084013e610f87565b606091505b50508091505080610fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc490613c75565b60405180910390fd5b610fd561167b565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561101a573d6000803e3d6000fd5b5050505050565b6110296124eb565b73ffffffffffffffffffffffffffffffffffffffff1661104761167b565b73ffffffffffffffffffffffffffffffffffffffff161461109d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109490613d15565b60405180910390fd5b600082519050815181146110b057600080fd5b60005b8181101561115c578281815181106110ce576110cd614428565b5b6020026020010151600c60008684815181106110ed576110ec614428565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548161ffff021916908361ffff160217905550808061115490614352565b9150506110b3565b50505050565b61117d83838360405180602001604052806000815250611cb0565b505050565b61118a6124eb565b73ffffffffffffffffffffffffffffffffffffffff166111a861167b565b73ffffffffffffffffffffffffffffffffffffffff16146111fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f590613d15565b60405180910390fd5b80600e9080519060200190611214929190612fb6565b5050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061124982612066565b9050919050565b66c3663566a5800081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112c3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61131c6124eb565b73ffffffffffffffffffffffffffffffffffffffff1661133a61167b565b73ffffffffffffffffffffffffffffffffffffffff1614611390576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138790613d15565b60405180910390fd5b61139a60006124f3565b565b600a60019054906101000a900460ff1681565b60011515600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a90613cd5565b60405180910390fd5b600a60019054906101000a900460ff16611492576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148990613d35565b60405180910390fd5b6115b38161149e6125b9565b6114a89190613f64565b106114e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114df90613c35565b60405180910390fd5b806114f1610bed565b10158015611500575060008114155b61153f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153690613cb5565b60405180910390fd5b611548816125cc565b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900461ffff166115a491906141b6565b92506101000a81548161ffff021916908361ffff16021790555050565b60006115cb6125b9565b905090565b6115d86124eb565b73ffffffffffffffffffffffffffffffffffffffff166115f661167b565b73ffffffffffffffffffffffffffffffffffffffff161461164c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164390613d15565b60405180910390fd5b61167733828473ffffffffffffffffffffffffffffffffffffffff166127749092919063ffffffff16565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546116b4906142ef565b80601f01602080910402602001604051908101604052809291908181526020018280546116e0906142ef565b801561172d5780601f106117025761010080835404028352916020019161172d565b820191906000526020600020905b81548152906001019060200180831161171057829003601f168201915b5050505050905090565b61173f6124eb565b73ffffffffffffffffffffffffffffffffffffffff1661175d61167b565b73ffffffffffffffffffffffffffffffffffffffff16146117b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117aa90613d15565b60405180910390fd5b600082519050815181146117c657600080fd5b60005b8181101561186f578281815181106117e4576117e3614428565b5b6020026020010151600b600086848151811061180357611802614428565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061186790614352565b9150506117c9565b50505050565b600c6020528060005260406000206000915054906101000a900461ffff1681565b60011515600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515141561192a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192190613cd5565b60405180910390fd5b600a60009054906101000a900460ff16611979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197090613cf5565b60405180910390fd5b600d54811115801561198c575060008114155b6119cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c290613d55565b60405180910390fd5b8066c3663566a580006119de919061415c565b341015611a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1790613bf5565b60405180910390fd5b6115b381611a2c6125b9565b611a369190613f64565b10611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d90613c35565b60405180910390fd5b611a7f816125cc565b50565b611a8a612134565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aef576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611afc612134565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ba9612134565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bee9190613bb8565b60405180910390a35050565b600a60009054906101000a900460ff1681565b60006115b3905090565b611c1f6124eb565b73ffffffffffffffffffffffffffffffffffffffff16611c3d61167b565b73ffffffffffffffffffffffffffffffffffffffff1614611c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8a90613d15565b60405180910390fd5b6001600a60016101000a81548160ff021916908315150217905550565b611cbb848484612141565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d1d57611ce6848484846127fa565b611d1c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611d2e82612007565b611d64576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611d6e61295a565b9050600081511415611d8f5760405180602001604052806000815250611dba565b80611d99846129ec565b604051602001611daa929190613aef565b6040516020818303038152906040525b915050919050565b611dca6124eb565b73ffffffffffffffffffffffffffffffffffffffff16611de861167b565b73ffffffffffffffffffffffffffffffffffffffff1614611e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3590613d15565b60405180910390fd5b6000600a60006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ef76124eb565b73ffffffffffffffffffffffffffffffffffffffff16611f1561167b565b73ffffffffffffffffffffffffffffffffffffffff1614611f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6290613d15565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd290613c15565b60405180910390fd5b611fe4816124f3565b50565b600b6020528060005260406000206000915054906101000a900460ff1681565b60008161201261213c565b11158015612021575060005482105b801561205f575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061207561213c565b116120fd576000548110156120fc5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156120fa575b60008114156120f05760046000836001900393508381526020019081526020016000205490506120c5565b809250505061212f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600061214c82612066565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146121b3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166121d4612134565b73ffffffffffffffffffffffffffffffffffffffff1614806122035750612202856121fd612134565b611e5b565b5b806122485750612211612134565b73ffffffffffffffffffffffffffffffffffffffff16612230846109a3565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612281576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122e8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122f58585856001612a46565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6123f286612a4c565b1717600460008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316141561247c57600060018401905060006004600083815260200190815260200160002054141561247a576000548114612479578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124e48585856001612a56565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006125c361213c565b60005403905090565b60026009541415612612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260990613db5565b60405180910390fd5b60026009819055506126243382612a5c565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f193383601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b1580156126cc57600080fd5b505afa1580156126e0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612704919061376b565b600a612710919061403e565b61271a919061415c565b6040518363ffffffff1660e01b8152600401612737929190613b8f565b600060405180830381600087803b15801561275157600080fd5b505af1158015612765573d6000803e3d6000fd5b50505050600160098190555050565b6127f58363a9059cbb60e01b8484604051602401612793929190613b8f565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612a7a565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612820612134565b8786866040518563ffffffff1660e01b81526004016128429493929190613b43565b602060405180830381600087803b15801561285c57600080fd5b505af192505050801561288d57506040513d601f19601f8201168201806040525081019061288a91906136c8565b60015b612907573d80600081146128bd576040519150601f19603f3d011682016040523d82523d6000602084013e6128c2565b606091505b506000815114156128ff576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e8054612969906142ef565b80601f0160208091040260200160405190810160405280929190818152602001828054612995906142ef565b80156129e25780601f106129b7576101008083540402835291602001916129e2565b820191906000526020600020905b8154815290600101906020018083116129c557829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015612a3257600183039250600a81066030018353600a81049050612a12565b508181036020830392508083525050919050565b50505050565b6000819050919050565b50505050565b612a76828260405180602001604052806000815250612b41565b5050565b6000612adc826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16612df69092919063ffffffff16565b9050600081511115612b3c5780806020019051810190612afc919061366e565b612b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3290613d95565b60405180910390fd5b5b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612bae576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612be9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612bf66000858386612a46565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612c5b60018514612e0e565b901b60a042901b612c6b86612a4c565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612d6f575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d1f60008784806001019550876127fa565b612d55576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612cb0578260005414612d6a57600080fd5b612dda565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612d70575b816000819055505050612df06000858386612a56565b50505050565b6060612e058484600085612e18565b90509392505050565b6000819050919050565b606082471015612e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5490613c55565b60405180910390fd5b612e6685612f2c565b612ea5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9c90613d75565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051612ece9190613ad8565b60006040518083038185875af1925050503d8060008114612f0b576040519150601f19603f3d011682016040523d82523d6000602084013e612f10565b606091505b5091509150612f20828286612f4f565b92505050949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60608315612f5f57829050612faf565b600083511115612f725782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa69190613bd3565b60405180910390fd5b9392505050565b828054612fc2906142ef565b90600052602060002090601f016020900481019282612fe4576000855561302b565b82601f10612ffd57805160ff191683800117855561302b565b8280016001018555821561302b579182015b8281111561302a57825182559160200191906001019061300f565b5b509050613038919061303c565b5090565b5b8082111561305557600081600090555060010161303d565b5090565b600061306c61306784613e30565b613e0b565b9050808382526020820190508285602086028201111561308f5761308e61448b565b5b60005b858110156130bf57816130a5888261322d565b845260208401935060208301925050600181019050613092565b5050509392505050565b60006130dc6130d784613e5c565b613e0b565b905080838252602082019050828560208602820111156130ff576130fe61448b565b5b60005b8581101561312f578161311588826132cc565b845260208401935060208301925050600181019050613102565b5050509392505050565b600061314c61314784613e88565b613e0b565b9050808382526020820190508285602086028201111561316f5761316e61448b565b5b60005b8581101561319f5781613185888261337c565b845260208401935060208301925050600181019050613172565b5050509392505050565b60006131bc6131b784613eb4565b613e0b565b9050828152602081018484840111156131d8576131d7614490565b5b6131e38482856142ad565b509392505050565b60006131fe6131f984613ee5565b613e0b565b90508281526020810184848401111561321a57613219614490565b5b6132258482856142ad565b509392505050565b60008135905061323c816147bf565b92915050565b600082601f83011261325757613256614486565b5b8135613267848260208601613059565b91505092915050565b600082601f83011261328557613284614486565b5b81356132958482602086016130c9565b91505092915050565b600082601f8301126132b3576132b2614486565b5b81356132c3848260208601613139565b91505092915050565b6000813590506132db816147d6565b92915050565b6000815190506132f0816147d6565b92915050565b600081359050613305816147ed565b92915050565b60008151905061331a816147ed565b92915050565b600082601f83011261333557613334614486565b5b81356133458482602086016131a9565b91505092915050565b600082601f83011261336357613362614486565b5b81356133738482602086016131eb565b91505092915050565b60008135905061338b81614804565b92915050565b6000813590506133a08161481b565b92915050565b6000815190506133b581614832565b92915050565b6000602082840312156133d1576133d061449a565b5b60006133df8482850161322d565b91505092915050565b600080604083850312156133ff576133fe61449a565b5b600061340d8582860161322d565b925050602061341e8582860161322d565b9150509250929050565b6000806000606084860312156134415761344061449a565b5b600061344f8682870161322d565b93505060206134608682870161322d565b925050604061347186828701613391565b9150509250925092565b600080600080608085870312156134955761349461449a565b5b60006134a38782880161322d565b94505060206134b48782880161322d565b93505060406134c587828801613391565b925050606085013567ffffffffffffffff8111156134e6576134e5614495565b5b6134f287828801613320565b91505092959194509250565b600080604083850312156135155761351461449a565b5b60006135238582860161322d565b9250506020613534858286016132cc565b9150509250929050565b600080604083850312156135555761355461449a565b5b60006135638582860161322d565b925050602061357485828601613391565b9150509250929050565b600080604083850312156135955761359461449a565b5b600083013567ffffffffffffffff8111156135b3576135b2614495565b5b6135bf85828601613242565b925050602083013567ffffffffffffffff8111156135e0576135df614495565b5b6135ec85828601613270565b9150509250929050565b6000806040838503121561360d5761360c61449a565b5b600083013567ffffffffffffffff81111561362b5761362a614495565b5b61363785828601613242565b925050602083013567ffffffffffffffff81111561365857613657614495565b5b6136648582860161329e565b9150509250929050565b6000602082840312156136845761368361449a565b5b6000613692848285016132e1565b91505092915050565b6000602082840312156136b1576136b061449a565b5b60006136bf848285016132f6565b91505092915050565b6000602082840312156136de576136dd61449a565b5b60006136ec8482850161330b565b91505092915050565b60006020828403121561370b5761370a61449a565b5b600082013567ffffffffffffffff81111561372957613728614495565b5b6137358482850161334e565b91505092915050565b6000602082840312156137545761375361449a565b5b600061376284828501613391565b91505092915050565b6000602082840312156137815761378061449a565b5b600061378f848285016133a6565b91505092915050565b6137a18161421e565b82525050565b6137b081614230565b82525050565b60006137c182613f16565b6137cb8185613f2c565b93506137db8185602086016142bc565b6137e48161449f565b840191505092915050565b60006137fa82613f16565b6138048185613f3d565b93506138148185602086016142bc565b80840191505092915050565b600061382b82613f21565b6138358185613f48565b93506138458185602086016142bc565b61384e8161449f565b840191505092915050565b600061386482613f21565b61386e8185613f59565b935061387e8185602086016142bc565b80840191505092915050565b6000613897601083613f48565b91506138a2826144bd565b602082019050919050565b60006138ba602683613f48565b91506138c5826144e6565b604082019050919050565b60006138dd601083613f48565b91506138e882614535565b602082019050919050565b6000613900602683613f48565b915061390b8261455e565b604082019050919050565b6000613923601383613f48565b915061392e826145ad565b602082019050919050565b6000613946601b83613f48565b9150613951826145d6565b602082019050919050565b6000613969601283613f48565b9150613974826145ff565b602082019050919050565b600061398c601383613f48565b915061399782614628565b602082019050919050565b60006139af601383613f48565b91506139ba82614651565b602082019050919050565b60006139d2602083613f48565b91506139dd8261467a565b602082019050919050565b60006139f5602183613f48565b9150613a00826146a3565b604082019050919050565b6000613a18601283613f48565b9150613a23826146f2565b602082019050919050565b6000613a3b600083613f3d565b9150613a468261471b565b600082019050919050565b6000613a5e601d83613f48565b9150613a698261471e565b602082019050919050565b6000613a81602a83613f48565b9150613a8c82614747565b604082019050919050565b6000613aa4601f83613f48565b9150613aaf82614796565b602082019050919050565b613ac381614268565b82525050565b613ad281614296565b82525050565b6000613ae482846137ef565b915081905092915050565b6000613afb8285613859565b9150613b078284613859565b91508190509392505050565b6000613b1e82613a2e565b9150819050919050565b6000602082019050613b3d6000830184613798565b92915050565b6000608082019050613b586000830187613798565b613b656020830186613798565b613b726040830185613ac9565b8181036060830152613b8481846137b6565b905095945050505050565b6000604082019050613ba46000830185613798565b613bb16020830184613ac9565b9392505050565b6000602082019050613bcd60008301846137a7565b92915050565b60006020820190508181036000830152613bed8184613820565b905092915050565b60006020820190508181036000830152613c0e8161388a565b9050919050565b60006020820190508181036000830152613c2e816138ad565b9050919050565b60006020820190508181036000830152613c4e816138d0565b9050919050565b60006020820190508181036000830152613c6e816138f3565b9050919050565b60006020820190508181036000830152613c8e81613916565b9050919050565b60006020820190508181036000830152613cae81613939565b9050919050565b60006020820190508181036000830152613cce8161395c565b9050919050565b60006020820190508181036000830152613cee8161397f565b9050919050565b60006020820190508181036000830152613d0e816139a2565b9050919050565b60006020820190508181036000830152613d2e816139c5565b9050919050565b60006020820190508181036000830152613d4e816139e8565b9050919050565b60006020820190508181036000830152613d6e81613a0b565b9050919050565b60006020820190508181036000830152613d8e81613a51565b9050919050565b60006020820190508181036000830152613dae81613a74565b9050919050565b60006020820190508181036000830152613dce81613a97565b9050919050565b6000602082019050613dea6000830184613aba565b92915050565b6000602082019050613e056000830184613ac9565b92915050565b6000613e15613e26565b9050613e218282614321565b919050565b6000604051905090565b600067ffffffffffffffff821115613e4b57613e4a614457565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613e7757613e76614457565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613ea357613ea2614457565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613ecf57613ece614457565b5b613ed88261449f565b9050602081019050919050565b600067ffffffffffffffff821115613f0057613eff614457565b5b613f098261449f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f6f82614296565b9150613f7a83614296565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613faf57613fae61439b565b5b828201905092915050565b6000613fc582614296565b9150613fd083614296565b925082613fe057613fdf6143ca565b5b828204905092915050565b6000808291508390505b6001851115614035578086048111156140115761401061439b565b5b60018516156140205780820291505b808102905061402e856144b0565b9450613ff5565b94509492505050565b600061404982614296565b9150614054836142a0565b92506140817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484614089565b905092915050565b6000826140995760019050614155565b816140a75760009050614155565b81600181146140bd57600281146140c7576140f6565b6001915050614155565b60ff8411156140d9576140d861439b565b5b8360020a9150848211156140f0576140ef61439b565b5b50614155565b5060208310610133831016604e8410600b841016171561412b5782820a9050838111156141265761412561439b565b5b614155565b6141388484846001613feb565b9250905081840481111561414f5761414e61439b565b5b81810290505b9392505050565b600061416782614296565b915061417283614296565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141ab576141aa61439b565b5b828202905092915050565b60006141c182614268565b91506141cc83614268565b9250828210156141df576141de61439b565b5b828203905092915050565b60006141f582614296565b915061420083614296565b9250828210156142135761421261439b565b5b828203905092915050565b600061422982614276565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156142da5780820151818401526020810190506142bf565b838111156142e9576000848401525b50505050565b6000600282049050600182168061430757607f821691505b6020821081141561431b5761431a6143f9565b5b50919050565b61432a8261449f565b810181811067ffffffffffffffff8211171561434957614348614457565b5b80604052505050565b600061435d82614296565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143905761438f61439b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f4e6f7420656e6f75676820657468657200000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f546f6f206d75636820746f206d696e7400000000000000000000000000000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f466565207472616e73666572206661696c656400000000000000000000000000600082015250565b7f5472616e7366657220746f207472656173757279206661696c65640000000000600082015250565b7f4f766572206d696e74696e67206c696d69740000000000000000000000000000600082015250565b7f5573657220697320626c61636b6c697374656400000000000000000000000000600082015250565b7f4d696e74206973206e6f74207374617274656400000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e7420666f722077686974656c697374206973206e6f742073746172746560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420696e206261746368206c696d69740000000000000000000000000000600082015250565b50565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6147c88161421e565b81146147d357600080fd5b50565b6147df81614230565b81146147ea57600080fd5b50565b6147f68161423c565b811461480157600080fd5b50565b61480d81614268565b811461481857600080fd5b50565b61482481614296565b811461482f57600080fd5b50565b61483b816142a0565b811461484657600080fd5b5056fea26469706673582212201bb98eacb2f3e2d8ba83c515f1a22fa058b7d4bcf50eae4dcf23005ee988e84c64736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000ff3eb36da6a64d62a63942c52adb5b5ce47a270e00000000000000000000000042fc35685a24214a871b4f9ac22fbdfbde31fae2

-----Decoded View---------------
Arg [0] : _treasury (address): 0xFf3eB36Da6a64D62a63942c52adB5B5Ce47A270e
Arg [1] : _token (address): 0x42fC35685a24214A871b4f9AC22FbDFBDE31Fae2

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000ff3eb36da6a64d62a63942c52adb5b5ce47a270e
Arg [1] : 00000000000000000000000042fc35685a24214a871b4f9ac22fbdfbde31fae2


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.