ETH Price: $3,416.46 (-2.39%)
Gas: 9 Gwei

Token

MadPig (MP)
 

Overview

Max Total Supply

2,352 MP

Holders

746

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
vkwest.eth
Balance
3 MP
0x6f5473bf6f4518037784206000f4d5347c48e98b
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:
MadPig

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-10
*/

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


// OpenZeppelin Contracts (last updated v4.9.0) (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() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

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


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)

pragma solidity ^0.8.0;



/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @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() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 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`,
     * 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,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

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

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // 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 bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID 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`
    // - [232..255] `extraData`
    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 => TokenApprovalRef) private _tokenApprovals;

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @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 virtual 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 virtual 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 virtual 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 virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual 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 auxiliary 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 auxiliary 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 virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    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: [ERC165](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.
    }

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

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

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

    /**
     * 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 initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev 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;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // 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 `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns 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))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, 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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

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

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @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 virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

// File: madpig.sol




pragma solidity >=0.7.0 <0.9.0;





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

  string public baseURI;
  string public baseExtension = "";
  string public notRevealedUri;
  uint256 public cost = 0.001 ether;
  uint256 public maxSupply = 8888;
  uint256 public FreeSupply = 8888;
  uint256 public MaxperWallet = 100;
  uint256 public MaxperWalletFree = 1;
  bool public paused = false;
  bool public revealed = true;

  constructor(
    string memory _initBaseURI,
    string memory _notRevealedUri
  ) ERC721A("MadPig", "MP") {  
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_notRevealedUri);
  }

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

  // public
  /// @dev Public mint 
  function mint(uint256 tokens) public payable nonReentrant {
    require(!paused, "oops contract is paused");
    require(tokens <= MaxperWallet, "max mint amount per tx exceeded");
    require(totalSupply() + tokens <= maxSupply, "We Soldout");
    require(_numberMinted(_msgSenderERC721A()) + tokens <= MaxperWallet, "Max NFT Per Wallet exceeded");
    require(msg.value >= cost * tokens, "insufficient funds");

      _safeMint(_msgSenderERC721A(), tokens);
  }
  
/// @dev free mint
    function freemint(uint256 tokens) public nonReentrant {
    require(!paused, "oops contract is paused");
    require(_numberMinted(_msgSenderERC721A()) + tokens <= MaxperWalletFree, "Max NFT Per Wallet exceeded");
    require(tokens <= MaxperWalletFree, "max free mint per Tx exceeded");
    require(totalSupply() + tokens <= FreeSupply, "Whitelist MaxSupply exceeded");

      _safeMint(_msgSenderERC721A(), tokens);
    
  }

  /// @dev use it for giveaway and team mint
     function airdrop(uint256 _mintAmount, address destination) public onlyOwner nonReentrant {
    require(totalSupply() + _mintAmount <= maxSupply, "max NFT limit exceeded");

      _safeMint(destination, _mintAmount);
  }

/// @notice returns metadata link of tokenid
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721AMetadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

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

     /// @notice return the number minted by an address
    function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

    /// @notice return the tokens owned by an address
      function tokensOfOwner(address owner) public view returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }

  //only owner
  function reveal(bool _state) public onlyOwner {
      revealed = _state;
  }

  /// @dev change the public max per wallet
  function setMaxPerWallet(uint256 _limit) public onlyOwner {
    MaxperWallet = _limit;
  }

  /// @dev change the free max per wallet
    function setFreeMaxPerWallet(uint256 _limit) public onlyOwner {
    MaxperWalletFree = _limit;
  }

   /// @dev change the public price(amount need to be in wei)
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  /// @dev cut the supply if we dont sold out
    function setMaxsupply(uint256 _newsupply) public onlyOwner {
    maxSupply = _newsupply;
  }

 /// @dev cut the free supply
    function setFreesupply(uint256 _newsupply) public onlyOwner {
    FreeSupply = _newsupply;
  }

 /// @dev set your baseuri
  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  /// @dev set base extension(default is .json)
  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

   /// @dev set hidden uri
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

 /// @dev to pause and unpause your contract(use booleans true or false)
  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  /// @dev withdraw funds from contract
  function withdraw() public payable onlyOwner nonReentrant {
      uint256 balance = address(this).balance;
      payable(_msgSenderERC721A()).transfer(balance);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_notRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWalletFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"freemint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setFreeMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setFreesupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setMaxsupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405260405180602001604052806000815250600b9081620000249190620005ff565b5066038d7ea4c68000600d556122b8600e556122b8600f55606460105560016011556000601260006101000a81548160ff0219169083151502179055506001601260016101000a81548160ff0219169083151502179055503480156200008957600080fd5b5060405162004603380380620046038339818101604052810190620000af91906200084a565b6040518060400160405280600681526020017f4d616450696700000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4d5000000000000000000000000000000000000000000000000000000000000081525081600290816200012c9190620005ff565b5080600390816200013e9190620005ff565b506200014f620001a960201b60201c565b6000819055505050620001776200016b620001b260201b60201c565b620001ba60201b60201c565b600160098190555062000190826200028060201b60201c565b620001a181620002a560201b60201c565b505062000952565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000290620002ca60201b60201c565b80600a9081620002a19190620005ff565b5050565b620002b5620002ca60201b60201c565b80600c9081620002c69190620005ff565b5050565b620002da620001b260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003006200035b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000359576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003509062000930565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200040757607f821691505b6020821081036200041d576200041c620003bf565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004877fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000448565b62000493868362000448565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004e0620004da620004d484620004ab565b620004b5565b620004ab565b9050919050565b6000819050919050565b620004fc83620004bf565b620005146200050b82620004e7565b84845462000455565b825550505050565b600090565b6200052b6200051c565b62000538818484620004f1565b505050565b5b8181101562000560576200055460008262000521565b6001810190506200053e565b5050565b601f821115620005af57620005798162000423565b620005848462000438565b8101602085101562000594578190505b620005ac620005a38562000438565b8301826200053d565b50505b505050565b600082821c905092915050565b6000620005d460001984600802620005b4565b1980831691505092915050565b6000620005ef8383620005c1565b9150826002028217905092915050565b6200060a8262000385565b67ffffffffffffffff81111562000626576200062562000390565b5b620006328254620003ee565b6200063f82828562000564565b600060209050601f83116001811462000677576000841562000662578287015190505b6200066e8582620005e1565b865550620006de565b601f198416620006878662000423565b60005b82811015620006b1578489015182556001820191506020850194506020810190506200068a565b86831015620006d15784890151620006cd601f891682620005c1565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620007208262000704565b810181811067ffffffffffffffff8211171562000742576200074162000390565b5b80604052505050565b600062000757620006e6565b905062000765828262000715565b919050565b600067ffffffffffffffff82111562000788576200078762000390565b5b620007938262000704565b9050602081019050919050565b60005b83811015620007c0578082015181840152602081019050620007a3565b60008484015250505050565b6000620007e3620007dd846200076a565b6200074b565b905082815260208101848484011115620008025762000801620006ff565b5b6200080f848285620007a0565b509392505050565b600082601f8301126200082f576200082e620006fa565b5b815162000841848260208601620007cc565b91505092915050565b60008060408385031215620008645762000863620006f0565b5b600083015167ffffffffffffffff811115620008855762000884620006f5565b5b620008938582860162000817565b925050602083015167ffffffffffffffff811115620008b757620008b6620006f5565b5b620008c58582860162000817565b9150509250929050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000918602083620008cf565b91506200092582620008e0565b602082019050919050565b600060208201905081810360008301526200094b8162000909565b9050919050565b613ca180620009626000396000f3fe60806040526004361061025c5760003560e01c80636c0360eb11610144578063bd7a1998116100b6578063dc33e6811161007a578063dc33e68114610870578063e1cf8baa146108ad578063e268e4d3146108d6578063e985e9c5146108ff578063f2c4ce1e1461093c578063f2fde38b146109655761025c565b8063bd7a199814610789578063c6682862146107b4578063c87b56dd146107df578063d5abeb011461081c578063da3ef23f146108475761025c565b8063940cd05b11610108578063940cd05b146106ab57806395d89b41146106d4578063a0712d68146106ff578063a22cb4651461071b578063b88d4fde14610744578063bc63f02e146107605761025c565b80636c0360eb146105c457806370a08231146105ef578063715018a61461062c5780638462151c146106435780638da5cb5b146106805761025c565b806323b872dd116101dd57806350839bef116101a157806350839bef146104b257806351830227146104dd57806355f804b3146105085780635c975abb14610531578063624208ae1461055c5780636352211e146105875761025c565b806323b872dd1461041e578063351de26e1461043a5780633ccfd60b1461046357806342842e0e1461046d57806344a0d68a146104895761025c565b8063095ea7b311610224578063095ea7b31461035a5780630fbe4fe21461037657806313faede61461039f578063149835a0146103ca57806318160ddd146103f35761025c565b806301ffc9a71461026157806302329a291461029e57806306fdde03146102c7578063081812fc146102f2578063081c8c441461032f575b600080fd5b34801561026d57600080fd5b50610288600480360381019061028391906129d6565b61098e565b6040516102959190612a1e565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c09190612a65565b610a20565b005b3480156102d357600080fd5b506102dc610a45565b6040516102e99190612b22565b60405180910390f35b3480156102fe57600080fd5b5061031960048036038101906103149190612b7a565b610ad7565b6040516103269190612be8565b60405180910390f35b34801561033b57600080fd5b50610344610b56565b6040516103519190612b22565b60405180910390f35b610374600480360381019061036f9190612c2f565b610be4565b005b34801561038257600080fd5b5061039d60048036038101906103989190612b7a565b610d28565b005b3480156103ab57600080fd5b506103b4610e97565b6040516103c19190612c7e565b60405180910390f35b3480156103d657600080fd5b506103f160048036038101906103ec9190612b7a565b610e9d565b005b3480156103ff57600080fd5b50610408610eaf565b6040516104159190612c7e565b60405180910390f35b61043860048036038101906104339190612c99565b610ec6565b005b34801561044657600080fd5b50610461600480360381019061045c9190612b7a565b6111e8565b005b61046b6111fa565b005b61048760048036038101906104829190612c99565b611268565b005b34801561049557600080fd5b506104b060048036038101906104ab9190612b7a565b611288565b005b3480156104be57600080fd5b506104c761129a565b6040516104d49190612c7e565b60405180910390f35b3480156104e957600080fd5b506104f26112a0565b6040516104ff9190612a1e565b60405180910390f35b34801561051457600080fd5b5061052f600480360381019061052a9190612e21565b6112b3565b005b34801561053d57600080fd5b506105466112ce565b6040516105539190612a1e565b60405180910390f35b34801561056857600080fd5b506105716112e1565b60405161057e9190612c7e565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a99190612b7a565b6112e7565b6040516105bb9190612be8565b60405180910390f35b3480156105d057600080fd5b506105d96112f9565b6040516105e69190612b22565b60405180910390f35b3480156105fb57600080fd5b5061061660048036038101906106119190612e6a565b611387565b6040516106239190612c7e565b60405180910390f35b34801561063857600080fd5b5061064161143f565b005b34801561064f57600080fd5b5061066a60048036038101906106659190612e6a565b611453565b6040516106779190612f55565b60405180910390f35b34801561068c57600080fd5b50610695611596565b6040516106a29190612be8565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd9190612a65565b6115c0565b005b3480156106e057600080fd5b506106e96115e5565b6040516106f69190612b22565b60405180910390f35b61071960048036038101906107149190612b7a565b611677565b005b34801561072757600080fd5b50610742600480360381019061073d9190612f77565b611836565b005b61075e60048036038101906107599190613058565b611941565b005b34801561076c57600080fd5b50610787600480360381019061078291906130db565b6119b4565b005b34801561079557600080fd5b5061079e611a31565b6040516107ab9190612c7e565b60405180910390f35b3480156107c057600080fd5b506107c9611a37565b6040516107d69190612b22565b60405180910390f35b3480156107eb57600080fd5b5061080660048036038101906108019190612b7a565b611ac5565b6040516108139190612b22565b60405180910390f35b34801561082857600080fd5b50610831611c1d565b60405161083e9190612c7e565b60405180910390f35b34801561085357600080fd5b5061086e60048036038101906108699190612e21565b611c23565b005b34801561087c57600080fd5b5061089760048036038101906108929190612e6a565b611c3e565b6040516108a49190612c7e565b60405180910390f35b3480156108b957600080fd5b506108d460048036038101906108cf9190612b7a565b611c50565b005b3480156108e257600080fd5b506108fd60048036038101906108f89190612b7a565b611c62565b005b34801561090b57600080fd5b506109266004803603810190610921919061311b565b611c74565b6040516109339190612a1e565b60405180910390f35b34801561094857600080fd5b50610963600480360381019061095e9190612e21565b611d08565b005b34801561097157600080fd5b5061098c60048036038101906109879190612e6a565b611d23565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109e957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a195750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610a28611da6565b80601260006101000a81548160ff02191690831515021790555050565b606060028054610a549061318a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a809061318a565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b5050505050905090565b6000610ae282611e24565b610b18576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c8054610b639061318a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8f9061318a565b8015610bdc5780601f10610bb157610100808354040283529160200191610bdc565b820191906000526020600020905b815481529060010190602001808311610bbf57829003601f168201915b505050505081565b6000610bef826112e7565b90508073ffffffffffffffffffffffffffffffffffffffff16610c10611e83565b73ffffffffffffffffffffffffffffffffffffffff1614610c7357610c3c81610c37611e83565b611c74565b610c72576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610d30611e8b565b601260009054906101000a900460ff1615610d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7790613207565b60405180910390fd5b60115481610d94610d8f611e83565b611eda565b610d9e9190613256565b1115610ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd6906132d6565b60405180910390fd5b601154811115610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b90613342565b60405180910390fd5b600f5481610e30610eaf565b610e3a9190613256565b1115610e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e72906133ae565b60405180910390fd5b610e8c610e86611e83565b82611f31565b610e94611f4f565b50565b600d5481565b610ea5611da6565b80600e8190555050565b6000610eb9611f59565b6001546000540303905090565b6000610ed182611f62565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f38576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610f448461202e565b91509150610f5a8187610f55611e83565b612055565b610fa657610f6f86610f6a611e83565b611c74565b610fa5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361100c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110198686866001612099565b801561102457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506110f2856110ce88888761209f565b7c0200000000000000000000000000000000000000000000000000000000176120c7565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036111785760006001850190506000600460008381526020019081526020016000205403611176576000548114611175578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46111e086868660016120f2565b505050505050565b6111f0611da6565b8060118190555050565b611202611da6565b61120a611e8b565b6000479050611217611e83565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561125c573d6000803e3d6000fd5b5050611266611f4f565b565b61128383838360405180602001604052806000815250611941565b505050565b611290611da6565b80600d8190555050565b600f5481565b601260019054906101000a900460ff1681565b6112bb611da6565b80600a90816112ca919061357a565b5050565b601260009054906101000a900460ff1681565b60115481565b60006112f282611f62565b9050919050565b600a80546113069061318a565b80601f01602080910402602001604051908101604052809291908181526020018280546113329061318a565b801561137f5780601f106113545761010080835404028352916020019161137f565b820191906000526020600020905b81548152906001019060200180831161136257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113ee576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611447611da6565b61145160006120f8565b565b6060600080600061146385611387565b905060008167ffffffffffffffff81111561148157611480612cf6565b5b6040519080825280602002602001820160405280156114af5781602001602082028036833780820191505090505b5090506114ba61291b565b60006114c4611f59565b90505b838614611588576114d7816121be565b9150816040015161157d57600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461152257816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361157c578083878060010198508151811061156f5761156e61364c565b5b6020026020010181815250505b5b8060010190506114c7565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115c8611da6565b80601260016101000a81548160ff02191690831515021790555050565b6060600380546115f49061318a565b80601f01602080910402602001604051908101604052809291908181526020018280546116209061318a565b801561166d5780601f106116425761010080835404028352916020019161166d565b820191906000526020600020905b81548152906001019060200180831161165057829003601f168201915b5050505050905090565b61167f611e8b565b601260009054906101000a900460ff16156116cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c690613207565b60405180910390fd5b601054811115611714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170b906136c7565b60405180910390fd5b600e5481611720610eaf565b61172a9190613256565b111561176b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176290613733565b60405180910390fd5b6010548161177f61177a611e83565b611eda565b6117899190613256565b11156117ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c1906132d6565b60405180910390fd5b80600d546117d89190613753565b34101561181a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611811906137e1565b60405180910390fd5b61182b611825611e83565b82611f31565b611833611f4f565b50565b8060076000611843611e83565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118f0611e83565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119359190612a1e565b60405180910390a35050565b61194c848484610ec6565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119ae57611977848484846121e9565b6119ad576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6119bc611da6565b6119c4611e8b565b600e54826119d0610eaf565b6119da9190613256565b1115611a1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a129061384d565b60405180910390fd5b611a258183611f31565b611a2d611f4f565b5050565b60105481565b600b8054611a449061318a565b80601f0160208091040260200160405190810160405280929190818152602001828054611a709061318a565b8015611abd5780601f10611a9257610100808354040283529160200191611abd565b820191906000526020600020905b815481529060010190602001808311611aa057829003601f168201915b505050505081565b6060611ad082611e24565b611b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b06906138df565b60405180910390fd5b60001515601260019054906101000a900460ff16151503611bbc57600c8054611b379061318a565b80601f0160208091040260200160405190810160405280929190818152602001828054611b639061318a565b8015611bb05780601f10611b8557610100808354040283529160200191611bb0565b820191906000526020600020905b815481529060010190602001808311611b9357829003601f168201915b50505050509050611c18565b6000611bc6612339565b90506000815111611be65760405180602001604052806000815250611c14565b80611bf0846123cb565b600b604051602001611c04939291906139be565b6040516020818303038152906040525b9150505b919050565b600e5481565b611c2b611da6565b80600b9081611c3a919061357a565b5050565b6000611c4982611eda565b9050919050565b611c58611da6565b80600f8190555050565b611c6a611da6565b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d10611da6565b80600c9081611d1f919061357a565b5050565b611d2b611da6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9190613a61565b60405180910390fd5b611da3816120f8565b50565b611dae612499565b73ffffffffffffffffffffffffffffffffffffffff16611dcc611596565b73ffffffffffffffffffffffffffffffffffffffff1614611e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1990613acd565b60405180910390fd5b565b600081611e2f611f59565b11158015611e3e575060005482105b8015611e7c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600260095403611ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec790613b39565b60405180910390fd5b6002600981905550565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b611f4b8282604051806020016040528060008152506124a1565b5050565b6001600981905550565b60006001905090565b60008082905080611f71611f59565b11611ff757600054811015611ff65760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611ff4575b60008103611fea576004600083600190039350838152602001908152602001600020549050611fc0565b8092505050612029565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86120b686868461253e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121c661291b565b6121e26004600084815260200190815260200160002054612547565b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261220f611e83565b8786866040518563ffffffff1660e01b81526004016122319493929190613bae565b6020604051808303816000875af192505050801561226d57506040513d601f19601f8201168201806040525081019061226a9190613c0f565b60015b6122e6573d806000811461229d576040519150601f19603f3d011682016040523d82523d6000602084013e6122a2565b606091505b5060008151036122de576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546123489061318a565b80601f01602080910402602001604051908101604052809291908181526020018280546123749061318a565b80156123c15780601f10612396576101008083540402835291602001916123c1565b820191906000526020600020905b8154815290600101906020018083116123a457829003601f168201915b5050505050905090565b6060600060016123da846125fd565b01905060008167ffffffffffffffff8111156123f9576123f8612cf6565b5b6040519080825280601f01601f19166020018201604052801561242b5781602001600182028036833780820191505090505b509050600082602001820190505b60011561248e578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161248257612481613c3c565b5b04945060008503612439575b819350505050919050565b600033905090565b6124ab8383612750565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461253957600080549050600083820390505b6124eb60008683806001019450866121e9565b612521576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106124d857816000541461253657600080fd5b50505b505050565b60009392505050565b61254f61291b565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061265b577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161265157612650613c3c565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612698576d04ee2d6d415b85acef8100000000838161268e5761268d613c3c565b5b0492506020810190505b662386f26fc1000083106126c757662386f26fc1000083816126bd576126bc613c3c565b5b0492506010810190505b6305f5e10083106126f0576305f5e10083816126e6576126e5613c3c565b5b0492506008810190505b612710831061271557612710838161270b5761270a613c3c565b5b0492506004810190505b60648310612738576064838161272e5761272d613c3c565b5b0492506002810190505b600a8310612747576001810190505b80915050919050565b60008054905060008203612790576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61279d6000848385612099565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061281483612805600086600061209f565b61280e8561290b565b176120c7565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146128b557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061287a565b50600082036128f0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061290660008483856120f2565b505050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6129b38161297e565b81146129be57600080fd5b50565b6000813590506129d0816129aa565b92915050565b6000602082840312156129ec576129eb612974565b5b60006129fa848285016129c1565b91505092915050565b60008115159050919050565b612a1881612a03565b82525050565b6000602082019050612a336000830184612a0f565b92915050565b612a4281612a03565b8114612a4d57600080fd5b50565b600081359050612a5f81612a39565b92915050565b600060208284031215612a7b57612a7a612974565b5b6000612a8984828501612a50565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612acc578082015181840152602081019050612ab1565b60008484015250505050565b6000601f19601f8301169050919050565b6000612af482612a92565b612afe8185612a9d565b9350612b0e818560208601612aae565b612b1781612ad8565b840191505092915050565b60006020820190508181036000830152612b3c8184612ae9565b905092915050565b6000819050919050565b612b5781612b44565b8114612b6257600080fd5b50565b600081359050612b7481612b4e565b92915050565b600060208284031215612b9057612b8f612974565b5b6000612b9e84828501612b65565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612bd282612ba7565b9050919050565b612be281612bc7565b82525050565b6000602082019050612bfd6000830184612bd9565b92915050565b612c0c81612bc7565b8114612c1757600080fd5b50565b600081359050612c2981612c03565b92915050565b60008060408385031215612c4657612c45612974565b5b6000612c5485828601612c1a565b9250506020612c6585828601612b65565b9150509250929050565b612c7881612b44565b82525050565b6000602082019050612c936000830184612c6f565b92915050565b600080600060608486031215612cb257612cb1612974565b5b6000612cc086828701612c1a565b9350506020612cd186828701612c1a565b9250506040612ce286828701612b65565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d2e82612ad8565b810181811067ffffffffffffffff82111715612d4d57612d4c612cf6565b5b80604052505050565b6000612d6061296a565b9050612d6c8282612d25565b919050565b600067ffffffffffffffff821115612d8c57612d8b612cf6565b5b612d9582612ad8565b9050602081019050919050565b82818337600083830152505050565b6000612dc4612dbf84612d71565b612d56565b905082815260208101848484011115612de057612ddf612cf1565b5b612deb848285612da2565b509392505050565b600082601f830112612e0857612e07612cec565b5b8135612e18848260208601612db1565b91505092915050565b600060208284031215612e3757612e36612974565b5b600082013567ffffffffffffffff811115612e5557612e54612979565b5b612e6184828501612df3565b91505092915050565b600060208284031215612e8057612e7f612974565b5b6000612e8e84828501612c1a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612ecc81612b44565b82525050565b6000612ede8383612ec3565b60208301905092915050565b6000602082019050919050565b6000612f0282612e97565b612f0c8185612ea2565b9350612f1783612eb3565b8060005b83811015612f48578151612f2f8882612ed2565b9750612f3a83612eea565b925050600181019050612f1b565b5085935050505092915050565b60006020820190508181036000830152612f6f8184612ef7565b905092915050565b60008060408385031215612f8e57612f8d612974565b5b6000612f9c85828601612c1a565b9250506020612fad85828601612a50565b9150509250929050565b600067ffffffffffffffff821115612fd257612fd1612cf6565b5b612fdb82612ad8565b9050602081019050919050565b6000612ffb612ff684612fb7565b612d56565b90508281526020810184848401111561301757613016612cf1565b5b613022848285612da2565b509392505050565b600082601f83011261303f5761303e612cec565b5b813561304f848260208601612fe8565b91505092915050565b6000806000806080858703121561307257613071612974565b5b600061308087828801612c1a565b945050602061309187828801612c1a565b93505060406130a287828801612b65565b925050606085013567ffffffffffffffff8111156130c3576130c2612979565b5b6130cf8782880161302a565b91505092959194509250565b600080604083850312156130f2576130f1612974565b5b600061310085828601612b65565b925050602061311185828601612c1a565b9150509250929050565b6000806040838503121561313257613131612974565b5b600061314085828601612c1a565b925050602061315185828601612c1a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131a257607f821691505b6020821081036131b5576131b461315b565b5b50919050565b7f6f6f707320636f6e747261637420697320706175736564000000000000000000600082015250565b60006131f1601783612a9d565b91506131fc826131bb565b602082019050919050565b60006020820190508181036000830152613220816131e4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061326182612b44565b915061326c83612b44565b925082820190508082111561328457613283613227565b5b92915050565b7f4d6178204e4654205065722057616c6c65742065786365656465640000000000600082015250565b60006132c0601b83612a9d565b91506132cb8261328a565b602082019050919050565b600060208201905081810360008301526132ef816132b3565b9050919050565b7f6d61782066726565206d696e7420706572205478206578636565646564000000600082015250565b600061332c601d83612a9d565b9150613337826132f6565b602082019050919050565b6000602082019050818103600083015261335b8161331f565b9050919050565b7f57686974656c697374204d6178537570706c7920657863656564656400000000600082015250565b6000613398601c83612a9d565b91506133a382613362565b602082019050919050565b600060208201905081810360008301526133c78161338b565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026134307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826133f3565b61343a86836133f3565b95508019841693508086168417925050509392505050565b6000819050919050565b600061347761347261346d84612b44565b613452565b612b44565b9050919050565b6000819050919050565b6134918361345c565b6134a561349d8261347e565b848454613400565b825550505050565b600090565b6134ba6134ad565b6134c5818484613488565b505050565b5b818110156134e9576134de6000826134b2565b6001810190506134cb565b5050565b601f82111561352e576134ff816133ce565b613508846133e3565b81016020851015613517578190505b61352b613523856133e3565b8301826134ca565b50505b505050565b600082821c905092915050565b600061355160001984600802613533565b1980831691505092915050565b600061356a8383613540565b9150826002028217905092915050565b61358382612a92565b67ffffffffffffffff81111561359c5761359b612cf6565b5b6135a6825461318a565b6135b18282856134ed565b600060209050601f8311600181146135e457600084156135d2578287015190505b6135dc858261355e565b865550613644565b601f1984166135f2866133ce565b60005b8281101561361a578489015182556001820191506020850194506020810190506135f5565b868310156136375784890151613633601f891682613540565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f6d6178206d696e7420616d6f756e742070657220747820657863656564656400600082015250565b60006136b1601f83612a9d565b91506136bc8261367b565b602082019050919050565b600060208201905081810360008301526136e0816136a4565b9050919050565b7f576520536f6c646f757400000000000000000000000000000000000000000000600082015250565b600061371d600a83612a9d565b9150613728826136e7565b602082019050919050565b6000602082019050818103600083015261374c81613710565b9050919050565b600061375e82612b44565b915061376983612b44565b925082820261377781612b44565b9150828204841483151761378e5761378d613227565b5b5092915050565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006137cb601283612a9d565b91506137d682613795565b602082019050919050565b600060208201905081810360008301526137fa816137be565b9050919050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b6000613837601683612a9d565b915061384282613801565b602082019050919050565b600060208201905081810360008301526138668161382a565b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b60006138c9603083612a9d565b91506138d48261386d565b604082019050919050565b600060208201905081810360008301526138f8816138bc565b9050919050565b600081905092915050565b600061391582612a92565b61391f81856138ff565b935061392f818560208601612aae565b80840191505092915050565b600081546139488161318a565b61395281866138ff565b9450600182166000811461396d5760018114613982576139b5565b60ff19831686528115158202860193506139b5565b61398b856133ce565b60005b838110156139ad5781548189015260018201915060208101905061398e565b838801955050505b50505092915050565b60006139ca828661390a565b91506139d6828561390a565b91506139e2828461393b565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613a4b602683612a9d565b9150613a56826139ef565b604082019050919050565b60006020820190508181036000830152613a7a81613a3e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613ab7602083612a9d565b9150613ac282613a81565b602082019050919050565b60006020820190508181036000830152613ae681613aaa565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613b23601f83612a9d565b9150613b2e82613aed565b602082019050919050565b60006020820190508181036000830152613b5281613b16565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613b8082613b59565b613b8a8185613b64565b9350613b9a818560208601612aae565b613ba381612ad8565b840191505092915050565b6000608082019050613bc36000830187612bd9565b613bd06020830186612bd9565b613bdd6040830185612c6f565b8181036060830152613bef8184613b75565b905095945050505050565b600081519050613c09816129aa565b92915050565b600060208284031215613c2557613c24612974565b5b6000613c3384828501613bfa565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea2646970667358221220752dc7f7e49ad6e2a16cb8ea8d3e81ff90b5802adf9b0865a168e57e8e2b0d1264736f6c63430008120033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6359696f6372697747487179334e5139445257415a55666d62554658594e3967336f6f6a576b415569354c5a2f000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061025c5760003560e01c80636c0360eb11610144578063bd7a1998116100b6578063dc33e6811161007a578063dc33e68114610870578063e1cf8baa146108ad578063e268e4d3146108d6578063e985e9c5146108ff578063f2c4ce1e1461093c578063f2fde38b146109655761025c565b8063bd7a199814610789578063c6682862146107b4578063c87b56dd146107df578063d5abeb011461081c578063da3ef23f146108475761025c565b8063940cd05b11610108578063940cd05b146106ab57806395d89b41146106d4578063a0712d68146106ff578063a22cb4651461071b578063b88d4fde14610744578063bc63f02e146107605761025c565b80636c0360eb146105c457806370a08231146105ef578063715018a61461062c5780638462151c146106435780638da5cb5b146106805761025c565b806323b872dd116101dd57806350839bef116101a157806350839bef146104b257806351830227146104dd57806355f804b3146105085780635c975abb14610531578063624208ae1461055c5780636352211e146105875761025c565b806323b872dd1461041e578063351de26e1461043a5780633ccfd60b1461046357806342842e0e1461046d57806344a0d68a146104895761025c565b8063095ea7b311610224578063095ea7b31461035a5780630fbe4fe21461037657806313faede61461039f578063149835a0146103ca57806318160ddd146103f35761025c565b806301ffc9a71461026157806302329a291461029e57806306fdde03146102c7578063081812fc146102f2578063081c8c441461032f575b600080fd5b34801561026d57600080fd5b50610288600480360381019061028391906129d6565b61098e565b6040516102959190612a1e565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c09190612a65565b610a20565b005b3480156102d357600080fd5b506102dc610a45565b6040516102e99190612b22565b60405180910390f35b3480156102fe57600080fd5b5061031960048036038101906103149190612b7a565b610ad7565b6040516103269190612be8565b60405180910390f35b34801561033b57600080fd5b50610344610b56565b6040516103519190612b22565b60405180910390f35b610374600480360381019061036f9190612c2f565b610be4565b005b34801561038257600080fd5b5061039d60048036038101906103989190612b7a565b610d28565b005b3480156103ab57600080fd5b506103b4610e97565b6040516103c19190612c7e565b60405180910390f35b3480156103d657600080fd5b506103f160048036038101906103ec9190612b7a565b610e9d565b005b3480156103ff57600080fd5b50610408610eaf565b6040516104159190612c7e565b60405180910390f35b61043860048036038101906104339190612c99565b610ec6565b005b34801561044657600080fd5b50610461600480360381019061045c9190612b7a565b6111e8565b005b61046b6111fa565b005b61048760048036038101906104829190612c99565b611268565b005b34801561049557600080fd5b506104b060048036038101906104ab9190612b7a565b611288565b005b3480156104be57600080fd5b506104c761129a565b6040516104d49190612c7e565b60405180910390f35b3480156104e957600080fd5b506104f26112a0565b6040516104ff9190612a1e565b60405180910390f35b34801561051457600080fd5b5061052f600480360381019061052a9190612e21565b6112b3565b005b34801561053d57600080fd5b506105466112ce565b6040516105539190612a1e565b60405180910390f35b34801561056857600080fd5b506105716112e1565b60405161057e9190612c7e565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a99190612b7a565b6112e7565b6040516105bb9190612be8565b60405180910390f35b3480156105d057600080fd5b506105d96112f9565b6040516105e69190612b22565b60405180910390f35b3480156105fb57600080fd5b5061061660048036038101906106119190612e6a565b611387565b6040516106239190612c7e565b60405180910390f35b34801561063857600080fd5b5061064161143f565b005b34801561064f57600080fd5b5061066a60048036038101906106659190612e6a565b611453565b6040516106779190612f55565b60405180910390f35b34801561068c57600080fd5b50610695611596565b6040516106a29190612be8565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd9190612a65565b6115c0565b005b3480156106e057600080fd5b506106e96115e5565b6040516106f69190612b22565b60405180910390f35b61071960048036038101906107149190612b7a565b611677565b005b34801561072757600080fd5b50610742600480360381019061073d9190612f77565b611836565b005b61075e60048036038101906107599190613058565b611941565b005b34801561076c57600080fd5b50610787600480360381019061078291906130db565b6119b4565b005b34801561079557600080fd5b5061079e611a31565b6040516107ab9190612c7e565b60405180910390f35b3480156107c057600080fd5b506107c9611a37565b6040516107d69190612b22565b60405180910390f35b3480156107eb57600080fd5b5061080660048036038101906108019190612b7a565b611ac5565b6040516108139190612b22565b60405180910390f35b34801561082857600080fd5b50610831611c1d565b60405161083e9190612c7e565b60405180910390f35b34801561085357600080fd5b5061086e60048036038101906108699190612e21565b611c23565b005b34801561087c57600080fd5b5061089760048036038101906108929190612e6a565b611c3e565b6040516108a49190612c7e565b60405180910390f35b3480156108b957600080fd5b506108d460048036038101906108cf9190612b7a565b611c50565b005b3480156108e257600080fd5b506108fd60048036038101906108f89190612b7a565b611c62565b005b34801561090b57600080fd5b506109266004803603810190610921919061311b565b611c74565b6040516109339190612a1e565b60405180910390f35b34801561094857600080fd5b50610963600480360381019061095e9190612e21565b611d08565b005b34801561097157600080fd5b5061098c60048036038101906109879190612e6a565b611d23565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109e957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a195750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610a28611da6565b80601260006101000a81548160ff02191690831515021790555050565b606060028054610a549061318a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a809061318a565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b5050505050905090565b6000610ae282611e24565b610b18576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c8054610b639061318a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8f9061318a565b8015610bdc5780601f10610bb157610100808354040283529160200191610bdc565b820191906000526020600020905b815481529060010190602001808311610bbf57829003601f168201915b505050505081565b6000610bef826112e7565b90508073ffffffffffffffffffffffffffffffffffffffff16610c10611e83565b73ffffffffffffffffffffffffffffffffffffffff1614610c7357610c3c81610c37611e83565b611c74565b610c72576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610d30611e8b565b601260009054906101000a900460ff1615610d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7790613207565b60405180910390fd5b60115481610d94610d8f611e83565b611eda565b610d9e9190613256565b1115610ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd6906132d6565b60405180910390fd5b601154811115610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b90613342565b60405180910390fd5b600f5481610e30610eaf565b610e3a9190613256565b1115610e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e72906133ae565b60405180910390fd5b610e8c610e86611e83565b82611f31565b610e94611f4f565b50565b600d5481565b610ea5611da6565b80600e8190555050565b6000610eb9611f59565b6001546000540303905090565b6000610ed182611f62565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f38576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610f448461202e565b91509150610f5a8187610f55611e83565b612055565b610fa657610f6f86610f6a611e83565b611c74565b610fa5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361100c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110198686866001612099565b801561102457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506110f2856110ce88888761209f565b7c0200000000000000000000000000000000000000000000000000000000176120c7565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036111785760006001850190506000600460008381526020019081526020016000205403611176576000548114611175578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46111e086868660016120f2565b505050505050565b6111f0611da6565b8060118190555050565b611202611da6565b61120a611e8b565b6000479050611217611e83565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561125c573d6000803e3d6000fd5b5050611266611f4f565b565b61128383838360405180602001604052806000815250611941565b505050565b611290611da6565b80600d8190555050565b600f5481565b601260019054906101000a900460ff1681565b6112bb611da6565b80600a90816112ca919061357a565b5050565b601260009054906101000a900460ff1681565b60115481565b60006112f282611f62565b9050919050565b600a80546113069061318a565b80601f01602080910402602001604051908101604052809291908181526020018280546113329061318a565b801561137f5780601f106113545761010080835404028352916020019161137f565b820191906000526020600020905b81548152906001019060200180831161136257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113ee576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611447611da6565b61145160006120f8565b565b6060600080600061146385611387565b905060008167ffffffffffffffff81111561148157611480612cf6565b5b6040519080825280602002602001820160405280156114af5781602001602082028036833780820191505090505b5090506114ba61291b565b60006114c4611f59565b90505b838614611588576114d7816121be565b9150816040015161157d57600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461152257816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361157c578083878060010198508151811061156f5761156e61364c565b5b6020026020010181815250505b5b8060010190506114c7565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115c8611da6565b80601260016101000a81548160ff02191690831515021790555050565b6060600380546115f49061318a565b80601f01602080910402602001604051908101604052809291908181526020018280546116209061318a565b801561166d5780601f106116425761010080835404028352916020019161166d565b820191906000526020600020905b81548152906001019060200180831161165057829003601f168201915b5050505050905090565b61167f611e8b565b601260009054906101000a900460ff16156116cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c690613207565b60405180910390fd5b601054811115611714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170b906136c7565b60405180910390fd5b600e5481611720610eaf565b61172a9190613256565b111561176b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176290613733565b60405180910390fd5b6010548161177f61177a611e83565b611eda565b6117899190613256565b11156117ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c1906132d6565b60405180910390fd5b80600d546117d89190613753565b34101561181a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611811906137e1565b60405180910390fd5b61182b611825611e83565b82611f31565b611833611f4f565b50565b8060076000611843611e83565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118f0611e83565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119359190612a1e565b60405180910390a35050565b61194c848484610ec6565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119ae57611977848484846121e9565b6119ad576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6119bc611da6565b6119c4611e8b565b600e54826119d0610eaf565b6119da9190613256565b1115611a1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a129061384d565b60405180910390fd5b611a258183611f31565b611a2d611f4f565b5050565b60105481565b600b8054611a449061318a565b80601f0160208091040260200160405190810160405280929190818152602001828054611a709061318a565b8015611abd5780601f10611a9257610100808354040283529160200191611abd565b820191906000526020600020905b815481529060010190602001808311611aa057829003601f168201915b505050505081565b6060611ad082611e24565b611b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b06906138df565b60405180910390fd5b60001515601260019054906101000a900460ff16151503611bbc57600c8054611b379061318a565b80601f0160208091040260200160405190810160405280929190818152602001828054611b639061318a565b8015611bb05780601f10611b8557610100808354040283529160200191611bb0565b820191906000526020600020905b815481529060010190602001808311611b9357829003601f168201915b50505050509050611c18565b6000611bc6612339565b90506000815111611be65760405180602001604052806000815250611c14565b80611bf0846123cb565b600b604051602001611c04939291906139be565b6040516020818303038152906040525b9150505b919050565b600e5481565b611c2b611da6565b80600b9081611c3a919061357a565b5050565b6000611c4982611eda565b9050919050565b611c58611da6565b80600f8190555050565b611c6a611da6565b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d10611da6565b80600c9081611d1f919061357a565b5050565b611d2b611da6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9190613a61565b60405180910390fd5b611da3816120f8565b50565b611dae612499565b73ffffffffffffffffffffffffffffffffffffffff16611dcc611596565b73ffffffffffffffffffffffffffffffffffffffff1614611e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1990613acd565b60405180910390fd5b565b600081611e2f611f59565b11158015611e3e575060005482105b8015611e7c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600260095403611ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec790613b39565b60405180910390fd5b6002600981905550565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b611f4b8282604051806020016040528060008152506124a1565b5050565b6001600981905550565b60006001905090565b60008082905080611f71611f59565b11611ff757600054811015611ff65760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611ff4575b60008103611fea576004600083600190039350838152602001908152602001600020549050611fc0565b8092505050612029565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86120b686868461253e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121c661291b565b6121e26004600084815260200190815260200160002054612547565b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261220f611e83565b8786866040518563ffffffff1660e01b81526004016122319493929190613bae565b6020604051808303816000875af192505050801561226d57506040513d601f19601f8201168201806040525081019061226a9190613c0f565b60015b6122e6573d806000811461229d576040519150601f19603f3d011682016040523d82523d6000602084013e6122a2565b606091505b5060008151036122de576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546123489061318a565b80601f01602080910402602001604051908101604052809291908181526020018280546123749061318a565b80156123c15780601f10612396576101008083540402835291602001916123c1565b820191906000526020600020905b8154815290600101906020018083116123a457829003601f168201915b5050505050905090565b6060600060016123da846125fd565b01905060008167ffffffffffffffff8111156123f9576123f8612cf6565b5b6040519080825280601f01601f19166020018201604052801561242b5781602001600182028036833780820191505090505b509050600082602001820190505b60011561248e578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161248257612481613c3c565b5b04945060008503612439575b819350505050919050565b600033905090565b6124ab8383612750565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461253957600080549050600083820390505b6124eb60008683806001019450866121e9565b612521576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106124d857816000541461253657600080fd5b50505b505050565b60009392505050565b61254f61291b565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061265b577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161265157612650613c3c565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612698576d04ee2d6d415b85acef8100000000838161268e5761268d613c3c565b5b0492506020810190505b662386f26fc1000083106126c757662386f26fc1000083816126bd576126bc613c3c565b5b0492506010810190505b6305f5e10083106126f0576305f5e10083816126e6576126e5613c3c565b5b0492506008810190505b612710831061271557612710838161270b5761270a613c3c565b5b0492506004810190505b60648310612738576064838161272e5761272d613c3c565b5b0492506002810190505b600a8310612747576001810190505b80915050919050565b60008054905060008203612790576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61279d6000848385612099565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061281483612805600086600061209f565b61280e8561290b565b176120c7565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146128b557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061287a565b50600082036128f0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061290660008483856120f2565b505050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6129b38161297e565b81146129be57600080fd5b50565b6000813590506129d0816129aa565b92915050565b6000602082840312156129ec576129eb612974565b5b60006129fa848285016129c1565b91505092915050565b60008115159050919050565b612a1881612a03565b82525050565b6000602082019050612a336000830184612a0f565b92915050565b612a4281612a03565b8114612a4d57600080fd5b50565b600081359050612a5f81612a39565b92915050565b600060208284031215612a7b57612a7a612974565b5b6000612a8984828501612a50565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612acc578082015181840152602081019050612ab1565b60008484015250505050565b6000601f19601f8301169050919050565b6000612af482612a92565b612afe8185612a9d565b9350612b0e818560208601612aae565b612b1781612ad8565b840191505092915050565b60006020820190508181036000830152612b3c8184612ae9565b905092915050565b6000819050919050565b612b5781612b44565b8114612b6257600080fd5b50565b600081359050612b7481612b4e565b92915050565b600060208284031215612b9057612b8f612974565b5b6000612b9e84828501612b65565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612bd282612ba7565b9050919050565b612be281612bc7565b82525050565b6000602082019050612bfd6000830184612bd9565b92915050565b612c0c81612bc7565b8114612c1757600080fd5b50565b600081359050612c2981612c03565b92915050565b60008060408385031215612c4657612c45612974565b5b6000612c5485828601612c1a565b9250506020612c6585828601612b65565b9150509250929050565b612c7881612b44565b82525050565b6000602082019050612c936000830184612c6f565b92915050565b600080600060608486031215612cb257612cb1612974565b5b6000612cc086828701612c1a565b9350506020612cd186828701612c1a565b9250506040612ce286828701612b65565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d2e82612ad8565b810181811067ffffffffffffffff82111715612d4d57612d4c612cf6565b5b80604052505050565b6000612d6061296a565b9050612d6c8282612d25565b919050565b600067ffffffffffffffff821115612d8c57612d8b612cf6565b5b612d9582612ad8565b9050602081019050919050565b82818337600083830152505050565b6000612dc4612dbf84612d71565b612d56565b905082815260208101848484011115612de057612ddf612cf1565b5b612deb848285612da2565b509392505050565b600082601f830112612e0857612e07612cec565b5b8135612e18848260208601612db1565b91505092915050565b600060208284031215612e3757612e36612974565b5b600082013567ffffffffffffffff811115612e5557612e54612979565b5b612e6184828501612df3565b91505092915050565b600060208284031215612e8057612e7f612974565b5b6000612e8e84828501612c1a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612ecc81612b44565b82525050565b6000612ede8383612ec3565b60208301905092915050565b6000602082019050919050565b6000612f0282612e97565b612f0c8185612ea2565b9350612f1783612eb3565b8060005b83811015612f48578151612f2f8882612ed2565b9750612f3a83612eea565b925050600181019050612f1b565b5085935050505092915050565b60006020820190508181036000830152612f6f8184612ef7565b905092915050565b60008060408385031215612f8e57612f8d612974565b5b6000612f9c85828601612c1a565b9250506020612fad85828601612a50565b9150509250929050565b600067ffffffffffffffff821115612fd257612fd1612cf6565b5b612fdb82612ad8565b9050602081019050919050565b6000612ffb612ff684612fb7565b612d56565b90508281526020810184848401111561301757613016612cf1565b5b613022848285612da2565b509392505050565b600082601f83011261303f5761303e612cec565b5b813561304f848260208601612fe8565b91505092915050565b6000806000806080858703121561307257613071612974565b5b600061308087828801612c1a565b945050602061309187828801612c1a565b93505060406130a287828801612b65565b925050606085013567ffffffffffffffff8111156130c3576130c2612979565b5b6130cf8782880161302a565b91505092959194509250565b600080604083850312156130f2576130f1612974565b5b600061310085828601612b65565b925050602061311185828601612c1a565b9150509250929050565b6000806040838503121561313257613131612974565b5b600061314085828601612c1a565b925050602061315185828601612c1a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131a257607f821691505b6020821081036131b5576131b461315b565b5b50919050565b7f6f6f707320636f6e747261637420697320706175736564000000000000000000600082015250565b60006131f1601783612a9d565b91506131fc826131bb565b602082019050919050565b60006020820190508181036000830152613220816131e4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061326182612b44565b915061326c83612b44565b925082820190508082111561328457613283613227565b5b92915050565b7f4d6178204e4654205065722057616c6c65742065786365656465640000000000600082015250565b60006132c0601b83612a9d565b91506132cb8261328a565b602082019050919050565b600060208201905081810360008301526132ef816132b3565b9050919050565b7f6d61782066726565206d696e7420706572205478206578636565646564000000600082015250565b600061332c601d83612a9d565b9150613337826132f6565b602082019050919050565b6000602082019050818103600083015261335b8161331f565b9050919050565b7f57686974656c697374204d6178537570706c7920657863656564656400000000600082015250565b6000613398601c83612a9d565b91506133a382613362565b602082019050919050565b600060208201905081810360008301526133c78161338b565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026134307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826133f3565b61343a86836133f3565b95508019841693508086168417925050509392505050565b6000819050919050565b600061347761347261346d84612b44565b613452565b612b44565b9050919050565b6000819050919050565b6134918361345c565b6134a561349d8261347e565b848454613400565b825550505050565b600090565b6134ba6134ad565b6134c5818484613488565b505050565b5b818110156134e9576134de6000826134b2565b6001810190506134cb565b5050565b601f82111561352e576134ff816133ce565b613508846133e3565b81016020851015613517578190505b61352b613523856133e3565b8301826134ca565b50505b505050565b600082821c905092915050565b600061355160001984600802613533565b1980831691505092915050565b600061356a8383613540565b9150826002028217905092915050565b61358382612a92565b67ffffffffffffffff81111561359c5761359b612cf6565b5b6135a6825461318a565b6135b18282856134ed565b600060209050601f8311600181146135e457600084156135d2578287015190505b6135dc858261355e565b865550613644565b601f1984166135f2866133ce565b60005b8281101561361a578489015182556001820191506020850194506020810190506135f5565b868310156136375784890151613633601f891682613540565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f6d6178206d696e7420616d6f756e742070657220747820657863656564656400600082015250565b60006136b1601f83612a9d565b91506136bc8261367b565b602082019050919050565b600060208201905081810360008301526136e0816136a4565b9050919050565b7f576520536f6c646f757400000000000000000000000000000000000000000000600082015250565b600061371d600a83612a9d565b9150613728826136e7565b602082019050919050565b6000602082019050818103600083015261374c81613710565b9050919050565b600061375e82612b44565b915061376983612b44565b925082820261377781612b44565b9150828204841483151761378e5761378d613227565b5b5092915050565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006137cb601283612a9d565b91506137d682613795565b602082019050919050565b600060208201905081810360008301526137fa816137be565b9050919050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b6000613837601683612a9d565b915061384282613801565b602082019050919050565b600060208201905081810360008301526138668161382a565b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b60006138c9603083612a9d565b91506138d48261386d565b604082019050919050565b600060208201905081810360008301526138f8816138bc565b9050919050565b600081905092915050565b600061391582612a92565b61391f81856138ff565b935061392f818560208601612aae565b80840191505092915050565b600081546139488161318a565b61395281866138ff565b9450600182166000811461396d5760018114613982576139b5565b60ff19831686528115158202860193506139b5565b61398b856133ce565b60005b838110156139ad5781548189015260018201915060208101905061398e565b838801955050505b50505092915050565b60006139ca828661390a565b91506139d6828561390a565b91506139e2828461393b565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613a4b602683612a9d565b9150613a56826139ef565b604082019050919050565b60006020820190508181036000830152613a7a81613a3e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613ab7602083612a9d565b9150613ac282613a81565b602082019050919050565b60006020820190508181036000830152613ae681613aaa565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613b23601f83612a9d565b9150613b2e82613aed565b602082019050919050565b60006020820190508181036000830152613b5281613b16565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613b8082613b59565b613b8a8185613b64565b9350613b9a818560208601612aae565b613ba381612ad8565b840191505092915050565b6000608082019050613bc36000830187612bd9565b613bd06020830186612bd9565b613bdd6040830185612c6f565b8181036060830152613bef8184613b75565b905095945050505050565b600081519050613c09816129aa565b92915050565b600060208284031215613c2557613c24612974565b5b6000613c3384828501613bfa565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea2646970667358221220752dc7f7e49ad6e2a16cb8ea8d3e81ff90b5802adf9b0865a168e57e8e2b0d1264736f6c63430008120033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6359696f6372697747487179334e5139445257415a55666d62554658594e3967336f6f6a576b415569354c5a2f000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmcYiocriwGHqy3NQ9DRWAZUfmbUFXYN9g3oojWkAUi5LZ/
Arg [1] : _notRevealedUri (string):

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d6359696f6372697747487179334e5139445257415a5566
Arg [4] : 6d62554658594e3967336f6f6a576b415569354c5a2f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

75655:5449:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42552:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80812:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43454:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49945:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75808:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49378:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77062:434;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75841:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80040:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39205:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53584:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79736:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80934:167;;;:::i;:::-;;56505:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79905:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75915:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76061:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80303:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76030:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75990:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44847:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75745:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40389:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23331:103;;;;;;;;;;;;;:::i;:::-;;78561:881;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22690:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79464:78;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43630:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76561:471;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50503:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57296:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77551:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75952:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75771:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77826:498;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75879:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80456:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78389:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80173:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79593:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50894:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80612:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23589:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42552:639;42637:4;42976:10;42961:25;;:11;:25;;;;:102;;;;43053:10;43038:25;;:11;:25;;;;42961:102;:179;;;;43130:10;43115:25;;:11;:25;;;;42961:179;42941:199;;42552:639;;;:::o;80812:73::-;22576:13;:11;:13::i;:::-;80873:6:::1;80864;;:15;;;;;;;;;;;;;;;;;;80812:73:::0;:::o;43454:100::-;43508:13;43541:5;43534:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43454:100;:::o;49945:218::-;50021:7;50046:16;50054:7;50046;:16::i;:::-;50041:64;;50071:34;;;;;;;;;;;;;;50041:64;50125:15;:24;50141:7;50125:24;;;;;;;;;;;:30;;;;;;;;;;;;50118:37;;49945:218;;;:::o;75808:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49378:408::-;49467:13;49483:16;49491:7;49483;:16::i;:::-;49467:32;;49539:5;49516:28;;:19;:17;:19::i;:::-;:28;;;49512:175;;49564:44;49581:5;49588:19;:17;:19::i;:::-;49564:16;:44::i;:::-;49559:128;;49636:35;;;;;;;;;;;;;;49559:128;49512:175;49732:2;49699:15;:24;49715:7;49699:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;49770:7;49766:2;49750:28;;49759:5;49750:28;;;;;;;;;;;;49456:330;49378:408;;:::o;77062:434::-;2345:21;:19;:21::i;:::-;77132:6:::1;;;;;;;;;;;77131:7;77123:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;77228:16;;77218:6;77181:34;77195:19;:17;:19::i;:::-;77181:13;:34::i;:::-;:43;;;;:::i;:::-;:63;;77173:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;77301:16;;77291:6;:26;;77283:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77392:10;;77382:6;77366:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;77358:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;77446:38;77456:19;:17;:19::i;:::-;77477:6;77446:9;:38::i;:::-;2389:20:::0;:18;:20::i;:::-;77062:434;:::o;75841:33::-;;;;:::o;80040:94::-;22576:13;:11;:13::i;:::-;80118:10:::1;80106:9;:22;;;;80040:94:::0;:::o;39205:323::-;39266:7;39494:15;:13;:15::i;:::-;39479:12;;39463:13;;:28;:46;39456:53;;39205:323;:::o;53584:2825::-;53726:27;53756;53775:7;53756:18;:27::i;:::-;53726:57;;53841:4;53800:45;;53816:19;53800:45;;;53796:86;;53854:28;;;;;;;;;;;;;;53796:86;53896:27;53925:23;53952:35;53979:7;53952:26;:35::i;:::-;53895:92;;;;54087:68;54112:15;54129:4;54135:19;:17;:19::i;:::-;54087:24;:68::i;:::-;54082:180;;54175:43;54192:4;54198:19;:17;:19::i;:::-;54175:16;:43::i;:::-;54170:92;;54227:35;;;;;;;;;;;;;;54170:92;54082:180;54293:1;54279:16;;:2;:16;;;54275:52;;54304:23;;;;;;;;;;;;;;54275:52;54340:43;54362:4;54368:2;54372:7;54381:1;54340:21;:43::i;:::-;54476:15;54473:160;;;54616:1;54595:19;54588:30;54473:160;55013:18;:24;55032:4;55013:24;;;;;;;;;;;;;;;;55011:26;;;;;;;;;;;;55082:18;:22;55101:2;55082:22;;;;;;;;;;;;;;;;55080:24;;;;;;;;;;;55404:146;55441:2;55490:45;55505:4;55511:2;55515:19;55490:14;:45::i;:::-;35604:8;55462:73;55404:18;:146::i;:::-;55375:17;:26;55393:7;55375:26;;;;;;;;;;;:175;;;;55721:1;35604:8;55670:19;:47;:52;55666:627;;55743:19;55775:1;55765:7;:11;55743:33;;55932:1;55898:17;:30;55916:11;55898:30;;;;;;;;;;;;:35;55894:384;;56036:13;;56021:11;:28;56017:242;;56216:19;56183:17;:30;56201:11;56183:30;;;;;;;;;;;:52;;;;56017:242;55894:384;55724:569;55666:627;56340:7;56336:2;56321:27;;56330:4;56321:27;;;;;;;;;;;;56359:42;56380:4;56386:2;56390:7;56399:1;56359:20;:42::i;:::-;53715:2694;;;53584:2825;;;:::o;79736:100::-;22576:13;:11;:13::i;:::-;79824:6:::1;79805:16;:25;;;;79736:100:::0;:::o;80934:167::-;22576:13;:11;:13::i;:::-;2345:21:::1;:19;:21::i;:::-;81001:15:::2;81019:21;81001:39;;81057:19;:17;:19::i;:::-;81049:37;;:46;81087:7;81049:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;80992:109;2389:20:::1;:18;:20::i;:::-;80934:167::o:0;56505:193::-;56651:39;56668:4;56674:2;56678:7;56651:39;;;;;;;;;;;;:16;:39::i;:::-;56505:193;;;:::o;79905:80::-;22576:13;:11;:13::i;:::-;79971:8:::1;79964:4;:15;;;;79905:80:::0;:::o;75915:32::-;;;;:::o;76061:27::-;;;;;;;;;;;;;:::o;80303:98::-;22576:13;:11;:13::i;:::-;80384:11:::1;80374:7;:21;;;;;;:::i;:::-;;80303:98:::0;:::o;76030:26::-;;;;;;;;;;;;;:::o;75990:35::-;;;;:::o;44847:152::-;44919:7;44962:27;44981:7;44962:18;:27::i;:::-;44939:52;;44847:152;;;:::o;75745:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40389:233::-;40461:7;40502:1;40485:19;;:5;:19;;;40481:60;;40513:28;;;;;;;;;;;;;;40481:60;34548:13;40559:18;:25;40578:5;40559:25;;;;;;;;;;;;;;;;:55;40552:62;;40389:233;;;:::o;23331:103::-;22576:13;:11;:13::i;:::-;23396:30:::1;23423:1;23396:18;:30::i;:::-;23331:103::o:0;78561:881::-;78620:16;78674:19;78708:25;78748:22;78773:16;78783:5;78773:9;:16::i;:::-;78748:41;;78804:25;78846:14;78832:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78804:57;;78876:31;;:::i;:::-;78927:9;78939:15;:13;:15::i;:::-;78927:27;;78922:472;78971:14;78956:11;:29;78922:472;;79023:15;79036:1;79023:12;:15::i;:::-;79011:27;;79061:9;:16;;;79102:8;79057:73;79178:1;79152:28;;:9;:14;;;:28;;;79148:111;;79225:9;:14;;;79205:34;;79148:111;79302:5;79281:26;;:17;:26;;;79277:102;;79358:1;79332:8;79341:13;;;;;;79332:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;79277:102;78922:472;78987:3;;;;;78922:472;;;;79415:8;79408:15;;;;;;;78561:881;;;:::o;22690:87::-;22736:7;22763:6;;;;;;;;;;;22756:13;;22690:87;:::o;79464:78::-;22576:13;:11;:13::i;:::-;79530:6:::1;79519:8;;:17;;;;;;;;;;;;;;;;;;79464:78:::0;:::o;43630:104::-;43686:13;43719:7;43712:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43630:104;:::o;76561:471::-;2345:21;:19;:21::i;:::-;76635:6:::1;;;;;;;;;;;76634:7;76626:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;76694:12;;76684:6;:22;;76676:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;76783:9;;76773:6;76757:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;76749:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;76869:12;;76859:6;76822:34;76836:19;:17;:19::i;:::-;76822:13;:34::i;:::-;:43;;;;:::i;:::-;:59;;76814:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;76948:6;76941:4;;:13;;;;:::i;:::-;76928:9;:26;;76920:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;76988:38;76998:19;:17;:19::i;:::-;77019:6;76988:9;:38::i;:::-;2389:20:::0;:18;:20::i;:::-;76561:471;:::o;50503:234::-;50650:8;50598:18;:39;50617:19;:17;:19::i;:::-;50598:39;;;;;;;;;;;;;;;:49;50638:8;50598:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;50710:8;50674:55;;50689:19;:17;:19::i;:::-;50674:55;;;50720:8;50674:55;;;;;;:::i;:::-;;;;;;;;50503:234;;:::o;57296:407::-;57471:31;57484:4;57490:2;57494:7;57471:12;:31::i;:::-;57535:1;57517:2;:14;;;:19;57513:183;;57556:56;57587:4;57593:2;57597:7;57606:5;57556:30;:56::i;:::-;57551:145;;57640:40;;;;;;;;;;;;;;57551:145;57513:183;57296:407;;;;:::o;77551:223::-;22576:13;:11;:13::i;:::-;2345:21:::1;:19;:21::i;:::-;77686:9:::2;;77671:11;77655:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;77647:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;77733:35;77743:11;77756;77733:9;:35::i;:::-;2389:20:::1;:18;:20::i;:::-;77551:223:::0;;:::o;75952:33::-;;;;:::o;75771:32::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;77826:498::-;77924:13;77965:16;77973:7;77965;:16::i;:::-;77949:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;78075:5;78063:17;;:8;;;;;;;;;;;:17;;;78060:62;;78100:14;78093:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78060:62;78130:28;78161:10;:8;:10::i;:::-;78130:41;;78216:1;78191:14;78185:28;:32;:133;;;;;;;;;;;;;;;;;78253:14;78269:18;:7;:16;:18::i;:::-;78289:13;78236:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;78185:133;78178:140;;;77826:498;;;;:::o;75879:31::-;;;;:::o;80456:122::-;22576:13;:11;:13::i;:::-;80555:17:::1;80539:13;:33;;;;;;:::i;:::-;;80456:122:::0;:::o;78389:107::-;78447:7;78470:20;78484:5;78470:13;:20::i;:::-;78463:27;;78389:107;;;:::o;80173:96::-;22576:13;:11;:13::i;:::-;80253:10:::1;80240;:23;;;;80173:96:::0;:::o;79593:92::-;22576:13;:11;:13::i;:::-;79673:6:::1;79658:12;:21;;;;79593:92:::0;:::o;50894:164::-;50991:4;51015:18;:25;51034:5;51015:25;;;;;;;;;;;;;;;:35;51041:8;51015:35;;;;;;;;;;;;;;;;;;;;;;;;;51008:42;;50894:164;;;;:::o;80612:120::-;22576:13;:11;:13::i;:::-;80711:15:::1;80694:14;:32;;;;;;:::i;:::-;;80612:120:::0;:::o;23589:201::-;22576:13;:11;:13::i;:::-;23698:1:::1;23678:22;;:8;:22;;::::0;23670:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;23754:28;23773:8;23754:18;:28::i;:::-;23589:201:::0;:::o;22855:132::-;22930:12;:10;:12::i;:::-;22919:23;;:7;:5;:7::i;:::-;:23;;;22911:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22855:132::o;51316:282::-;51381:4;51437:7;51418:15;:13;:15::i;:::-;:26;;:66;;;;;51471:13;;51461:7;:23;51418:66;:153;;;;;51570:1;35324:8;51522:17;:26;51540:7;51522:26;;;;;;;;;;;;:44;:49;51418:153;51398:173;;51316:282;;;:::o;73624:105::-;73684:7;73711:10;73704:17;;73624:105;:::o;2425:293::-;1827:1;2559:7;;:19;2551:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1827:1;2692:7;:18;;;;2425:293::o;40704:178::-;40765:7;34548:13;34686:2;40793:18;:25;40812:5;40793:25;;;;;;;;;;;;;;;;:50;;40792:82;40785:89;;40704:178;;;:::o;67456:112::-;67533:27;67543:2;67547:8;67533:27;;;;;;;;;;;;:9;:27::i;:::-;67456:112;;:::o;2726:213::-;1783:1;2909:7;:22;;;;2726:213::o;76416:101::-;76481:7;76508:1;76501:8;;76416:101;:::o;46002:1275::-;46069:7;46089:12;46104:7;46089:22;;46172:4;46153:15;:13;:15::i;:::-;:23;46149:1061;;46206:13;;46199:4;:20;46195:1015;;;46244:14;46261:17;:23;46279:4;46261:23;;;;;;;;;;;;46244:40;;46378:1;35324:8;46350:6;:24;:29;46346:845;;47015:113;47032:1;47022:6;:11;47015:113;;47075:17;:25;47093:6;;;;;;;47075:25;;;;;;;;;;;;47066:34;;47015:113;;;47161:6;47154:13;;;;;;46346:845;46221:989;46195:1015;46149:1061;47238:31;;;;;;;;;;;;;;46002:1275;;;;:::o;52479:485::-;52581:27;52610:23;52651:38;52692:15;:24;52708:7;52692:24;;;;;;;;;;;52651:65;;52869:18;52846:41;;52926:19;52920:26;52901:45;;52831:126;52479:485;;;:::o;51707:659::-;51856:11;52021:16;52014:5;52010:28;52001:37;;52181:16;52170:9;52166:32;52153:45;;52331:15;52320:9;52317:30;52309:5;52298:9;52295:20;52292:56;52282:66;;51707:659;;;;;:::o;58365:159::-;;;;;:::o;72933:311::-;73068:7;73088:16;35728:3;73114:19;:41;;73088:68;;35728:3;73182:31;73193:4;73199:2;73203:9;73182:10;:31::i;:::-;73174:40;;:62;;73167:69;;;72933:311;;;;;:::o;47825:450::-;47905:14;48073:16;48066:5;48062:28;48053:37;;48250:5;48236:11;48211:23;48207:41;48204:52;48197:5;48194:63;48184:73;;47825:450;;;;:::o;59189:158::-;;;;;:::o;23950:191::-;24024:16;24043:6;;;;;;;;;;;24024:25;;24069:8;24060:6;;:17;;;;;;;;;;;;;;;;;;24124:8;24093:40;;24114:8;24093:40;;;;;;;;;;;;24013:128;23950:191;:::o;45450:161::-;45518:21;;:::i;:::-;45559:44;45578:17;:24;45596:5;45578:24;;;;;;;;;;;;45559:18;:44::i;:::-;45552:51;;45450:161;;;:::o;59787:716::-;59950:4;59996:2;59971:45;;;60017:19;:17;:19::i;:::-;60038:4;60044:7;60053:5;59971:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;59967:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60271:1;60254:6;:13;:18;60250:235;;60300:40;;;;;;;;;;;;;;60250:235;60443:6;60437:13;60428:6;60424:2;60420:15;60413:38;59967:529;60140:54;;;60130:64;;;:6;:64;;;;60123:71;;;59787:716;;;;;;:::o;76306:102::-;76366:13;76395:7;76388:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76306:102;:::o;18160:716::-;18216:13;18267:14;18304:1;18284:17;18295:5;18284:10;:17::i;:::-;:21;18267:38;;18320:20;18354:6;18343:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18320:41;;18376:11;18505:6;18501:2;18497:15;18489:6;18485:28;18478:35;;18542:288;18549:4;18542:288;;;18574:5;;;;;;;;18716:8;18711:2;18704:5;18700:14;18695:30;18690:3;18682:44;18772:2;18763:11;;;;;;:::i;:::-;;;;;18806:1;18797:5;:10;18542:288;18793:21;18542:288;18851:6;18844:13;;;;;18160:716;;;:::o;21241:98::-;21294:7;21321:10;21314:17;;21241:98;:::o;66683:689::-;66814:19;66820:2;66824:8;66814:5;:19::i;:::-;66893:1;66875:2;:14;;;:19;66871:483;;66915:11;66929:13;;66915:27;;66961:13;66983:8;66977:3;:14;66961:30;;67010:233;67041:62;67080:1;67084:2;67088:7;;;;;;67097:5;67041:30;:62::i;:::-;67036:167;;67139:40;;;;;;;;;;;;;;67036:167;67238:3;67230:5;:11;67010:233;;67325:3;67308:13;;:20;67304:34;;67330:8;;;67304:34;66896:458;;66871:483;66683:689;;;:::o;72634:147::-;72771:6;72634:147;;;;;:::o;47376:366::-;47442:31;;:::i;:::-;47519:6;47486:9;:14;;:41;;;;;;;;;;;35207:3;47572:6;:33;;47538:9;:24;;:68;;;;;;;;;;;47664:1;35324:8;47636:6;:24;:29;;47617:9;:16;;:48;;;;;;;;;;;35728:3;47705:6;:28;;47676:9;:19;;:58;;;;;;;;;;;47376:366;;;:::o;14994:948::-;15047:7;15067:14;15084:1;15067:18;;15134:8;15125:5;:17;15121:106;;15172:8;15163:17;;;;;;:::i;:::-;;;;;15209:2;15199:12;;;;15121:106;15254:8;15245:5;:17;15241:106;;15292:8;15283:17;;;;;;:::i;:::-;;;;;15329:2;15319:12;;;;15241:106;15374:8;15365:5;:17;15361:106;;15412:8;15403:17;;;;;;:::i;:::-;;;;;15449:2;15439:12;;;;15361:106;15494:7;15485:5;:16;15481:103;;15531:7;15522:16;;;;;;:::i;:::-;;;;;15567:1;15557:11;;;;15481:103;15611:7;15602:5;:16;15598:103;;15648:7;15639:16;;;;;;:::i;:::-;;;;;15684:1;15674:11;;;;15598:103;15728:7;15719:5;:16;15715:103;;15765:7;15756:16;;;;;;:::i;:::-;;;;;15801:1;15791:11;;;;15715:103;15845:7;15836:5;:16;15832:68;;15883:1;15873:11;;;;15832:68;15928:6;15921:13;;;14994:948;;;:::o;60965:2966::-;61038:20;61061:13;;61038:36;;61101:1;61089:8;:13;61085:44;;61111:18;;;;;;;;;;;;;;61085:44;61142:61;61172:1;61176:2;61180:12;61194:8;61142:21;:61::i;:::-;61686:1;34686:2;61656:1;:26;;61655:32;61643:8;:45;61617:18;:22;61636:2;61617:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;61965:139;62002:2;62056:33;62079:1;62083:2;62087:1;62056:14;:33::i;:::-;62023:30;62044:8;62023:20;:30::i;:::-;:66;61965:18;:139::i;:::-;61931:17;:31;61949:12;61931:31;;;;;;;;;;;:173;;;;62121:16;62152:11;62181:8;62166:12;:23;62152:37;;62702:16;62698:2;62694:25;62682:37;;63074:12;63034:8;62993:1;62931:25;62872:1;62811;62784:335;63445:1;63431:12;63427:20;63385:346;63486:3;63477:7;63474:16;63385:346;;63704:7;63694:8;63691:1;63664:25;63661:1;63658;63653:59;63539:1;63530:7;63526:15;63515:26;;63385:346;;;63389:77;63776:1;63764:8;:13;63760:45;;63786:19;;;;;;;;;;;;;;63760:45;63838:3;63822:13;:19;;;;61391:2462;;63863:60;63892:1;63896:2;63900:12;63914:8;63863:20;:60::i;:::-;61027:2904;60965:2966;;:::o;48377:324::-;48447:14;48680:1;48670:8;48667:15;48641:24;48637:46;48627:56;;48377:324;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:246::-;2469:1;2479:113;2493:6;2490:1;2487:13;2479:113;;;2578:1;2573:3;2569:11;2563:18;2559:1;2554:3;2550:11;2543:39;2515:2;2512:1;2508:10;2503:15;;2479:113;;;2626:1;2617:6;2612:3;2608:16;2601:27;2450:184;2388:246;;;:::o;2640:102::-;2681:6;2732:2;2728:7;2723:2;2716:5;2712:14;2708:28;2698:38;;2640:102;;;:::o;2748:377::-;2836:3;2864:39;2897:5;2864:39;:::i;:::-;2919:71;2983:6;2978:3;2919:71;:::i;:::-;2912:78;;2999:65;3057:6;3052:3;3045:4;3038:5;3034:16;2999:65;:::i;:::-;3089:29;3111:6;3089:29;:::i;:::-;3084:3;3080:39;3073:46;;2840:285;2748:377;;;;:::o;3131:313::-;3244:4;3282:2;3271:9;3267:18;3259:26;;3331:9;3325:4;3321:20;3317:1;3306:9;3302:17;3295:47;3359:78;3432:4;3423:6;3359:78;:::i;:::-;3351:86;;3131:313;;;;:::o;3450:77::-;3487:7;3516:5;3505:16;;3450:77;;;:::o;3533:122::-;3606:24;3624:5;3606:24;:::i;:::-;3599:5;3596:35;3586:63;;3645:1;3642;3635:12;3586:63;3533:122;:::o;3661:139::-;3707:5;3745:6;3732:20;3723:29;;3761:33;3788:5;3761:33;:::i;:::-;3661:139;;;;:::o;3806:329::-;3865:6;3914:2;3902:9;3893:7;3889:23;3885:32;3882:119;;;3920:79;;:::i;:::-;3882:119;4040:1;4065:53;4110:7;4101:6;4090:9;4086:22;4065:53;:::i;:::-;4055:63;;4011:117;3806:329;;;;:::o;4141:126::-;4178:7;4218:42;4211:5;4207:54;4196:65;;4141:126;;;:::o;4273:96::-;4310:7;4339:24;4357:5;4339:24;:::i;:::-;4328:35;;4273:96;;;:::o;4375:118::-;4462:24;4480:5;4462:24;:::i;:::-;4457:3;4450:37;4375:118;;:::o;4499:222::-;4592:4;4630:2;4619:9;4615:18;4607:26;;4643:71;4711:1;4700:9;4696:17;4687:6;4643:71;:::i;:::-;4499:222;;;;:::o;4727:122::-;4800:24;4818:5;4800:24;:::i;:::-;4793:5;4790:35;4780:63;;4839:1;4836;4829:12;4780:63;4727:122;:::o;4855:139::-;4901:5;4939:6;4926:20;4917:29;;4955:33;4982:5;4955:33;:::i;:::-;4855:139;;;;:::o;5000:474::-;5068:6;5076;5125:2;5113:9;5104:7;5100:23;5096:32;5093:119;;;5131:79;;:::i;:::-;5093:119;5251:1;5276:53;5321:7;5312:6;5301:9;5297:22;5276:53;:::i;:::-;5266:63;;5222:117;5378:2;5404:53;5449:7;5440:6;5429:9;5425:22;5404:53;:::i;:::-;5394:63;;5349:118;5000:474;;;;;:::o;5480:118::-;5567:24;5585:5;5567:24;:::i;:::-;5562:3;5555:37;5480:118;;:::o;5604:222::-;5697:4;5735:2;5724:9;5720:18;5712:26;;5748:71;5816:1;5805:9;5801:17;5792:6;5748:71;:::i;:::-;5604:222;;;;:::o;5832:619::-;5909:6;5917;5925;5974:2;5962:9;5953:7;5949:23;5945:32;5942:119;;;5980:79;;:::i;:::-;5942:119;6100:1;6125:53;6170:7;6161:6;6150:9;6146:22;6125:53;:::i;:::-;6115:63;;6071:117;6227:2;6253:53;6298:7;6289:6;6278:9;6274:22;6253:53;:::i;:::-;6243:63;;6198:118;6355:2;6381:53;6426:7;6417:6;6406:9;6402:22;6381:53;:::i;:::-;6371:63;;6326:118;5832:619;;;;;:::o;6457:117::-;6566:1;6563;6556:12;6580:117;6689:1;6686;6679:12;6703:180;6751:77;6748:1;6741:88;6848:4;6845:1;6838:15;6872:4;6869:1;6862:15;6889:281;6972:27;6994:4;6972:27;:::i;:::-;6964:6;6960:40;7102:6;7090:10;7087:22;7066:18;7054:10;7051:34;7048:62;7045:88;;;7113:18;;:::i;:::-;7045:88;7153:10;7149:2;7142:22;6932:238;6889:281;;:::o;7176:129::-;7210:6;7237:20;;:::i;:::-;7227:30;;7266:33;7294:4;7286:6;7266:33;:::i;:::-;7176:129;;;:::o;7311:308::-;7373:4;7463:18;7455:6;7452:30;7449:56;;;7485:18;;:::i;:::-;7449:56;7523:29;7545:6;7523:29;:::i;:::-;7515:37;;7607:4;7601;7597:15;7589:23;;7311:308;;;:::o;7625:146::-;7722:6;7717:3;7712;7699:30;7763:1;7754:6;7749:3;7745:16;7738:27;7625:146;;;:::o;7777:425::-;7855:5;7880:66;7896:49;7938:6;7896:49;:::i;:::-;7880:66;:::i;:::-;7871:75;;7969:6;7962:5;7955:21;8007:4;8000:5;7996:16;8045:3;8036:6;8031:3;8027:16;8024:25;8021:112;;;8052:79;;:::i;:::-;8021:112;8142:54;8189:6;8184:3;8179;8142:54;:::i;:::-;7861:341;7777:425;;;;;:::o;8222:340::-;8278:5;8327:3;8320:4;8312:6;8308:17;8304:27;8294:122;;8335:79;;:::i;:::-;8294:122;8452:6;8439:20;8477:79;8552:3;8544:6;8537:4;8529:6;8525:17;8477:79;:::i;:::-;8468:88;;8284:278;8222:340;;;;:::o;8568:509::-;8637:6;8686:2;8674:9;8665:7;8661:23;8657:32;8654:119;;;8692:79;;:::i;:::-;8654:119;8840:1;8829:9;8825:17;8812:31;8870:18;8862:6;8859:30;8856:117;;;8892:79;;:::i;:::-;8856:117;8997:63;9052:7;9043:6;9032:9;9028:22;8997:63;:::i;:::-;8987:73;;8783:287;8568:509;;;;:::o;9083:329::-;9142:6;9191:2;9179:9;9170:7;9166:23;9162:32;9159:119;;;9197:79;;:::i;:::-;9159:119;9317:1;9342:53;9387:7;9378:6;9367:9;9363:22;9342:53;:::i;:::-;9332:63;;9288:117;9083:329;;;;:::o;9418:114::-;9485:6;9519:5;9513:12;9503:22;;9418:114;;;:::o;9538:184::-;9637:11;9671:6;9666:3;9659:19;9711:4;9706:3;9702:14;9687:29;;9538:184;;;;:::o;9728:132::-;9795:4;9818:3;9810:11;;9848:4;9843:3;9839:14;9831:22;;9728:132;;;:::o;9866:108::-;9943:24;9961:5;9943:24;:::i;:::-;9938:3;9931:37;9866:108;;:::o;9980:179::-;10049:10;10070:46;10112:3;10104:6;10070:46;:::i;:::-;10148:4;10143:3;10139:14;10125:28;;9980:179;;;;:::o;10165:113::-;10235:4;10267;10262:3;10258:14;10250:22;;10165:113;;;:::o;10314:732::-;10433:3;10462:54;10510:5;10462:54;:::i;:::-;10532:86;10611:6;10606:3;10532:86;:::i;:::-;10525:93;;10642:56;10692:5;10642:56;:::i;:::-;10721:7;10752:1;10737:284;10762:6;10759:1;10756:13;10737:284;;;10838:6;10832:13;10865:63;10924:3;10909:13;10865:63;:::i;:::-;10858:70;;10951:60;11004:6;10951:60;:::i;:::-;10941:70;;10797:224;10784:1;10781;10777:9;10772:14;;10737:284;;;10741:14;11037:3;11030:10;;10438:608;;;10314:732;;;;:::o;11052:373::-;11195:4;11233:2;11222:9;11218:18;11210:26;;11282:9;11276:4;11272:20;11268:1;11257:9;11253:17;11246:47;11310:108;11413:4;11404:6;11310:108;:::i;:::-;11302:116;;11052:373;;;;:::o;11431:468::-;11496:6;11504;11553:2;11541:9;11532:7;11528:23;11524:32;11521:119;;;11559:79;;:::i;:::-;11521:119;11679:1;11704:53;11749:7;11740:6;11729:9;11725:22;11704:53;:::i;:::-;11694:63;;11650:117;11806:2;11832:50;11874:7;11865:6;11854:9;11850:22;11832:50;:::i;:::-;11822:60;;11777:115;11431:468;;;;;:::o;11905:307::-;11966:4;12056:18;12048:6;12045:30;12042:56;;;12078:18;;:::i;:::-;12042:56;12116:29;12138:6;12116:29;:::i;:::-;12108:37;;12200:4;12194;12190:15;12182:23;;11905:307;;;:::o;12218:423::-;12295:5;12320:65;12336:48;12377:6;12336:48;:::i;:::-;12320:65;:::i;:::-;12311:74;;12408:6;12401:5;12394:21;12446:4;12439:5;12435:16;12484:3;12475:6;12470:3;12466:16;12463:25;12460:112;;;12491:79;;:::i;:::-;12460:112;12581:54;12628:6;12623:3;12618;12581:54;:::i;:::-;12301:340;12218:423;;;;;:::o;12660:338::-;12715:5;12764:3;12757:4;12749:6;12745:17;12741:27;12731:122;;12772:79;;:::i;:::-;12731:122;12889:6;12876:20;12914:78;12988:3;12980:6;12973:4;12965:6;12961:17;12914:78;:::i;:::-;12905:87;;12721:277;12660:338;;;;:::o;13004:943::-;13099:6;13107;13115;13123;13172:3;13160:9;13151:7;13147:23;13143:33;13140:120;;;13179:79;;:::i;:::-;13140:120;13299:1;13324:53;13369:7;13360:6;13349:9;13345:22;13324:53;:::i;:::-;13314:63;;13270:117;13426:2;13452:53;13497:7;13488:6;13477:9;13473:22;13452:53;:::i;:::-;13442:63;;13397:118;13554:2;13580:53;13625:7;13616:6;13605:9;13601:22;13580:53;:::i;:::-;13570:63;;13525:118;13710:2;13699:9;13695:18;13682:32;13741:18;13733:6;13730:30;13727:117;;;13763:79;;:::i;:::-;13727:117;13868:62;13922:7;13913:6;13902:9;13898:22;13868:62;:::i;:::-;13858:72;;13653:287;13004:943;;;;;;;:::o;13953:474::-;14021:6;14029;14078:2;14066:9;14057:7;14053:23;14049:32;14046:119;;;14084:79;;:::i;:::-;14046:119;14204:1;14229:53;14274:7;14265:6;14254:9;14250:22;14229:53;:::i;:::-;14219:63;;14175:117;14331:2;14357:53;14402:7;14393:6;14382:9;14378:22;14357:53;:::i;:::-;14347:63;;14302:118;13953:474;;;;;:::o;14433:::-;14501:6;14509;14558:2;14546:9;14537:7;14533:23;14529:32;14526:119;;;14564:79;;:::i;:::-;14526:119;14684:1;14709:53;14754:7;14745:6;14734:9;14730:22;14709:53;:::i;:::-;14699:63;;14655:117;14811:2;14837:53;14882:7;14873:6;14862:9;14858:22;14837:53;:::i;:::-;14827:63;;14782:118;14433:474;;;;;:::o;14913:180::-;14961:77;14958:1;14951:88;15058:4;15055:1;15048:15;15082:4;15079:1;15072:15;15099:320;15143:6;15180:1;15174:4;15170:12;15160:22;;15227:1;15221:4;15217:12;15248:18;15238:81;;15304:4;15296:6;15292:17;15282:27;;15238:81;15366:2;15358:6;15355:14;15335:18;15332:38;15329:84;;15385:18;;:::i;:::-;15329:84;15150:269;15099:320;;;:::o;15425:173::-;15565:25;15561:1;15553:6;15549:14;15542:49;15425:173;:::o;15604:366::-;15746:3;15767:67;15831:2;15826:3;15767:67;:::i;:::-;15760:74;;15843:93;15932:3;15843:93;:::i;:::-;15961:2;15956:3;15952:12;15945:19;;15604:366;;;:::o;15976:419::-;16142:4;16180:2;16169:9;16165:18;16157:26;;16229:9;16223:4;16219:20;16215:1;16204:9;16200:17;16193:47;16257:131;16383:4;16257:131;:::i;:::-;16249:139;;15976:419;;;:::o;16401:180::-;16449:77;16446:1;16439:88;16546:4;16543:1;16536:15;16570:4;16567:1;16560:15;16587:191;16627:3;16646:20;16664:1;16646:20;:::i;:::-;16641:25;;16680:20;16698:1;16680:20;:::i;:::-;16675:25;;16723:1;16720;16716:9;16709:16;;16744:3;16741:1;16738:10;16735:36;;;16751:18;;:::i;:::-;16735:36;16587:191;;;;:::o;16784:177::-;16924:29;16920:1;16912:6;16908:14;16901:53;16784:177;:::o;16967:366::-;17109:3;17130:67;17194:2;17189:3;17130:67;:::i;:::-;17123:74;;17206:93;17295:3;17206:93;:::i;:::-;17324:2;17319:3;17315:12;17308:19;;16967:366;;;:::o;17339:419::-;17505:4;17543:2;17532:9;17528:18;17520:26;;17592:9;17586:4;17582:20;17578:1;17567:9;17563:17;17556:47;17620:131;17746:4;17620:131;:::i;:::-;17612:139;;17339:419;;;:::o;17764:179::-;17904:31;17900:1;17892:6;17888:14;17881:55;17764:179;:::o;17949:366::-;18091:3;18112:67;18176:2;18171:3;18112:67;:::i;:::-;18105:74;;18188:93;18277:3;18188:93;:::i;:::-;18306:2;18301:3;18297:12;18290:19;;17949:366;;;:::o;18321:419::-;18487:4;18525:2;18514:9;18510:18;18502:26;;18574:9;18568:4;18564:20;18560:1;18549:9;18545:17;18538:47;18602:131;18728:4;18602:131;:::i;:::-;18594:139;;18321:419;;;:::o;18746:178::-;18886:30;18882:1;18874:6;18870:14;18863:54;18746:178;:::o;18930:366::-;19072:3;19093:67;19157:2;19152:3;19093:67;:::i;:::-;19086:74;;19169:93;19258:3;19169:93;:::i;:::-;19287:2;19282:3;19278:12;19271:19;;18930:366;;;:::o;19302:419::-;19468:4;19506:2;19495:9;19491:18;19483:26;;19555:9;19549:4;19545:20;19541:1;19530:9;19526:17;19519:47;19583:131;19709:4;19583:131;:::i;:::-;19575:139;;19302:419;;;:::o;19727:141::-;19776:4;19799:3;19791:11;;19822:3;19819:1;19812:14;19856:4;19853:1;19843:18;19835:26;;19727:141;;;:::o;19874:93::-;19911:6;19958:2;19953;19946:5;19942:14;19938:23;19928:33;;19874:93;;;:::o;19973:107::-;20017:8;20067:5;20061:4;20057:16;20036:37;;19973:107;;;;:::o;20086:393::-;20155:6;20205:1;20193:10;20189:18;20228:97;20258:66;20247:9;20228:97;:::i;:::-;20346:39;20376:8;20365:9;20346:39;:::i;:::-;20334:51;;20418:4;20414:9;20407:5;20403:21;20394:30;;20467:4;20457:8;20453:19;20446:5;20443:30;20433:40;;20162:317;;20086:393;;;;;:::o;20485:60::-;20513:3;20534:5;20527:12;;20485:60;;;:::o;20551:142::-;20601:9;20634:53;20652:34;20661:24;20679:5;20661:24;:::i;:::-;20652:34;:::i;:::-;20634:53;:::i;:::-;20621:66;;20551:142;;;:::o;20699:75::-;20742:3;20763:5;20756:12;;20699:75;;;:::o;20780:269::-;20890:39;20921:7;20890:39;:::i;:::-;20951:91;21000:41;21024:16;21000:41;:::i;:::-;20992:6;20985:4;20979:11;20951:91;:::i;:::-;20945:4;20938:105;20856:193;20780:269;;;:::o;21055:73::-;21100:3;21055:73;:::o;21134:189::-;21211:32;;:::i;:::-;21252:65;21310:6;21302;21296:4;21252:65;:::i;:::-;21187:136;21134:189;;:::o;21329:186::-;21389:120;21406:3;21399:5;21396:14;21389:120;;;21460:39;21497:1;21490:5;21460:39;:::i;:::-;21433:1;21426:5;21422:13;21413:22;;21389:120;;;21329:186;;:::o;21521:543::-;21622:2;21617:3;21614:11;21611:446;;;21656:38;21688:5;21656:38;:::i;:::-;21740:29;21758:10;21740:29;:::i;:::-;21730:8;21726:44;21923:2;21911:10;21908:18;21905:49;;;21944:8;21929:23;;21905:49;21967:80;22023:22;22041:3;22023:22;:::i;:::-;22013:8;22009:37;21996:11;21967:80;:::i;:::-;21626:431;;21611:446;21521:543;;;:::o;22070:117::-;22124:8;22174:5;22168:4;22164:16;22143:37;;22070:117;;;;:::o;22193:169::-;22237:6;22270:51;22318:1;22314:6;22306:5;22303:1;22299:13;22270:51;:::i;:::-;22266:56;22351:4;22345;22341:15;22331:25;;22244:118;22193:169;;;;:::o;22367:295::-;22443:4;22589:29;22614:3;22608:4;22589:29;:::i;:::-;22581:37;;22651:3;22648:1;22644:11;22638:4;22635:21;22627:29;;22367:295;;;;:::o;22667:1395::-;22784:37;22817:3;22784:37;:::i;:::-;22886:18;22878:6;22875:30;22872:56;;;22908:18;;:::i;:::-;22872:56;22952:38;22984:4;22978:11;22952:38;:::i;:::-;23037:67;23097:6;23089;23083:4;23037:67;:::i;:::-;23131:1;23155:4;23142:17;;23187:2;23179:6;23176:14;23204:1;23199:618;;;;23861:1;23878:6;23875:77;;;23927:9;23922:3;23918:19;23912:26;23903:35;;23875:77;23978:67;24038:6;24031:5;23978:67;:::i;:::-;23972:4;23965:81;23834:222;23169:887;;23199:618;23251:4;23247:9;23239:6;23235:22;23285:37;23317:4;23285:37;:::i;:::-;23344:1;23358:208;23372:7;23369:1;23366:14;23358:208;;;23451:9;23446:3;23442:19;23436:26;23428:6;23421:42;23502:1;23494:6;23490:14;23480:24;;23549:2;23538:9;23534:18;23521:31;;23395:4;23392:1;23388:12;23383:17;;23358:208;;;23594:6;23585:7;23582:19;23579:179;;;23652:9;23647:3;23643:19;23637:26;23695:48;23737:4;23729:6;23725:17;23714:9;23695:48;:::i;:::-;23687:6;23680:64;23602:156;23579:179;23804:1;23800;23792:6;23788:14;23784:22;23778:4;23771:36;23206:611;;;23169:887;;22759:1303;;;22667:1395;;:::o;24068:180::-;24116:77;24113:1;24106:88;24213:4;24210:1;24203:15;24237:4;24234:1;24227:15;24254:181;24394:33;24390:1;24382:6;24378:14;24371:57;24254:181;:::o;24441:366::-;24583:3;24604:67;24668:2;24663:3;24604:67;:::i;:::-;24597:74;;24680:93;24769:3;24680:93;:::i;:::-;24798:2;24793:3;24789:12;24782:19;;24441:366;;;:::o;24813:419::-;24979:4;25017:2;25006:9;25002:18;24994:26;;25066:9;25060:4;25056:20;25052:1;25041:9;25037:17;25030:47;25094:131;25220:4;25094:131;:::i;:::-;25086:139;;24813:419;;;:::o;25238:160::-;25378:12;25374:1;25366:6;25362:14;25355:36;25238:160;:::o;25404:366::-;25546:3;25567:67;25631:2;25626:3;25567:67;:::i;:::-;25560:74;;25643:93;25732:3;25643:93;:::i;:::-;25761:2;25756:3;25752:12;25745:19;;25404:366;;;:::o;25776:419::-;25942:4;25980:2;25969:9;25965:18;25957:26;;26029:9;26023:4;26019:20;26015:1;26004:9;26000:17;25993:47;26057:131;26183:4;26057:131;:::i;:::-;26049:139;;25776:419;;;:::o;26201:410::-;26241:7;26264:20;26282:1;26264:20;:::i;:::-;26259:25;;26298:20;26316:1;26298:20;:::i;:::-;26293:25;;26353:1;26350;26346:9;26375:30;26393:11;26375:30;:::i;:::-;26364:41;;26554:1;26545:7;26541:15;26538:1;26535:22;26515:1;26508:9;26488:83;26465:139;;26584:18;;:::i;:::-;26465:139;26249:362;26201:410;;;;:::o;26617:168::-;26757:20;26753:1;26745:6;26741:14;26734:44;26617:168;:::o;26791:366::-;26933:3;26954:67;27018:2;27013:3;26954:67;:::i;:::-;26947:74;;27030:93;27119:3;27030:93;:::i;:::-;27148:2;27143:3;27139:12;27132:19;;26791:366;;;:::o;27163:419::-;27329:4;27367:2;27356:9;27352:18;27344:26;;27416:9;27410:4;27406:20;27402:1;27391:9;27387:17;27380:47;27444:131;27570:4;27444:131;:::i;:::-;27436:139;;27163:419;;;:::o;27588:172::-;27728:24;27724:1;27716:6;27712:14;27705:48;27588:172;:::o;27766:366::-;27908:3;27929:67;27993:2;27988:3;27929:67;:::i;:::-;27922:74;;28005:93;28094:3;28005:93;:::i;:::-;28123:2;28118:3;28114:12;28107:19;;27766:366;;;:::o;28138:419::-;28304:4;28342:2;28331:9;28327:18;28319:26;;28391:9;28385:4;28381:20;28377:1;28366:9;28362:17;28355:47;28419:131;28545:4;28419:131;:::i;:::-;28411:139;;28138:419;;;:::o;28563:235::-;28703:34;28699:1;28691:6;28687:14;28680:58;28772:18;28767:2;28759:6;28755:15;28748:43;28563:235;:::o;28804:366::-;28946:3;28967:67;29031:2;29026:3;28967:67;:::i;:::-;28960:74;;29043:93;29132:3;29043:93;:::i;:::-;29161:2;29156:3;29152:12;29145:19;;28804:366;;;:::o;29176:419::-;29342:4;29380:2;29369:9;29365:18;29357:26;;29429:9;29423:4;29419:20;29415:1;29404:9;29400:17;29393:47;29457:131;29583:4;29457:131;:::i;:::-;29449:139;;29176:419;;;:::o;29601:148::-;29703:11;29740:3;29725:18;;29601:148;;;;:::o;29755:390::-;29861:3;29889:39;29922:5;29889:39;:::i;:::-;29944:89;30026:6;30021:3;29944:89;:::i;:::-;29937:96;;30042:65;30100:6;30095:3;30088:4;30081:5;30077:16;30042:65;:::i;:::-;30132:6;30127:3;30123:16;30116:23;;29865:280;29755:390;;;;:::o;30175:874::-;30278:3;30315:5;30309:12;30344:36;30370:9;30344:36;:::i;:::-;30396:89;30478:6;30473:3;30396:89;:::i;:::-;30389:96;;30516:1;30505:9;30501:17;30532:1;30527:166;;;;30707:1;30702:341;;;;30494:549;;30527:166;30611:4;30607:9;30596;30592:25;30587:3;30580:38;30673:6;30666:14;30659:22;30651:6;30647:35;30642:3;30638:45;30631:52;;30527:166;;30702:341;30769:38;30801:5;30769:38;:::i;:::-;30829:1;30843:154;30857:6;30854:1;30851:13;30843:154;;;30931:7;30925:14;30921:1;30916:3;30912:11;30905:35;30981:1;30972:7;30968:15;30957:26;;30879:4;30876:1;30872:12;30867:17;;30843:154;;;31026:6;31021:3;31017:16;31010:23;;30709:334;;30494:549;;30282:767;;30175:874;;;;:::o;31055:589::-;31280:3;31302:95;31393:3;31384:6;31302:95;:::i;:::-;31295:102;;31414:95;31505:3;31496:6;31414:95;:::i;:::-;31407:102;;31526:92;31614:3;31605:6;31526:92;:::i;:::-;31519:99;;31635:3;31628:10;;31055:589;;;;;;:::o;31650:225::-;31790:34;31786:1;31778:6;31774:14;31767:58;31859:8;31854:2;31846:6;31842:15;31835:33;31650:225;:::o;31881:366::-;32023:3;32044:67;32108:2;32103:3;32044:67;:::i;:::-;32037:74;;32120:93;32209:3;32120:93;:::i;:::-;32238:2;32233:3;32229:12;32222:19;;31881:366;;;:::o;32253:419::-;32419:4;32457:2;32446:9;32442:18;32434:26;;32506:9;32500:4;32496:20;32492:1;32481:9;32477:17;32470:47;32534:131;32660:4;32534:131;:::i;:::-;32526:139;;32253:419;;;:::o;32678:182::-;32818:34;32814:1;32806:6;32802:14;32795:58;32678:182;:::o;32866:366::-;33008:3;33029:67;33093:2;33088:3;33029:67;:::i;:::-;33022:74;;33105:93;33194:3;33105:93;:::i;:::-;33223:2;33218:3;33214:12;33207:19;;32866:366;;;:::o;33238:419::-;33404:4;33442:2;33431:9;33427:18;33419:26;;33491:9;33485:4;33481:20;33477:1;33466:9;33462:17;33455:47;33519:131;33645:4;33519:131;:::i;:::-;33511:139;;33238:419;;;:::o;33663:181::-;33803:33;33799:1;33791:6;33787:14;33780:57;33663:181;:::o;33850:366::-;33992:3;34013:67;34077:2;34072:3;34013:67;:::i;:::-;34006:74;;34089:93;34178:3;34089:93;:::i;:::-;34207:2;34202:3;34198:12;34191:19;;33850:366;;;:::o;34222:419::-;34388:4;34426:2;34415:9;34411:18;34403:26;;34475:9;34469:4;34465:20;34461:1;34450:9;34446:17;34439:47;34503:131;34629:4;34503:131;:::i;:::-;34495:139;;34222:419;;;:::o;34647:98::-;34698:6;34732:5;34726:12;34716:22;;34647:98;;;:::o;34751:168::-;34834:11;34868:6;34863:3;34856:19;34908:4;34903:3;34899:14;34884:29;;34751:168;;;;:::o;34925:373::-;35011:3;35039:38;35071:5;35039:38;:::i;:::-;35093:70;35156:6;35151:3;35093:70;:::i;:::-;35086:77;;35172:65;35230:6;35225:3;35218:4;35211:5;35207:16;35172:65;:::i;:::-;35262:29;35284:6;35262:29;:::i;:::-;35257:3;35253:39;35246:46;;35015:283;34925:373;;;;:::o;35304:640::-;35499:4;35537:3;35526:9;35522:19;35514:27;;35551:71;35619:1;35608:9;35604:17;35595:6;35551:71;:::i;:::-;35632:72;35700:2;35689:9;35685:18;35676:6;35632:72;:::i;:::-;35714;35782:2;35771:9;35767:18;35758:6;35714:72;:::i;:::-;35833:9;35827:4;35823:20;35818:2;35807:9;35803:18;35796:48;35861:76;35932:4;35923:6;35861:76;:::i;:::-;35853:84;;35304:640;;;;;;;:::o;35950:141::-;36006:5;36037:6;36031:13;36022:22;;36053:32;36079:5;36053:32;:::i;:::-;35950:141;;;;:::o;36097:349::-;36166:6;36215:2;36203:9;36194:7;36190:23;36186:32;36183:119;;;36221:79;;:::i;:::-;36183:119;36341:1;36366:63;36421:7;36412:6;36401:9;36397:22;36366:63;:::i;:::-;36356:73;;36312:127;36097:349;;;;:::o;36452:180::-;36500:77;36497:1;36490:88;36597:4;36594:1;36587:15;36621:4;36618:1;36611:15

Swarm Source

ipfs://752dc7f7e49ad6e2a16cb8ea8d3e81ff90b5802adf9b0865a168e57e8e2b0d12
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.