ETH Price: $3,301.60 (+1.70%)
Gas: 1 Gwei

Token

Billy Bonkaz - Bonkaz Bars (BBB)
 

Overview

Max Total Supply

284 BBB

Holders

120

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 BBB
0x9a2e97fb15afce61692764acf0c5d166a40d551b
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:
BBB

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-03
*/

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.9.2) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proofLen - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            require(proofPos == proofLen, "MerkleProof: invalid multiproof");
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proofLen - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            require(proofPos == proofLen, "MerkleProof: invalid multiproof");
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// 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: @openzeppelin/contracts/utils/Address.sol


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: billy-bonkaz/utils/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

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

    // The number of tokens burned.
    uint256 internal _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 ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

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

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

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

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

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

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

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

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // 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 {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // 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 {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: billy-bonkaz/BBB.sol


pragma solidity 0.8.18;




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

    // Supplies
    uint256 public maxSupply = 999;

    // URIs
    string public baseURI = "ipfs://bafybeie5euuxbb4upgf4324zjgckanpks7qbzcptenvj5yh57kh774rxo4/";

    // Prices
    uint256 public ogSaleMintPrice = 0.015 ether;
    uint256 public whitelistSaleMintPrice = 0.018 ether;
    uint256 public publicSaleMintPrice = 0.02 ether;

    // Limits
    uint256 public maxMintLimitPerWallet = 3;

    // States
    bool public mintPaused = false;
    bool public ogSaleMintPaused = false;
    bool public whitelistSaleMintPaused = false;
    bool public publicSaleMintPaused = true;

    // Merkle tree roots
    bytes32 public ogSaleMintMerkleTreeRoot = 0xbf3e8ca7ff5e1c4a32d5148384aae9b86cfb64ce29c5838081e42c9d68731a08;
    bytes32 public whitelistSaleMintMerkleTreeRoot = 0xc9d08fa75b92cf806045cf1f29599e90ca297afce0b31d29d68c372bbd0255ec;

    // Wallet mint count
    mapping(address => uint256) public walletMintCount;

    // Constructor
    constructor() ERC721A("Billy Bonkaz - Bonkaz Bars", "BBB") {}

    // OG sale mint
    function ogSaleMint(uint256 _mintAmount, bytes32[] memory _merkleTreeProof) public payable ogSaleMintCompliance(_mintAmount, _merkleTreeProof) {
        require(!mintPaused, "Mint is paused");
        require(!ogSaleMintPaused, "OG sale mint is paused");

        require(msg.value == ogSaleMintPrice * _mintAmount, "Invalid value sent");
        
        _safeMint(msg.sender, _mintAmount);

        for (uint256 i = 0; i < _mintAmount; i++) {
            walletMintCount[msg.sender]++;
        }
    }

    modifier ogSaleMintCompliance(uint256 _mintAmount, bytes32[] memory _merkleTreeProof) {
        require(totalSupply() + _mintAmount <= maxSupply, "Exceeds the max supply");

        uint256 mintCount = walletMintCount[msg.sender];

        require(mintCount + _mintAmount <= maxMintLimitPerWallet, "Exceeds the max mint limit per wallet");

        require(isValidOGSaleMintMerkleTreeProof(_merkleTreeProof, keccak256(abi.encodePacked(msg.sender))), "Not whitelisted");

        _;
    }

    function isValidOGSaleMintMerkleTreeProof(bytes32[] memory proof, bytes32 leaf) public view returns (bool) {
        return MerkleProof.verify(proof, ogSaleMintMerkleTreeRoot, leaf);
    }

    // Whitelist sale mint
    function whitelistSaleMint(uint256 _mintAmount, bytes32[] memory _merkleTreeProof) public payable whitelistSaleMintCompliance(_mintAmount, _merkleTreeProof) {
        require(!mintPaused, "Mint is paused");
        require(!whitelistSaleMintPaused, "Whitelist sale mint is paused");

        require(msg.value == whitelistSaleMintPrice * _mintAmount, "Invalid value sent");
        
        _safeMint(msg.sender, _mintAmount);

        for (uint256 i = 0; i < _mintAmount; i++) {
            walletMintCount[msg.sender]++;
        }
    }

    modifier whitelistSaleMintCompliance(uint256 _mintAmount, bytes32[] memory _merkleTreeProof) {
        require(totalSupply() + _mintAmount <= maxSupply, "Exceeds the max supply");

        uint256 mintCount = walletMintCount[msg.sender];

        require(mintCount + _mintAmount <= maxMintLimitPerWallet, "Exceeds the max mint limit per wallet");

        require(isValidWhitelistSaleMintMerkleTreeProof(_merkleTreeProof, keccak256(abi.encodePacked(msg.sender))), "Not whitelisted");

        _;
    }

    function isValidWhitelistSaleMintMerkleTreeProof(bytes32[] memory proof, bytes32 leaf) public view returns (bool) {
        return MerkleProof.verify(proof, whitelistSaleMintMerkleTreeRoot, leaf);
    }

    // Public sale mint
    function publicSaleMint(uint256 _mintAmount) public payable publicSaleMintCompliance(_mintAmount) {
        require(!mintPaused, "Mint is paused");
        require(!publicSaleMintPaused, "Public sale mint is paused");

        require(msg.value == publicSaleMintPrice * _mintAmount, "Invalid value sent");
        
        _safeMint(msg.sender, _mintAmount);

        for (uint256 i = 0; i < _mintAmount; i++) {
            walletMintCount[msg.sender]++;
        }
    }
    
    modifier publicSaleMintCompliance(uint256 _mintAmount) {
        require(totalSupply() + _mintAmount <= maxSupply, "Exceeds the max supply");

        uint256 mintCount = walletMintCount[msg.sender];

        require(mintCount + _mintAmount <= maxMintLimitPerWallet, "Exceeds the max mint limit per wallet");

        _;
    }

    // Owner mint functions
    function ownerMint(uint256 _mintAmount) public onlyOwner ownerMintCompliance(_mintAmount) {
        require(!mintPaused, "Mint is paused");

        _safeMint(msg.sender, _mintAmount);
    }

    function ownerMintForOthers(address _receiver, uint256 _mintAmount) public onlyOwner ownerMintCompliance(_mintAmount) {
        require(!mintPaused, "Mint is paused");

        _safeMint(_receiver, _mintAmount);
    }

    modifier ownerMintCompliance(uint256 _mintAmount) {
        require(totalSupply() + _mintAmount <= maxSupply, "Exceeds the max supply");

        _;
    }

    // Setter functions
    function setMaxSupply(uint256 _supply) public onlyOwner {
        maxSupply = _supply;
    }

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

    function setOGSaleMintPrice(uint256 _cost) public onlyOwner {
        ogSaleMintPrice = _cost;
    }

    function setWhitelistSaleMintPrice(uint256 _cost) public onlyOwner {
        whitelistSaleMintPrice = _cost;
    }

    function setPublicSaleMintPrice(uint256 _cost) public onlyOwner {
        publicSaleMintPrice = _cost;
    }

    function setMaxMintLimitPerWallet(uint256 _limit) public onlyOwner {
        maxMintLimitPerWallet = _limit;
    }

    function setMintPaused(bool _state) public onlyOwner {
        mintPaused = _state;
    }

    function setOGSaleMintPaused(bool _state) public onlyOwner {
        ogSaleMintPaused = _state;
    }

    function setWhitelistSaleMintPaused(bool _state) public onlyOwner {
        whitelistSaleMintPaused = _state;
    }

    function setPublicSaleMintPaused(bool _state) public onlyOwner {
        publicSaleMintPaused = _state;
    }

    function setOGSaleMintMerkleTreeRoot(bytes32 _root) public onlyOwner {
        ogSaleMintMerkleTreeRoot = _root;
    }

    function setWhitelistSaleMintMerkleTreeRoot(bytes32 _root) public onlyOwner {
        whitelistSaleMintMerkleTreeRoot = _root;
    }

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

    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId), "Token doesn't exists");

        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), ".json")) : "";
    }
    
    function walletOfOwner(address _owner) public view returns (uint256[] memory) {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = _startTokenId();
        uint256 ownedTokenIndex = 0;
        address latestOwnerAddress;

        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
            TokenOwnership memory ownership = _ownerships[currentTokenId];

            if (!ownership.burned && ownership.addr != address(0)) {
                latestOwnerAddress = ownership.addr;
            }

            if (latestOwnerAddress == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;

                ownedTokenIndex++;
            }

            currentTokenId++;
        }

        return ownedTokenIds;
    }

    // Withdraw
    function withdraw() public payable onlyOwner {
        (bool partner, ) = payable(0x5D3E92f75404f3E3bAa01A6c0281FfCb468fc9a5).call{value: address(this).balance * 10 / 100}("");
        require(partner);

        (bool owner, ) = payable(owner()).call{value: address(this).balance}("");
        require(owner);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"isValidOGSaleMintMerkleTreeProof","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"isValidWhitelistSaleMintMerkleTreeProof","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintLimitPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleTreeProof","type":"bytes32[]"}],"name":"ogSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"ogSaleMintMerkleTreeRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogSaleMintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogSaleMintPrice","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":"_mintAmount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"ownerMintForOthers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleMintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxMintLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setMintPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setOGSaleMintMerkleTreeRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOGSaleMintPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setOGSaleMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicSaleMintPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setPublicSaleMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setWhitelistSaleMintMerkleTreeRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistSaleMintPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setWhitelistSaleMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleTreeProof","type":"bytes32[]"}],"name":"whitelistSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistSaleMintMerkleTreeRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSaleMintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSaleMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6103e7600955610100604052604360808181529062002bc660a039600a906200002990826200023a565b5066354a6ba7a18000600b55663ff2e795f50000600c5566470de4df820000600d556003600e55600f805463ffffffff191663010000001790557fbf3e8ca7ff5e1c4a32d5148384aae9b86cfb64ce29c5838081e42c9d68731a086010557fc9d08fa75b92cf806045cf1f29599e90ca297afce0b31d29d68c372bbd0255ec601155348015620000b857600080fd5b506040518060400160405280601a81526020017f42696c6c7920426f6e6b617a202d20426f6e6b617a20426172730000000000008152506040518060400160405280600381526020016221212160e91b81525081600290816200011c91906200023a565b5060036200012b82826200023a565b505060008055506200013d3362000143565b62000306565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001c057607f821691505b602082108103620001e157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200023557600081815260208120601f850160051c81016020861015620002105750805b601f850160051c820191505b8181101562000231578281556001016200021c565b5050505b505050565b81516001600160401b0381111562000256576200025662000195565b6200026e81620002678454620001ab565b84620001e7565b602080601f831160018114620002a657600084156200028d5750858301515b600019600386901b1c1916600185901b17855562000231565b600085815260208120601f198616915b82811015620002d757888601518255948401946001909101908401620002b6565b5085821015620002f65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6128b080620003166000396000f3fe6080604052600436106102e45760003560e01c80637e4831d311610190578063b6935501116100dc578063d5abeb0111610095578063f055f5731161006f578063f055f573146108a0578063f19e75d4146108c0578063f2fde38b146108e0578063f48bf2e21461090057600080fd5b8063d5abeb0114610821578063e985e9c514610837578063ec2354dc1461088057600080fd5b8063b69355011461076b578063b88d4fde1461078b578063bd3a17f5146107ab578063bfbe786f146107cb578063c87b56dd146107e1578063cc95f4d81461080157600080fd5b8063987c5afc11610149578063abdecfa511610123578063abdecfa5146106f8578063aedb2e9314610718578063b3ab66b014610738578063b3db45bf1461074b57600080fd5b8063987c5afc14610698578063a22cb465146106b8578063a27bff91146106d857600080fd5b80637e4831d3146105df57806383c2fe7e146105f9578063861a785f146106185780638da5cb5b1461063857806393ecb0c61461065657806395d89b411461068357600080fd5b80633ccfd60b1161024f5780636352211e116102085780636f8b44b0116101e25780636f8b44b01461056a57806370a082311461058a578063715018a6146105aa5780637ccd881c146105bf57600080fd5b80636352211e1461051557806364bc8b87146105355780636c0360eb1461055557600080fd5b80633ccfd60b1461046957806342842e0e1461047157806342c2170714610491578063438b6300146104b257806346e57f38146104df57806355f804b3146104f557600080fd5b80631212ec7d116102a15780631212ec7d146103d15780631369ca75146103e457806318160ddd146104045780631a387bc31461041d5780631dbb11e21461043357806323b872dd1461044957600080fd5b806301ffc9a7146102e957806306fdde031461031e578063081812fc14610340578063095ea7b3146103785780630a887cda1461039a57806311c9054e146103ad575b600080fd5b3480156102f557600080fd5b506103096103043660046120dd565b610916565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b50610333610968565b604051610315919061214a565b34801561034c57600080fd5b5061036061035b36600461215d565b6109fa565b6040516001600160a01b039091168152602001610315565b34801561038457600080fd5b50610398610393366004612192565b610a3e565b005b6103986103a8366004612281565b610acb565b3480156103b957600080fd5b506103c360115481565b604051908152602001610315565b6103986103df366004612281565b610cbf565b3480156103f057600080fd5b506103986103ff3660046122d7565b610e9a565b34801561041057600080fd5b50600154600054036103c3565b34801561042957600080fd5b506103c3600d5481565b34801561043f57600080fd5b506103c3600b5481565b34801561045557600080fd5b506103986104643660046122f2565b610ec0565b610398610ecb565b34801561047d57600080fd5b5061039861048c3660046122f2565b610fc5565b34801561049d57600080fd5b50600f54610309906301000000900460ff1681565b3480156104be57600080fd5b506104d26104cd36600461232e565b610fe0565b6040516103159190612349565b3480156104eb57600080fd5b506103c3600e5481565b34801561050157600080fd5b506103986105103660046123e4565b611125565b34801561052157600080fd5b5061036061053036600461215d565b611139565b34801561054157600080fd5b5061039861055036600461215d565b61114b565b34801561056157600080fd5b50610333611158565b34801561057657600080fd5b5061039861058536600461215d565b6111e6565b34801561059657600080fd5b506103c36105a536600461232e565b6111f3565b3480156105b657600080fd5b50610398611241565b3480156105cb57600080fd5b506103986105da36600461215d565b611255565b3480156105eb57600080fd5b50600f546103099060ff1681565b34801561060557600080fd5b50600f5461030990610100900460ff1681565b34801561062457600080fd5b5061039861063336600461215d565b611262565b34801561064457600080fd5b506008546001600160a01b0316610360565b34801561066257600080fd5b506103c361067136600461232e565b60126020526000908152604090205481565b34801561068f57600080fd5b5061033361126f565b3480156106a457600080fd5b506103986106b33660046122d7565b61127e565b3480156106c457600080fd5b506103986106d336600461242c565b6112a0565b3480156106e457600080fd5b506103986106f336600461215d565b611335565b34801561070457600080fd5b50600f546103099062010000900460ff1681565b34801561072457600080fd5b5061030961073336600461245f565b611342565b61039861074636600461215d565b611358565b34801561075757600080fd5b5061030961076636600461245f565b6114c4565b34801561077757600080fd5b506103986107863660046122d7565b6114d3565b34801561079757600080fd5b506103986107a63660046124a3565b6114ee565b3480156107b757600080fd5b506103986107c6366004612192565b611539565b3480156107d757600080fd5b506103c360105481565b3480156107ed57600080fd5b506103336107fc36600461215d565b6115a8565b34801561080d57600080fd5b5061039861081c3660046122d7565b611651565b34801561082d57600080fd5b506103c360095481565b34801561084357600080fd5b5061030961085236600461251e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561088c57600080fd5b5061039861089b36600461215d565b611675565b3480156108ac57600080fd5b506103986108bb36600461215d565b611682565b3480156108cc57600080fd5b506103986108db36600461215d565b61168f565b3480156108ec57600080fd5b506103986108fb36600461232e565b6116fe565b34801561090c57600080fd5b506103c3600c5481565b60006001600160e01b031982166380ac58cd60e01b148061094757506001600160e01b03198216635b5e139f60e01b145b8061096257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461097790612548565b80601f01602080910402602001604051908101604052809291908181526020018280546109a390612548565b80156109f05780601f106109c5576101008083540402835291602001916109f0565b820191906000526020600020905b8154815290600101906020018083116109d357829003601f168201915b5050505050905090565b6000610a0582611777565b610a22576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a4982611139565b9050806001600160a01b0316836001600160a01b031603610a7d5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a9d5750610a9b8133610852565b155b15610abb576040516367d9dca160e11b815260040160405180910390fd5b610ac68383836117a2565b505050565b818160095482610ade6001546000540390565b610ae89190612598565b1115610b0f5760405162461bcd60e51b8152600401610b06906125ab565b60405180910390fd5b33600090815260126020526040902054600e54610b2c8483612598565b1115610b4a5760405162461bcd60e51b8152600401610b06906125db565b6040516bffffffffffffffffffffffff193360601b166020820152610b8990839060340160405160208183030381529060405280519060200120611342565b610bc75760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b6044820152606401610b06565b600f5460ff1615610bea5760405162461bcd60e51b8152600401610b0690612620565b600f5462010000900460ff1615610c435760405162461bcd60e51b815260206004820152601d60248201527f57686974656c6973742073616c65206d696e74206973207061757365640000006044820152606401610b06565b84600c54610c519190612648565b3414610c6f5760405162461bcd60e51b8152600401610b069061265f565b610c7933866117fe565b60005b85811015610cb757336000908152601260205260408120805491610c9f8361268b565b91905055508080610caf9061268b565b915050610c7c565b505050505050565b818160095482610cd26001546000540390565b610cdc9190612598565b1115610cfa5760405162461bcd60e51b8152600401610b06906125ab565b33600090815260126020526040902054600e54610d178483612598565b1115610d355760405162461bcd60e51b8152600401610b06906125db565b6040516bffffffffffffffffffffffff193360601b166020820152610d74908390603401604051602081830303815290604052805190602001206114c4565b610db25760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b6044820152606401610b06565b600f5460ff1615610dd55760405162461bcd60e51b8152600401610b0690612620565b600f54610100900460ff1615610e265760405162461bcd60e51b815260206004820152601660248201527513d1c81cd85b19481b5a5b9d081a5cc81c185d5cd95960521b6044820152606401610b06565b84600b54610e349190612648565b3414610e525760405162461bcd60e51b8152600401610b069061265f565b610e5c33866117fe565b60005b85811015610cb757336000908152601260205260408120805491610e828361268b565b91905055508080610e929061268b565b915050610e5f565b610ea2611818565b600f805491151563010000000263ff00000019909216919091179055565b610ac6838383611872565b610ed3611818565b6000735d3e92f75404f3e3baa01a6c0281ffcb468fc9a56064610ef747600a612648565b610f0191906126a4565b604051600081818185875af1925050503d8060008114610f3d576040519150601f19603f3d011682016040523d82523d6000602084013e610f42565b606091505b5050905080610f5057600080fd5b6000610f646008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610fae576040519150601f19603f3d011682016040523d82523d6000602084013e610fb3565b606091505b5050905080610fc157600080fd5b5050565b610ac6838383604051806020016040528060008152506114ee565b60606000610fed836111f3565b90506000816001600160401b03811115611009576110096121bc565b604051908082528060200260200182016040528015611032578160200160208202803683370190505b509050600080805b848210801561104b57506009548311155b1561111a57600083815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615801592820183905290916110b8575080516001600160a01b031615155b156110c257805191505b876001600160a01b0316826001600160a01b03160361110757838584815181106110ee576110ee6126c6565b6020908102919091010152826111038161268b565b9350505b836111118161268b565b9450505061103a565b509195945050505050565b61112d611818565b600a610fc18282612722565b600061114482611a86565b5192915050565b611153611818565b600c55565b600a805461116590612548565b80601f016020809104026020016040519081016040528092919081815260200182805461119190612548565b80156111de5780601f106111b3576101008083540402835291602001916111de565b820191906000526020600020905b8154815290600101906020018083116111c157829003601f168201915b505050505081565b6111ee611818565b600955565b60006001600160a01b03821661121c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b611249611818565b6112536000611ba0565b565b61125d611818565b600e55565b61126a611818565b601155565b60606003805461097790612548565b611286611818565b600f80549115156101000261ff0019909216919091179055565b336001600160a01b038316036112c95760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61133d611818565b601055565b60006113518360115484611bf2565b9392505050565b806009548161136a6001546000540390565b6113749190612598565b11156113925760405162461bcd60e51b8152600401610b06906125ab565b33600090815260126020526040902054600e546113af8383612598565b11156113cd5760405162461bcd60e51b8152600401610b06906125db565b600f5460ff16156113f05760405162461bcd60e51b8152600401610b0690612620565b600f546301000000900460ff161561144a5760405162461bcd60e51b815260206004820152601a60248201527f5075626c69632073616c65206d696e74206973207061757365640000000000006044820152606401610b06565b82600d546114589190612648565b34146114765760405162461bcd60e51b8152600401610b069061265f565b61148033846117fe565b60005b838110156114be573360009081526012602052604081208054916114a68361268b565b919050555080806114b69061268b565b915050611483565b50505050565b60006113518360105484611bf2565b6114db611818565b600f805460ff1916911515919091179055565b6114f9848484611872565b6001600160a01b0383163b1515801561151b575061151984848484611c08565b155b156114be576040516368d2bf6b60e11b815260040160405180910390fd5b611541611818565b80600954816115536001546000540390565b61155d9190612598565b111561157b5760405162461bcd60e51b8152600401610b06906125ab565b600f5460ff161561159e5760405162461bcd60e51b8152600401610b0690612620565b610ac683836117fe565b60606115b382611777565b6115f65760405162461bcd60e51b8152602060048201526014602482015273546f6b656e20646f65736e27742065786973747360601b6044820152606401610b06565b6000611600611cf4565b905060008151116116205760405180602001604052806000815250611351565b8061162a84611d03565b60405160200161163b9291906127e1565b6040516020818303038152906040529392505050565b611659611818565b600f8054911515620100000262ff000019909216919091179055565b61167d611818565b600d55565b61168a611818565b600b55565b611697611818565b80600954816116a96001546000540390565b6116b39190612598565b11156116d15760405162461bcd60e51b8152600401610b06906125ab565b600f5460ff16156116f45760405162461bcd60e51b8152600401610b0690612620565b610fc133836117fe565b611706611818565b6001600160a01b03811661176b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b06565b61177481611ba0565b50565b6000805482108015610962575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610fc1828260405180602001604052806000815250611d95565b6008546001600160a01b031633146112535760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b06565b600061187d82611a86565b80519091506000906001600160a01b0316336001600160a01b031614806118ab575081516118ab9033610852565b806118c65750336118bb846109fa565b6001600160a01b0316145b9050806118e657604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461191b5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661194257604051633a954ecd60e21b815260040160405180910390fd5b61195260008484600001516117a2565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611a3c57600054811015611a3c57825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281600054811015611b8757600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611b855780516001600160a01b031615611b1c579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611b80579392505050565b611b1c565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082611bff8584611da2565b14949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611c3d903390899088908890600401612820565b6020604051808303816000875af1925050508015611c78575060408051601f3d908101601f19168201909252611c759181019061285d565b60015b611cd6573d808015611ca6576040519150601f19603f3d011682016040523d82523d6000602084013e611cab565b606091505b508051600003611cce576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461097790612548565b60606000611d1083611def565b60010190506000816001600160401b03811115611d2f57611d2f6121bc565b6040519080825280601f01601f191660200182016040528015611d59576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611d6357509392505050565b610ac68383836001611ec7565b600081815b8451811015611de757611dd382868381518110611dc657611dc66126c6565b6020026020010151612098565b915080611ddf8161268b565b915050611da7565b509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611e2e5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611e5a576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611e7857662386f26fc10000830492506010015b6305f5e1008310611e90576305f5e100830492506008015b6127108310611ea457612710830492506004015b60648310611eb6576064830492506002015b600a83106109625760010192915050565b6000546001600160a01b038516611ef057604051622e076360e81b815260040160405180910390fd5b83600003611f115760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611fc257506001600160a01b0387163b15155b1561204a575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120136000888480600101955088611c08565b612030576040516368d2bf6b60e11b815260040160405180910390fd5b808203611fc857826000541461204557600080fd5b61208f565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480820361204b575b50600055611a7f565b60008183106120b4576000828152602084905260409020611351565b6000838152602083905260409020611351565b6001600160e01b03198116811461177457600080fd5b6000602082840312156120ef57600080fd5b8135611351816120c7565b60005b838110156121155781810151838201526020016120fd565b50506000910152565b600081518084526121368160208601602086016120fa565b601f01601f19169290920160200192915050565b602081526000611351602083018461211e565b60006020828403121561216f57600080fd5b5035919050565b80356001600160a01b038116811461218d57600080fd5b919050565b600080604083850312156121a557600080fd5b6121ae83612176565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156121fa576121fa6121bc565b604052919050565b600082601f83011261221357600080fd5b813560206001600160401b0382111561222e5761222e6121bc565b8160051b61223d8282016121d2565b928352848101820192828101908785111561225757600080fd5b83870192505b848310156122765782358252918301919083019061225d565b979650505050505050565b6000806040838503121561229457600080fd5b8235915060208301356001600160401b038111156122b157600080fd5b6122bd85828601612202565b9150509250929050565b8035801515811461218d57600080fd5b6000602082840312156122e957600080fd5b611351826122c7565b60008060006060848603121561230757600080fd5b61231084612176565b925061231e60208501612176565b9150604084013590509250925092565b60006020828403121561234057600080fd5b61135182612176565b6020808252825182820181905260009190848201906040850190845b8181101561238157835183529284019291840191600101612365565b50909695505050505050565b60006001600160401b038311156123a6576123a66121bc565b6123b9601f8401601f19166020016121d2565b90508281528383830111156123cd57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156123f657600080fd5b81356001600160401b0381111561240c57600080fd5b8201601f8101841361241d57600080fd5b611cec8482356020840161238d565b6000806040838503121561243f57600080fd5b61244883612176565b9150612456602084016122c7565b90509250929050565b6000806040838503121561247257600080fd5b82356001600160401b0381111561248857600080fd5b61249485828601612202565b95602094909401359450505050565b600080600080608085870312156124b957600080fd5b6124c285612176565b93506124d060208601612176565b92506040850135915060608501356001600160401b038111156124f257600080fd5b8501601f8101871361250357600080fd5b6125128782356020840161238d565b91505092959194509250565b6000806040838503121561253157600080fd5b61253a83612176565b915061245660208401612176565b600181811c9082168061255c57607f821691505b60208210810361257c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561096257610962612582565b6020808252601690820152754578636565647320746865206d617820737570706c7960501b604082015260600190565b60208082526025908201527f4578636565647320746865206d6178206d696e74206c696d6974207065722077604082015264185b1b195d60da1b606082015260800190565b6020808252600e908201526d135a5b9d081a5cc81c185d5cd95960921b604082015260600190565b808202811582820484141761096257610962612582565b602080825260129082015271125b9d985b1a59081d985b1d59481cd95b9d60721b604082015260600190565b60006001820161269d5761269d612582565b5060010190565b6000826126c157634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b601f821115610ac657600081815260208120601f850160051c810160208610156127035750805b601f850160051c820191505b81811015610cb75782815560010161270f565b81516001600160401b0381111561273b5761273b6121bc565b61274f816127498454612548565b846126dc565b602080601f831160018114612784576000841561276c5750858301515b600019600386901b1c1916600185901b178555610cb7565b600085815260208120601f198616915b828110156127b357888601518255948401946001909101908401612794565b50858210156127d15787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600083516127f38184602088016120fa565b8351908301906128078183602088016120fa565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128539083018461211e565b9695505050505050565b60006020828403121561286f57600080fd5b8151611351816120c756fea264697066735822122027528482eb23611c24e3a6e083fe04d8c73d6a1a169c842271636150571946f064736f6c63430008120033697066733a2f2f6261667962656965356575757862623475706766343332347a6a67636b616e706b733771627a637074656e766a35796835376b6837373472786f342f

Deployed Bytecode

0x6080604052600436106102e45760003560e01c80637e4831d311610190578063b6935501116100dc578063d5abeb0111610095578063f055f5731161006f578063f055f573146108a0578063f19e75d4146108c0578063f2fde38b146108e0578063f48bf2e21461090057600080fd5b8063d5abeb0114610821578063e985e9c514610837578063ec2354dc1461088057600080fd5b8063b69355011461076b578063b88d4fde1461078b578063bd3a17f5146107ab578063bfbe786f146107cb578063c87b56dd146107e1578063cc95f4d81461080157600080fd5b8063987c5afc11610149578063abdecfa511610123578063abdecfa5146106f8578063aedb2e9314610718578063b3ab66b014610738578063b3db45bf1461074b57600080fd5b8063987c5afc14610698578063a22cb465146106b8578063a27bff91146106d857600080fd5b80637e4831d3146105df57806383c2fe7e146105f9578063861a785f146106185780638da5cb5b1461063857806393ecb0c61461065657806395d89b411461068357600080fd5b80633ccfd60b1161024f5780636352211e116102085780636f8b44b0116101e25780636f8b44b01461056a57806370a082311461058a578063715018a6146105aa5780637ccd881c146105bf57600080fd5b80636352211e1461051557806364bc8b87146105355780636c0360eb1461055557600080fd5b80633ccfd60b1461046957806342842e0e1461047157806342c2170714610491578063438b6300146104b257806346e57f38146104df57806355f804b3146104f557600080fd5b80631212ec7d116102a15780631212ec7d146103d15780631369ca75146103e457806318160ddd146104045780631a387bc31461041d5780631dbb11e21461043357806323b872dd1461044957600080fd5b806301ffc9a7146102e957806306fdde031461031e578063081812fc14610340578063095ea7b3146103785780630a887cda1461039a57806311c9054e146103ad575b600080fd5b3480156102f557600080fd5b506103096103043660046120dd565b610916565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b50610333610968565b604051610315919061214a565b34801561034c57600080fd5b5061036061035b36600461215d565b6109fa565b6040516001600160a01b039091168152602001610315565b34801561038457600080fd5b50610398610393366004612192565b610a3e565b005b6103986103a8366004612281565b610acb565b3480156103b957600080fd5b506103c360115481565b604051908152602001610315565b6103986103df366004612281565b610cbf565b3480156103f057600080fd5b506103986103ff3660046122d7565b610e9a565b34801561041057600080fd5b50600154600054036103c3565b34801561042957600080fd5b506103c3600d5481565b34801561043f57600080fd5b506103c3600b5481565b34801561045557600080fd5b506103986104643660046122f2565b610ec0565b610398610ecb565b34801561047d57600080fd5b5061039861048c3660046122f2565b610fc5565b34801561049d57600080fd5b50600f54610309906301000000900460ff1681565b3480156104be57600080fd5b506104d26104cd36600461232e565b610fe0565b6040516103159190612349565b3480156104eb57600080fd5b506103c3600e5481565b34801561050157600080fd5b506103986105103660046123e4565b611125565b34801561052157600080fd5b5061036061053036600461215d565b611139565b34801561054157600080fd5b5061039861055036600461215d565b61114b565b34801561056157600080fd5b50610333611158565b34801561057657600080fd5b5061039861058536600461215d565b6111e6565b34801561059657600080fd5b506103c36105a536600461232e565b6111f3565b3480156105b657600080fd5b50610398611241565b3480156105cb57600080fd5b506103986105da36600461215d565b611255565b3480156105eb57600080fd5b50600f546103099060ff1681565b34801561060557600080fd5b50600f5461030990610100900460ff1681565b34801561062457600080fd5b5061039861063336600461215d565b611262565b34801561064457600080fd5b506008546001600160a01b0316610360565b34801561066257600080fd5b506103c361067136600461232e565b60126020526000908152604090205481565b34801561068f57600080fd5b5061033361126f565b3480156106a457600080fd5b506103986106b33660046122d7565b61127e565b3480156106c457600080fd5b506103986106d336600461242c565b6112a0565b3480156106e457600080fd5b506103986106f336600461215d565b611335565b34801561070457600080fd5b50600f546103099062010000900460ff1681565b34801561072457600080fd5b5061030961073336600461245f565b611342565b61039861074636600461215d565b611358565b34801561075757600080fd5b5061030961076636600461245f565b6114c4565b34801561077757600080fd5b506103986107863660046122d7565b6114d3565b34801561079757600080fd5b506103986107a63660046124a3565b6114ee565b3480156107b757600080fd5b506103986107c6366004612192565b611539565b3480156107d757600080fd5b506103c360105481565b3480156107ed57600080fd5b506103336107fc36600461215d565b6115a8565b34801561080d57600080fd5b5061039861081c3660046122d7565b611651565b34801561082d57600080fd5b506103c360095481565b34801561084357600080fd5b5061030961085236600461251e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561088c57600080fd5b5061039861089b36600461215d565b611675565b3480156108ac57600080fd5b506103986108bb36600461215d565b611682565b3480156108cc57600080fd5b506103986108db36600461215d565b61168f565b3480156108ec57600080fd5b506103986108fb36600461232e565b6116fe565b34801561090c57600080fd5b506103c3600c5481565b60006001600160e01b031982166380ac58cd60e01b148061094757506001600160e01b03198216635b5e139f60e01b145b8061096257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461097790612548565b80601f01602080910402602001604051908101604052809291908181526020018280546109a390612548565b80156109f05780601f106109c5576101008083540402835291602001916109f0565b820191906000526020600020905b8154815290600101906020018083116109d357829003601f168201915b5050505050905090565b6000610a0582611777565b610a22576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a4982611139565b9050806001600160a01b0316836001600160a01b031603610a7d5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a9d5750610a9b8133610852565b155b15610abb576040516367d9dca160e11b815260040160405180910390fd5b610ac68383836117a2565b505050565b818160095482610ade6001546000540390565b610ae89190612598565b1115610b0f5760405162461bcd60e51b8152600401610b06906125ab565b60405180910390fd5b33600090815260126020526040902054600e54610b2c8483612598565b1115610b4a5760405162461bcd60e51b8152600401610b06906125db565b6040516bffffffffffffffffffffffff193360601b166020820152610b8990839060340160405160208183030381529060405280519060200120611342565b610bc75760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b6044820152606401610b06565b600f5460ff1615610bea5760405162461bcd60e51b8152600401610b0690612620565b600f5462010000900460ff1615610c435760405162461bcd60e51b815260206004820152601d60248201527f57686974656c6973742073616c65206d696e74206973207061757365640000006044820152606401610b06565b84600c54610c519190612648565b3414610c6f5760405162461bcd60e51b8152600401610b069061265f565b610c7933866117fe565b60005b85811015610cb757336000908152601260205260408120805491610c9f8361268b565b91905055508080610caf9061268b565b915050610c7c565b505050505050565b818160095482610cd26001546000540390565b610cdc9190612598565b1115610cfa5760405162461bcd60e51b8152600401610b06906125ab565b33600090815260126020526040902054600e54610d178483612598565b1115610d355760405162461bcd60e51b8152600401610b06906125db565b6040516bffffffffffffffffffffffff193360601b166020820152610d74908390603401604051602081830303815290604052805190602001206114c4565b610db25760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b6044820152606401610b06565b600f5460ff1615610dd55760405162461bcd60e51b8152600401610b0690612620565b600f54610100900460ff1615610e265760405162461bcd60e51b815260206004820152601660248201527513d1c81cd85b19481b5a5b9d081a5cc81c185d5cd95960521b6044820152606401610b06565b84600b54610e349190612648565b3414610e525760405162461bcd60e51b8152600401610b069061265f565b610e5c33866117fe565b60005b85811015610cb757336000908152601260205260408120805491610e828361268b565b91905055508080610e929061268b565b915050610e5f565b610ea2611818565b600f805491151563010000000263ff00000019909216919091179055565b610ac6838383611872565b610ed3611818565b6000735d3e92f75404f3e3baa01a6c0281ffcb468fc9a56064610ef747600a612648565b610f0191906126a4565b604051600081818185875af1925050503d8060008114610f3d576040519150601f19603f3d011682016040523d82523d6000602084013e610f42565b606091505b5050905080610f5057600080fd5b6000610f646008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610fae576040519150601f19603f3d011682016040523d82523d6000602084013e610fb3565b606091505b5050905080610fc157600080fd5b5050565b610ac6838383604051806020016040528060008152506114ee565b60606000610fed836111f3565b90506000816001600160401b03811115611009576110096121bc565b604051908082528060200260200182016040528015611032578160200160208202803683370190505b509050600080805b848210801561104b57506009548311155b1561111a57600083815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615801592820183905290916110b8575080516001600160a01b031615155b156110c257805191505b876001600160a01b0316826001600160a01b03160361110757838584815181106110ee576110ee6126c6565b6020908102919091010152826111038161268b565b9350505b836111118161268b565b9450505061103a565b509195945050505050565b61112d611818565b600a610fc18282612722565b600061114482611a86565b5192915050565b611153611818565b600c55565b600a805461116590612548565b80601f016020809104026020016040519081016040528092919081815260200182805461119190612548565b80156111de5780601f106111b3576101008083540402835291602001916111de565b820191906000526020600020905b8154815290600101906020018083116111c157829003601f168201915b505050505081565b6111ee611818565b600955565b60006001600160a01b03821661121c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b611249611818565b6112536000611ba0565b565b61125d611818565b600e55565b61126a611818565b601155565b60606003805461097790612548565b611286611818565b600f80549115156101000261ff0019909216919091179055565b336001600160a01b038316036112c95760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61133d611818565b601055565b60006113518360115484611bf2565b9392505050565b806009548161136a6001546000540390565b6113749190612598565b11156113925760405162461bcd60e51b8152600401610b06906125ab565b33600090815260126020526040902054600e546113af8383612598565b11156113cd5760405162461bcd60e51b8152600401610b06906125db565b600f5460ff16156113f05760405162461bcd60e51b8152600401610b0690612620565b600f546301000000900460ff161561144a5760405162461bcd60e51b815260206004820152601a60248201527f5075626c69632073616c65206d696e74206973207061757365640000000000006044820152606401610b06565b82600d546114589190612648565b34146114765760405162461bcd60e51b8152600401610b069061265f565b61148033846117fe565b60005b838110156114be573360009081526012602052604081208054916114a68361268b565b919050555080806114b69061268b565b915050611483565b50505050565b60006113518360105484611bf2565b6114db611818565b600f805460ff1916911515919091179055565b6114f9848484611872565b6001600160a01b0383163b1515801561151b575061151984848484611c08565b155b156114be576040516368d2bf6b60e11b815260040160405180910390fd5b611541611818565b80600954816115536001546000540390565b61155d9190612598565b111561157b5760405162461bcd60e51b8152600401610b06906125ab565b600f5460ff161561159e5760405162461bcd60e51b8152600401610b0690612620565b610ac683836117fe565b60606115b382611777565b6115f65760405162461bcd60e51b8152602060048201526014602482015273546f6b656e20646f65736e27742065786973747360601b6044820152606401610b06565b6000611600611cf4565b905060008151116116205760405180602001604052806000815250611351565b8061162a84611d03565b60405160200161163b9291906127e1565b6040516020818303038152906040529392505050565b611659611818565b600f8054911515620100000262ff000019909216919091179055565b61167d611818565b600d55565b61168a611818565b600b55565b611697611818565b80600954816116a96001546000540390565b6116b39190612598565b11156116d15760405162461bcd60e51b8152600401610b06906125ab565b600f5460ff16156116f45760405162461bcd60e51b8152600401610b0690612620565b610fc133836117fe565b611706611818565b6001600160a01b03811661176b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b06565b61177481611ba0565b50565b6000805482108015610962575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610fc1828260405180602001604052806000815250611d95565b6008546001600160a01b031633146112535760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b06565b600061187d82611a86565b80519091506000906001600160a01b0316336001600160a01b031614806118ab575081516118ab9033610852565b806118c65750336118bb846109fa565b6001600160a01b0316145b9050806118e657604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461191b5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661194257604051633a954ecd60e21b815260040160405180910390fd5b61195260008484600001516117a2565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611a3c57600054811015611a3c57825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281600054811015611b8757600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611b855780516001600160a01b031615611b1c579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611b80579392505050565b611b1c565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082611bff8584611da2565b14949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611c3d903390899088908890600401612820565b6020604051808303816000875af1925050508015611c78575060408051601f3d908101601f19168201909252611c759181019061285d565b60015b611cd6573d808015611ca6576040519150601f19603f3d011682016040523d82523d6000602084013e611cab565b606091505b508051600003611cce576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461097790612548565b60606000611d1083611def565b60010190506000816001600160401b03811115611d2f57611d2f6121bc565b6040519080825280601f01601f191660200182016040528015611d59576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611d6357509392505050565b610ac68383836001611ec7565b600081815b8451811015611de757611dd382868381518110611dc657611dc66126c6565b6020026020010151612098565b915080611ddf8161268b565b915050611da7565b509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611e2e5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611e5a576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611e7857662386f26fc10000830492506010015b6305f5e1008310611e90576305f5e100830492506008015b6127108310611ea457612710830492506004015b60648310611eb6576064830492506002015b600a83106109625760010192915050565b6000546001600160a01b038516611ef057604051622e076360e81b815260040160405180910390fd5b83600003611f115760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611fc257506001600160a01b0387163b15155b1561204a575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120136000888480600101955088611c08565b612030576040516368d2bf6b60e11b815260040160405180910390fd5b808203611fc857826000541461204557600080fd5b61208f565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480820361204b575b50600055611a7f565b60008183106120b4576000828152602084905260409020611351565b6000838152602083905260409020611351565b6001600160e01b03198116811461177457600080fd5b6000602082840312156120ef57600080fd5b8135611351816120c7565b60005b838110156121155781810151838201526020016120fd565b50506000910152565b600081518084526121368160208601602086016120fa565b601f01601f19169290920160200192915050565b602081526000611351602083018461211e565b60006020828403121561216f57600080fd5b5035919050565b80356001600160a01b038116811461218d57600080fd5b919050565b600080604083850312156121a557600080fd5b6121ae83612176565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156121fa576121fa6121bc565b604052919050565b600082601f83011261221357600080fd5b813560206001600160401b0382111561222e5761222e6121bc565b8160051b61223d8282016121d2565b928352848101820192828101908785111561225757600080fd5b83870192505b848310156122765782358252918301919083019061225d565b979650505050505050565b6000806040838503121561229457600080fd5b8235915060208301356001600160401b038111156122b157600080fd5b6122bd85828601612202565b9150509250929050565b8035801515811461218d57600080fd5b6000602082840312156122e957600080fd5b611351826122c7565b60008060006060848603121561230757600080fd5b61231084612176565b925061231e60208501612176565b9150604084013590509250925092565b60006020828403121561234057600080fd5b61135182612176565b6020808252825182820181905260009190848201906040850190845b8181101561238157835183529284019291840191600101612365565b50909695505050505050565b60006001600160401b038311156123a6576123a66121bc565b6123b9601f8401601f19166020016121d2565b90508281528383830111156123cd57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156123f657600080fd5b81356001600160401b0381111561240c57600080fd5b8201601f8101841361241d57600080fd5b611cec8482356020840161238d565b6000806040838503121561243f57600080fd5b61244883612176565b9150612456602084016122c7565b90509250929050565b6000806040838503121561247257600080fd5b82356001600160401b0381111561248857600080fd5b61249485828601612202565b95602094909401359450505050565b600080600080608085870312156124b957600080fd5b6124c285612176565b93506124d060208601612176565b92506040850135915060608501356001600160401b038111156124f257600080fd5b8501601f8101871361250357600080fd5b6125128782356020840161238d565b91505092959194509250565b6000806040838503121561253157600080fd5b61253a83612176565b915061245660208401612176565b600181811c9082168061255c57607f821691505b60208210810361257c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561096257610962612582565b6020808252601690820152754578636565647320746865206d617820737570706c7960501b604082015260600190565b60208082526025908201527f4578636565647320746865206d6178206d696e74206c696d6974207065722077604082015264185b1b195d60da1b606082015260800190565b6020808252600e908201526d135a5b9d081a5cc81c185d5cd95960921b604082015260600190565b808202811582820484141761096257610962612582565b602080825260129082015271125b9d985b1a59081d985b1d59481cd95b9d60721b604082015260600190565b60006001820161269d5761269d612582565b5060010190565b6000826126c157634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b601f821115610ac657600081815260208120601f850160051c810160208610156127035750805b601f850160051c820191505b81811015610cb75782815560010161270f565b81516001600160401b0381111561273b5761273b6121bc565b61274f816127498454612548565b846126dc565b602080601f831160018114612784576000841561276c5750858301515b600019600386901b1c1916600185901b178555610cb7565b600085815260208120601f198616915b828110156127b357888601518255948401946001909101908401612794565b50858210156127d15787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600083516127f38184602088016120fa565b8351908301906128078183602088016120fa565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128539083018461211e565b9695505050505050565b60006020828403121561286f57600080fd5b8151611351816120c756fea264697066735822122027528482eb23611c24e3a6e083fe04d8c73d6a1a169c842271636150571946f064736f6c63430008120033

Deployed Bytecode Sourcemap

72337:8318:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54808:305;;;;;;;;;;-1:-1:-1;54808:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;54808:305:0;;;;;;;;58193:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;59696:204::-;;;;;;;;;;-1:-1:-1;59696:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;59696:204:0;1533:203:1;59259:371:0;;;;;;;;;;-1:-1:-1;59259:371:0;;;;;:::i;:::-;;:::i;:::-;;74732:549;;;;;;:::i;:::-;;:::i;73160:115::-;;;;;;;;;;;;;;;;;;;3874:25:1;;;3862:2;3847:18;73160:115:0;3728:177:1;73479:514:0;;;;;;:::i;:::-;;:::i;78542:111::-;;;;;;;;;;-1:-1:-1;78542:111:0;;;;;:::i;:::-;;:::i;54057:303::-;;;;;;;;;;-1:-1:-1;54311:12:0;;54101:7;54295:13;:28;54057:303;;72706:47;;;;;;;;;;;;;;;;72597:44;;;;;;;;;;;;;;;;60553:170;;;;;;;;;;-1:-1:-1;60553:170:0;;;;;:::i;:::-;;:::i;80331:321::-;;;:::i;60794:185::-;;;;;;;;;;-1:-1:-1;60794:185:0;;;;;:::i;:::-;;:::i;72971:39::-;;;;;;;;;;-1:-1:-1;72971:39:0;;;;;;;;;;;79416:890;;;;;;;;;;-1:-1:-1;79416:890:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;72777:40::-;;;;;;;;;;;;;;;;77633:90;;;;;;;;;;-1:-1:-1;77633:90:0;;;;;:::i;:::-;;:::i;58002:124::-;;;;;;;;;;-1:-1:-1;58002:124:0;;;;;:::i;:::-;;:::i;77841:116::-;;;;;;;;;;-1:-1:-1;77841:116:0;;;;;:::i;:::-;;:::i;72480:93::-;;;;;;;;;;;;;:::i;77531:94::-;;;;;;;;;;-1:-1:-1;77531:94:0;;;;;:::i;:::-;;:::i;55177:206::-;;;;;;;;;;-1:-1:-1;55177:206:0;;;;;:::i;:::-;;:::i;29982:103::-;;;;;;;;;;;;;:::i;78083:116::-;;;;;;;;;;-1:-1:-1;78083:116:0;;;;;:::i;:::-;;:::i;72841:30::-;;;;;;;;;;-1:-1:-1;72841:30:0;;;;;;;;72878:36;;;;;;;;;;-1:-1:-1;72878:36:0;;;;;;;;;;;78789:134;;;;;;;;;;-1:-1:-1;78789:134:0;;;;;:::i;:::-;;:::i;29341:87::-;;;;;;;;;;-1:-1:-1;29414:6:0;;-1:-1:-1;;;;;29414:6:0;29341:87;;73310:50;;;;;;;;;;-1:-1:-1;73310:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;58362:104;;;;;;;;;;;;;:::i;78306:103::-;;;;;;;;;;-1:-1:-1;78306:103:0;;;;;:::i;:::-;;:::i;59972:279::-;;;;;;;;;;-1:-1:-1;59972:279:0;;;;;:::i;:::-;;:::i;78661:120::-;;;;;;;;;;-1:-1:-1;78661:120:0;;;;;:::i;:::-;;:::i;72921:43::-;;;;;;;;;;-1:-1:-1;72921:43:0;;;;;;;;;;;75808:204;;;;;;;;;;-1:-1:-1;75808:204:0;;;;;:::i;:::-;;:::i;76045:481::-;;;;;;:::i;:::-;;:::i;74506:190::-;;;;;;;;;;-1:-1:-1;74506:190:0;;;;;:::i;:::-;;:::i;78207:91::-;;;;;;;;;;-1:-1:-1;78207:91:0;;;;;:::i;:::-;;:::i;61050:369::-;;;;;;;;;;-1:-1:-1;61050:369:0;;;;;:::i;:::-;;:::i;77111:221::-;;;;;;;;;;-1:-1:-1;77111:221:0;;;;;:::i;:::-;;:::i;73045:108::-;;;;;;;;;;;;;;;;79064:340;;;;;;;;;;-1:-1:-1;79064:340:0;;;;;:::i;:::-;;:::i;78417:117::-;;;;;;;;;;-1:-1:-1;78417:117:0;;;;;:::i;:::-;;:::i;72428:30::-;;;;;;;;;;;;;;;;60322:164;;;;;;;;;;-1:-1:-1;60322:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;60443:25:0;;;60419:4;60443:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;60322:164;77965:110;;;;;;;;;;-1:-1:-1;77965:110:0;;;;;:::i;:::-;;:::i;77731:102::-;;;;;;;;;;-1:-1:-1;77731:102:0;;;;;:::i;:::-;;:::i;76909:194::-;;;;;;;;;;-1:-1:-1;76909:194:0;;;;;:::i;:::-;;:::i;30240:201::-;;;;;;;;;;-1:-1:-1;30240:201:0;;;;;:::i;:::-;;:::i;72648:51::-;;;;;;;;;;;;;;;;54808:305;54910:4;-1:-1:-1;;;;;;54947:40:0;;-1:-1:-1;;;54947:40:0;;:105;;-1:-1:-1;;;;;;;55004:48:0;;-1:-1:-1;;;55004:48:0;54947:105;:158;;;-1:-1:-1;;;;;;;;;;43377:40:0;;;55069:36;54927:178;54808:305;-1:-1:-1;;54808:305:0:o;58193:100::-;58247:13;58280:5;58273:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58193:100;:::o;59696:204::-;59764:7;59789:16;59797:7;59789;:16::i;:::-;59784:64;;59814:34;;-1:-1:-1;;;59814:34:0;;;;;;;;;;;59784:64;-1:-1:-1;59868:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;59868:24:0;;59696:204::o;59259:371::-;59332:13;59348:24;59364:7;59348:15;:24::i;:::-;59332:40;;59393:5;-1:-1:-1;;;;;59387:11:0;:2;-1:-1:-1;;;;;59387:11:0;;59383:48;;59407:24;;-1:-1:-1;;;59407:24:0;;;;;;;;;;;59383:48;27972:10;-1:-1:-1;;;;;59448:21:0;;;;;;:63;;-1:-1:-1;59474:37:0;59491:5;27972:10;60322:164;:::i;59474:37::-;59473:38;59448:63;59444:138;;;59535:35;;-1:-1:-1;;;59535:35:0;;;;;;;;;;;59444:138;59594:28;59603:2;59607:7;59616:5;59594:8;:28::i;:::-;59321:309;59259:371;;:::o;74732:549::-;74858:11;74871:16;75432:9;;75417:11;75401:13;54311:12;;54101:7;54295:13;:28;;54057:303;75401:13;:27;;;;:::i;:::-;:40;;75393:75;;;;-1:-1:-1;;;75393:75:0;;;;;;;:::i;:::-;;;;;;;;;75517:10;75481:17;75501:27;;;:15;:27;;;;;;75576:21;;75549:23;75561:11;75501:27;75549:23;:::i;:::-;:48;;75541:98;;;;-1:-1:-1;;;75541:98:0;;;;;;;:::i;:::-;75728:28;;-1:-1:-1;;75745:10:0;9826:2:1;9822:15;9818:53;75728:28:0;;;9806:66:1;75660:98:0;;75700:16;;9888:12:1;;75728:28:0;;;;;;;;;;;;75718:39;;;;;;75660;:98::i;:::-;75652:126;;;;-1:-1:-1;;;75652:126:0;;10113:2:1;75652:126:0;;;10095:21:1;10152:2;10132:18;;;10125:30;-1:-1:-1;;;10171:18:1;;;10164:45;10226:18;;75652:126:0;9911:339:1;75652:126:0;74909:10:::1;::::0;::::1;;74908:11;74900:38;;;;-1:-1:-1::0;;;74900:38:0::1;;;;;;;:::i;:::-;74958:23;::::0;;;::::1;;;74957:24;74949:66;;;::::0;-1:-1:-1;;;74949:66:0;;10800:2:1;74949:66:0::1;::::0;::::1;10782:21:1::0;10839:2;10819:18;;;10812:30;10878:31;10858:18;;;10851:59;10927:18;;74949:66:0::1;10598:353:1::0;74949:66:0::1;75074:11;75049:22;;:36;;;;:::i;:::-;75036:9;:49;75028:80;;;;-1:-1:-1::0;;;75028:80:0::1;;;;;;;:::i;:::-;75129:34;75139:10;75151:11;75129:9;:34::i;:::-;75181:9;75176:98;75200:11;75196:1;:15;75176:98;;;75249:10;75233:27;::::0;;;:15:::1;:27;::::0;;;;:29;;;::::1;::::0;::::1;:::i;:::-;;;;;;75213:3;;;;;:::i;:::-;;;;75176:98;;;;75382:418:::0;74732:549;;;;:::o;73479:514::-;73591:11;73604:16;74137:9;;74122:11;74106:13;54311:12;;54101:7;54295:13;:28;;54057:303;74106:13;:27;;;;:::i;:::-;:40;;74098:75;;;;-1:-1:-1;;;74098:75:0;;;;;;;:::i;:::-;74222:10;74186:17;74206:27;;;:15;:27;;;;;;74281:21;;74254:23;74266:11;74206:27;74254:23;:::i;:::-;:48;;74246:98;;;;-1:-1:-1;;;74246:98:0;;;;;;;:::i;:::-;74426:28;;-1:-1:-1;;74443:10:0;9826:2:1;9822:15;9818:53;74426:28:0;;;9806:66:1;74365:91:0;;74398:16;;9888:12:1;;74426:28:0;;;;;;;;;;;;74416:39;;;;;;74365:32;:91::i;:::-;74357:119;;;;-1:-1:-1;;;74357:119:0;;10113:2:1;74357:119:0;;;10095:21:1;10152:2;10132:18;;;10125:30;-1:-1:-1;;;10171:18:1;;;10164:45;10226:18;;74357:119:0;9911:339:1;74357:119:0;73642:10:::1;::::0;::::1;;73641:11;73633:38;;;;-1:-1:-1::0;;;73633:38:0::1;;;;;;;:::i;:::-;73691:16;::::0;::::1;::::0;::::1;;;73690:17;73682:52;;;::::0;-1:-1:-1;;;73682:52:0;;11818:2:1;73682:52:0::1;::::0;::::1;11800:21:1::0;11857:2;11837:18;;;11830:30;-1:-1:-1;;;11876:18:1;;;11869:52;11938:18;;73682:52:0::1;11616:346:1::0;73682:52:0::1;73786:11;73768:15;;:29;;;;:::i;:::-;73755:9;:42;73747:73;;;;-1:-1:-1::0;;;73747:73:0::1;;;;;;;:::i;:::-;73841:34;73851:10;73863:11;73841:9;:34::i;:::-;73893:9;73888:98;73912:11;73908:1;:15;73888:98;;;73961:10;73945:27;::::0;;;:15:::1;:27;::::0;;;;:29;;;::::1;::::0;::::1;:::i;:::-;;;;;;73925:3;;;;;:::i;:::-;;;;73888:98;;78542:111:::0;29227:13;:11;:13::i;:::-;78616:20:::1;:29:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;78616:29:0;;::::1;::::0;;;::::1;::::0;;78542:111::o;60553:170::-;60687:28;60697:4;60703:2;60707:7;60687:9;:28::i;80331:321::-;29227:13;:11;:13::i;:::-;80388:12:::1;80414:42;80499:3;80470:26;:21;80494:2;80470:26;:::i;:::-;:32;;;;:::i;:::-;80406:101;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80387:120;;;80526:7;80518:16;;;::::0;::::1;;80548:10;80572:7;29414:6:::0;;-1:-1:-1;;;;;29414:6:0;;29341:87;80572:7:::1;-1:-1:-1::0;;;;;80564:21:0::1;80593;80564:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80547:72;;;80638:5;80630:14;;;::::0;::::1;;80376:276;;80331:321::o:0;60794:185::-;60932:39;60949:4;60955:2;60959:7;60932:39;;;;;;;;;;;;:16;:39::i;79416:890::-;79476:16;79505:23;79531:17;79541:6;79531:9;:17::i;:::-;79505:43;;79559:30;79606:15;-1:-1:-1;;;;;79592:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;79592:30:0;-1:-1:-1;79559:63:0;-1:-1:-1;79633:22:0;79684:23;79722:26;79761:505;79786:15;79768;:33;:64;;;;;79823:9;;79805:14;:27;;79768:64;79761:505;;;79849:31;79883:27;;;:11;:27;;;;;;;;;79849:61;;;;;;;;;-1:-1:-1;;;;;79849:61:0;;;;-1:-1:-1;;;79849:61:0;;-1:-1:-1;;;;;79849:61:0;;;;;;;;-1:-1:-1;;;79849:61:0;;;;;;;;;;;;;;;;79931:49;;-1:-1:-1;79952:14:0;;-1:-1:-1;;;;;79952:28:0;;;79931:49;79927:125;;;80022:14;;;-1:-1:-1;79927:125:0;80094:6;-1:-1:-1;;;;;80072:28:0;:18;-1:-1:-1;;;;;80072:28:0;;80068:154;;80154:14;80121:13;80135:15;80121:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;80189:17;;;;:::i;:::-;;;;80068:154;80238:16;;;;:::i;:::-;;;;79834:432;79761:505;;;-1:-1:-1;80285:13:0;;79416:890;-1:-1:-1;;;;;79416:890:0:o;77633:90::-;29227:13;:11;:13::i;:::-;77701:7:::1;:14;77711:4:::0;77701:7;:14:::1;:::i;58002:124::-:0;58066:7;58093:20;58105:7;58093:11;:20::i;:::-;:25;;58002:124;-1:-1:-1;;58002:124:0:o;77841:116::-;29227:13;:11;:13::i;:::-;77919:22:::1;:30:::0;77841:116::o;72480:93::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;77531:94::-;29227:13;:11;:13::i;:::-;77598:9:::1;:19:::0;77531:94::o;55177:206::-;55241:7;-1:-1:-1;;;;;55265:19:0;;55261:60;;55293:28;;-1:-1:-1;;;55293:28:0;;;;;;;;;;;55261:60;-1:-1:-1;;;;;;55347:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;55347:27:0;;55177:206::o;29982:103::-;29227:13;:11;:13::i;:::-;30047:30:::1;30074:1;30047:18;:30::i;:::-;29982:103::o:0;78083:116::-;29227:13;:11;:13::i;:::-;78161:21:::1;:30:::0;78083:116::o;78789:134::-;29227:13;:11;:13::i;:::-;78876:31:::1;:39:::0;78789:134::o;58362:104::-;58418:13;58451:7;58444:14;;;;;:::i;78306:103::-;29227:13;:11;:13::i;:::-;78376:16:::1;:25:::0;;;::::1;;;;-1:-1:-1::0;;78376:25:0;;::::1;::::0;;;::::1;::::0;;78306:103::o;59972:279::-;27972:10;-1:-1:-1;;;;;60063:24:0;;;60059:54;;60096:17;;-1:-1:-1;;;60096:17:0;;;;;;;;;;;60059:54;27972:10;60126:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;60126:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;60126:53:0;;;;;;;;;;60195:48;;540:41:1;;;60126:42:0;;27972:10;60195:48;;513:18:1;60195:48:0;;;;;;;59972:279;;:::o;78661:120::-;29227:13;:11;:13::i;:::-;78741:24:::1;:32:::0;78661:120::o;75808:204::-;75916:4;75940:64;75959:5;75966:31;;75999:4;75940:18;:64::i;:::-;75933:71;75808:204;-1:-1:-1;;;75808:204:0:o;76045:481::-;76130:11;76643:9;;76628:11;76612:13;54311:12;;54101:7;54295:13;:28;;54057:303;76612:13;:27;;;;:::i;:::-;:40;;76604:75;;;;-1:-1:-1;;;76604:75:0;;;;;;;:::i;:::-;76728:10;76692:17;76712:27;;;:15;:27;;;;;;76787:21;;76760:23;76772:11;76712:27;76760:23;:::i;:::-;:48;;76752:98;;;;-1:-1:-1;;;76752:98:0;;;;;;;:::i;:::-;76163:10:::1;::::0;::::1;;76162:11;76154:38;;;;-1:-1:-1::0;;;76154:38:0::1;;;;;;;:::i;:::-;76212:20;::::0;;;::::1;;;76211:21;76203:60;;;::::0;-1:-1:-1;;;76203:60:0;;15069:2:1;76203:60:0::1;::::0;::::1;15051:21:1::0;15108:2;15088:18;;;15081:30;15147:28;15127:18;;;15120:56;15193:18;;76203:60:0::1;14867:350:1::0;76203:60:0::1;76319:11;76297:19;;:33;;;;:::i;:::-;76284:9;:46;76276:77;;;;-1:-1:-1::0;;;76276:77:0::1;;;;;;;:::i;:::-;76374:34;76384:10;76396:11;76374:9;:34::i;:::-;76426:9;76421:98;76445:11;76441:1;:15;76421:98;;;76494:10;76478:27;::::0;;;:15:::1;:27;::::0;;;;:29;;;::::1;::::0;::::1;:::i;:::-;;;;;;76458:3;;;;;:::i;:::-;;;;76421:98;;;;76593:279:::0;76045:481;;:::o;74506:190::-;74607:4;74631:57;74650:5;74657:24;;74683:4;74631:18;:57::i;78207:91::-;29227:13;:11;:13::i;:::-;78271:10:::1;:19:::0;;-1:-1:-1;;78271:19:0::1;::::0;::::1;;::::0;;;::::1;::::0;;78207:91::o;61050:369::-;61217:28;61227:4;61233:2;61237:7;61217:9;:28::i;:::-;-1:-1:-1;;;;;61260:13:0;;32568:19;:23;;61260:76;;;;;61280:56;61311:4;61317:2;61321:7;61330:5;61280:30;:56::i;:::-;61279:57;61260:76;61256:156;;;61360:40;;-1:-1:-1;;;61360:40:0;;;;;;;;;;;77111:221;29227:13;:11;:13::i;:::-;77216:11:::1;77440:9;;77425:11;77409:13;54311:12:::0;;54101:7;54295:13;:28;;54057:303;77409:13:::1;:27;;;;:::i;:::-;:40;;77401:75;;;;-1:-1:-1::0;;;77401:75:0::1;;;;;;;:::i;:::-;77249:10:::2;::::0;::::2;;77248:11;77240:38;;;;-1:-1:-1::0;;;77240:38:0::2;;;;;;;:::i;:::-;77291:33;77301:9;77312:11;77291:9;:33::i;79064:340::-:0;79138:13;79172:17;79180:8;79172:7;:17::i;:::-;79164:50;;;;-1:-1:-1;;;79164:50:0;;15424:2:1;79164:50:0;;;15406:21:1;15463:2;15443:18;;;15436:30;-1:-1:-1;;;15482:18:1;;;15475:50;15542:18;;79164:50:0;15222:344:1;79164:50:0;79227:28;79258:10;:8;:10::i;:::-;79227:41;;79317:1;79292:14;79286:28;:32;:110;;;;;;;;;;;;;;;;;79345:14;79361:19;:8;:17;:19::i;:::-;79328:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;79279:117;79064:340;-1:-1:-1;;;79064:340:0:o;78417:117::-;29227:13;:11;:13::i;:::-;78494:23:::1;:32:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;78494:32:0;;::::1;::::0;;;::::1;::::0;;78417:117::o;77965:110::-;29227:13;:11;:13::i;:::-;78040:19:::1;:27:::0;77965:110::o;77731:102::-;29227:13;:11;:13::i;:::-;77802:15:::1;:23:::0;77731:102::o;76909:194::-;29227:13;:11;:13::i;:::-;76986:11:::1;77440:9;;77425:11;77409:13;54311:12:::0;;54101:7;54295:13;:28;;54057:303;77409:13:::1;:27;;;;:::i;:::-;:40;;77401:75;;;;-1:-1:-1::0;;;77401:75:0::1;;;;;;;:::i;:::-;77019:10:::2;::::0;::::2;;77018:11;77010:38;;;;-1:-1:-1::0;;;77010:38:0::2;;;;;;;:::i;:::-;77061:34;77071:10;77083:11;77061:9;:34::i;30240:201::-:0;29227:13;:11;:13::i;:::-;-1:-1:-1;;;;;30329:22:0;::::1;30321:73;;;::::0;-1:-1:-1;;;30321:73:0;;16441:2:1;30321:73:0::1;::::0;::::1;16423:21:1::0;16480:2;16460:18;;;16453:30;16519:34;16499:18;;;16492:62;-1:-1:-1;;;16570:18:1;;;16563:36;16616:19;;30321:73:0::1;16239:402:1::0;30321:73:0::1;30405:28;30424:8;30405:18;:28::i;:::-;30240:201:::0;:::o;61674:187::-;61731:4;61795:13;;61785:7;:23;61755:98;;;;-1:-1:-1;;61826:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;61826:27:0;;;;61825:28;;61674:187::o;69285:196::-;69400:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;69400:29:0;-1:-1:-1;;;;;69400:29:0;;;;;;;;;69445:28;;69400:24;;69445:28;;;;;;;69285:196;;;:::o;61869:104::-;61938:27;61948:2;61952:8;61938:27;;;;;;;;;;;;:9;:27::i;29506:132::-;29414:6;;-1:-1:-1;;;;;29414:6:0;27972:10;29570:23;29562:68;;;;-1:-1:-1;;;29562:68:0;;16848:2:1;29562:68:0;;;16830:21:1;;;16867:18;;;16860:30;16926:34;16906:18;;;16899:62;16978:18;;29562:68:0;16646:356:1;64787:2112:0;64902:35;64940:20;64952:7;64940:11;:20::i;:::-;65015:18;;64902:58;;-1:-1:-1;64973:22:0;;-1:-1:-1;;;;;64999:34:0;27972:10;-1:-1:-1;;;;;64999:34:0;;:101;;;-1:-1:-1;65067:18:0;;65050:50;;27972:10;60322:164;:::i;65050:50::-;64999:154;;;-1:-1:-1;27972:10:0;65117:20;65129:7;65117:11;:20::i;:::-;-1:-1:-1;;;;;65117:36:0;;64999:154;64973:181;;65172:17;65167:66;;65198:35;;-1:-1:-1;;;65198:35:0;;;;;;;;;;;65167:66;65270:4;-1:-1:-1;;;;;65248:26:0;:13;:18;;;-1:-1:-1;;;;;65248:26:0;;65244:67;;65283:28;;-1:-1:-1;;;65283:28:0;;;;;;;;;;;65244:67;-1:-1:-1;;;;;65326:16:0;;65322:52;;65351:23;;-1:-1:-1;;;65351:23:0;;;;;;;;;;;65322:52;65495:49;65512:1;65516:7;65525:13;:18;;;65495:8;:49::i;:::-;-1:-1:-1;;;;;65840:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;65840:31:0;;;-1:-1:-1;;;;;65840:31:0;;;-1:-1:-1;;65840:31:0;;;;;;;65886:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;65886:29:0;;;;;;;;;;;65932:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;65977:61:0;;;;-1:-1:-1;;;66022:15:0;65977:61;;;;;;;;;;;66312:11;;;66342:24;;;;;:29;66312:11;;66342:29;66338:445;;66567:13;;66553:11;:27;66549:219;;;66637:18;;;66605:24;;;:11;:24;;;;;;;;:50;;66720:28;;;;-1:-1:-1;;;;;66678:70:0;-1:-1:-1;;;66678:70:0;-1:-1:-1;;;;;;66678:70:0;;;-1:-1:-1;;;;;66605:50:0;;;66678:70;;;;;;;66549:219;65815:979;66830:7;66826:2;-1:-1:-1;;;;;66811:27:0;66820:4;-1:-1:-1;;;;;66811:27:0;;;;;;;;;;;66849:42;64891:2008;;64787:2112;;;:::o;56832:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;56942:7:0;57025:13;;57018:4;:20;56987:886;;;57059:31;57093:17;;;:11;:17;;;;;;;;;57059:51;;;;;;;;;-1:-1:-1;;;;;57059:51:0;;;;-1:-1:-1;;;57059:51:0;;-1:-1:-1;;;;;57059:51:0;;;;;;;;-1:-1:-1;;;57059:51:0;;;;;;;;;;;;;;57129:729;;57179:14;;-1:-1:-1;;;;;57179:28:0;;57175:101;;57243:9;56832:1108;-1:-1:-1;;;56832:1108:0:o;57175:101::-;-1:-1:-1;;;57618:6:0;57663:17;;;;:11;:17;;;;;;;;;57651:29;;;;;;;;;-1:-1:-1;;;;;57651:29:0;;;;;-1:-1:-1;;;57651:29:0;;-1:-1:-1;;;;;57651:29:0;;;;;;;;-1:-1:-1;;;57651:29:0;;;;;;;;;;;;;57711:28;57707:109;;57779:9;56832:1108;-1:-1:-1;;;56832:1108:0:o;57707:109::-;57578:261;;;57040:833;56987:886;57901:31;;-1:-1:-1;;;57901:31:0;;;;;;;;;;;30601:191;30694:6;;;-1:-1:-1;;;;;30711:17:0;;;-1:-1:-1;;;;;;30711:17:0;;;;;;;30744:40;;30694:6;;;30711:17;30694:6;;30744:40;;30675:16;;30744:40;30664:128;30601:191;:::o;1222:156::-;1313:4;1366;1337:25;1350:5;1357:4;1337:12;:25::i;:::-;:33;;1222:156;-1:-1:-1;;;;1222:156:0:o;69973:667::-;70157:72;;-1:-1:-1;;;70157:72:0;;70136:4;;-1:-1:-1;;;;;70157:36:0;;;;;:72;;27972:10;;70208:4;;70214:7;;70223:5;;70157:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;70157:72:0;;;;;;;;-1:-1:-1;;70157:72:0;;;;;;;;;;;;:::i;:::-;;;70153:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70391:6;:13;70408:1;70391:18;70387:235;;70437:40;;-1:-1:-1;;;70437:40:0;;;;;;;;;;;70387:235;70580:6;70574:13;70565:6;70561:2;70557:15;70550:38;70153:480;-1:-1:-1;;;;;;70276:55:0;-1:-1:-1;;;70276:55:0;;-1:-1:-1;70153:480:0;69973:667;;;;;;:::o;78956:100::-;79008:13;79041:7;79034:14;;;;;:::i;24811:716::-;24867:13;24918:14;24935:17;24946:5;24935:10;:17::i;:::-;24955:1;24935:21;24918:38;;24971:20;25005:6;-1:-1:-1;;;;;24994:18:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24994:18:0;-1:-1:-1;24971:41:0;-1:-1:-1;25136:28:0;;;25152:2;25136:28;25193:288;-1:-1:-1;;25225:5:0;-1:-1:-1;;;25362:2:0;25351:14;;25346:30;25225:5;25333:44;25423:2;25414:11;;;-1:-1:-1;25444:21:0;25193:288;25444:21;-1:-1:-1;25502:6:0;24811:716;-1:-1:-1;;;24811:716:0:o;62336:163::-;62459:32;62465:2;62469:8;62479:5;62486:4;62459:5;:32::i;2021:296::-;2104:7;2147:4;2104:7;2162:118;2186:5;:12;2182:1;:16;2162:118;;;2235:33;2245:12;2259:5;2265:1;2259:8;;;;;;;;:::i;:::-;;;;;;;2235:9;:33::i;:::-;2220:48;-1:-1:-1;2200:3:0;;;;:::i;:::-;;;;2162:118;;;-1:-1:-1;2297:12:0;2021:296;-1:-1:-1;;;2021:296:0:o;21645:948::-;21698:7;;-1:-1:-1;;;21776:17:0;;21772:106;;-1:-1:-1;;;21814:17:0;;;-1:-1:-1;21860:2:0;21850:12;21772:106;21905:8;21896:5;:17;21892:106;;21943:8;21934:17;;;-1:-1:-1;21980:2:0;21970:12;21892:106;22025:8;22016:5;:17;22012:106;;22063:8;22054:17;;;-1:-1:-1;22100:2:0;22090:12;22012:106;22145:7;22136:5;:16;22132:103;;22182:7;22173:16;;;-1:-1:-1;22218:1:0;22208:11;22132:103;22262:7;22253:5;:16;22249:103;;22299:7;22290:16;;;-1:-1:-1;22335:1:0;22325:11;22249:103;22379:7;22370:5;:16;22366:103;;22416:7;22407:16;;;-1:-1:-1;22452:1:0;22442:11;22366:103;22496:7;22487:5;:16;22483:68;;22534:1;22524:11;22579:6;21645:948;-1:-1:-1;;21645:948:0:o;62758:1775::-;62897:20;62920:13;-1:-1:-1;;;;;62948:16:0;;62944:48;;62973:19;;-1:-1:-1;;;62973:19:0;;;;;;;;;;;62944:48;63007:8;63019:1;63007:13;63003:44;;63029:18;;-1:-1:-1;;;63029:18:0;;;;;;;;;;;63003:44;-1:-1:-1;;;;;63398:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;63457:49:0;;-1:-1:-1;;;;;63398:44:0;;;;;;;63457:49;;;;-1:-1:-1;;63398:44:0;;;;;;63457:49;;;;;;;;;;;;;;;;63523:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;63573:66:0;;;;-1:-1:-1;;;63623:15:0;63573:66;;;;;;;;;;63523:25;63720:23;;;63764:4;:23;;;;-1:-1:-1;;;;;;63772:13:0;;32568:19;:23;;63772:15;63760:641;;;63808:314;63839:38;;63864:12;;-1:-1:-1;;;;;63839:38:0;;;63856:1;;63839:38;;63856:1;;63839:38;63905:69;63944:1;63948:2;63952:14;;;;;;63968:5;63905:30;:69::i;:::-;63900:174;;64010:40;;-1:-1:-1;;;64010:40:0;;;;;;;;;;;63900:174;64117:3;64101:12;:19;63808:314;;64203:12;64186:13;;:29;64182:43;;64217:8;;;64182:43;63760:641;;;64266:120;64297:40;;64322:14;;;;;-1:-1:-1;;;;;64297:40:0;;;64314:1;;64297:40;;64314:1;;64297:40;64381:3;64365:12;:19;64266:120;;63760:641;-1:-1:-1;64415:13:0;:28;64465:60;76045:481;9459:149;9522:7;9553:1;9549;:5;:51;;9684:13;9778:15;;;9814:4;9807:15;;;9861:4;9845:21;;9549:51;;;9684:13;9778:15;;;9814:4;9807:15;;;9861:4;9845:21;;9557:20;9616:268;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2178:127::-;2239:10;2234:3;2230:20;2227:1;2220:31;2270:4;2267:1;2260:15;2294:4;2291:1;2284:15;2310:275;2381:2;2375:9;2446:2;2427:13;;-1:-1:-1;;2423:27:1;2411:40;;-1:-1:-1;;;;;2466:34:1;;2502:22;;;2463:62;2460:88;;;2528:18;;:::i;:::-;2564:2;2557:22;2310:275;;-1:-1:-1;2310:275:1:o;2590:712::-;2644:5;2697:3;2690:4;2682:6;2678:17;2674:27;2664:55;;2715:1;2712;2705:12;2664:55;2751:6;2738:20;2777:4;-1:-1:-1;;;;;2796:2:1;2793:26;2790:52;;;2822:18;;:::i;:::-;2868:2;2865:1;2861:10;2891:28;2915:2;2911;2907:11;2891:28;:::i;:::-;2953:15;;;3023;;;3019:24;;;2984:12;;;;3055:15;;;3052:35;;;3083:1;3080;3073:12;3052:35;3119:2;3111:6;3107:15;3096:26;;3131:142;3147:6;3142:3;3139:15;3131:142;;;3213:17;;3201:30;;3164:12;;;;3251;;;;3131:142;;;3291:5;2590:712;-1:-1:-1;;;;;;;2590:712:1:o;3307:416::-;3400:6;3408;3461:2;3449:9;3440:7;3436:23;3432:32;3429:52;;;3477:1;3474;3467:12;3429:52;3513:9;3500:23;3490:33;;3574:2;3563:9;3559:18;3546:32;-1:-1:-1;;;;;3593:6:1;3590:30;3587:50;;;3633:1;3630;3623:12;3587:50;3656:61;3709:7;3700:6;3689:9;3685:22;3656:61;:::i;:::-;3646:71;;;3307:416;;;;;:::o;3910:160::-;3975:20;;4031:13;;4024:21;4014:32;;4004:60;;4060:1;4057;4050:12;4075:180;4131:6;4184:2;4172:9;4163:7;4159:23;4155:32;4152:52;;;4200:1;4197;4190:12;4152:52;4223:26;4239:9;4223:26;:::i;4442:328::-;4519:6;4527;4535;4588:2;4576:9;4567:7;4563:23;4559:32;4556:52;;;4604:1;4601;4594:12;4556:52;4627:29;4646:9;4627:29;:::i;:::-;4617:39;;4675:38;4709:2;4698:9;4694:18;4675:38;:::i;:::-;4665:48;;4760:2;4749:9;4745:18;4732:32;4722:42;;4442:328;;;;;:::o;4775:186::-;4834:6;4887:2;4875:9;4866:7;4862:23;4858:32;4855:52;;;4903:1;4900;4893:12;4855:52;4926:29;4945:9;4926:29;:::i;4966:632::-;5137:2;5189:21;;;5259:13;;5162:18;;;5281:22;;;5108:4;;5137:2;5360:15;;;;5334:2;5319:18;;;5108:4;5403:169;5417:6;5414:1;5411:13;5403:169;;;5478:13;;5466:26;;5547:15;;;;5512:12;;;;5439:1;5432:9;5403:169;;;-1:-1:-1;5589:3:1;;4966:632;-1:-1:-1;;;;;;4966:632:1:o;5603:407::-;5668:5;-1:-1:-1;;;;;5694:6:1;5691:30;5688:56;;;5724:18;;:::i;:::-;5762:57;5807:2;5786:15;;-1:-1:-1;;5782:29:1;5813:4;5778:40;5762:57;:::i;:::-;5753:66;;5842:6;5835:5;5828:21;5882:3;5873:6;5868:3;5864:16;5861:25;5858:45;;;5899:1;5896;5889:12;5858:45;5948:6;5943:3;5936:4;5929:5;5925:16;5912:43;6002:1;5995:4;5986:6;5979:5;5975:18;5971:29;5964:40;5603:407;;;;;:::o;6015:451::-;6084:6;6137:2;6125:9;6116:7;6112:23;6108:32;6105:52;;;6153:1;6150;6143:12;6105:52;6193:9;6180:23;-1:-1:-1;;;;;6218:6:1;6215:30;6212:50;;;6258:1;6255;6248:12;6212:50;6281:22;;6334:4;6326:13;;6322:27;-1:-1:-1;6312:55:1;;6363:1;6360;6353:12;6312:55;6386:74;6452:7;6447:2;6434:16;6429:2;6425;6421:11;6386:74;:::i;6656:254::-;6721:6;6729;6782:2;6770:9;6761:7;6757:23;6753:32;6750:52;;;6798:1;6795;6788:12;6750:52;6821:29;6840:9;6821:29;:::i;:::-;6811:39;;6869:35;6900:2;6889:9;6885:18;6869:35;:::i;:::-;6859:45;;6656:254;;;;;:::o;6915:416::-;7008:6;7016;7069:2;7057:9;7048:7;7044:23;7040:32;7037:52;;;7085:1;7082;7075:12;7037:52;7125:9;7112:23;-1:-1:-1;;;;;7150:6:1;7147:30;7144:50;;;7190:1;7187;7180:12;7144:50;7213:61;7266:7;7257:6;7246:9;7242:22;7213:61;:::i;:::-;7203:71;7321:2;7306:18;;;;7293:32;;-1:-1:-1;;;;6915:416:1:o;7336:667::-;7431:6;7439;7447;7455;7508:3;7496:9;7487:7;7483:23;7479:33;7476:53;;;7525:1;7522;7515:12;7476:53;7548:29;7567:9;7548:29;:::i;:::-;7538:39;;7596:38;7630:2;7619:9;7615:18;7596:38;:::i;:::-;7586:48;;7681:2;7670:9;7666:18;7653:32;7643:42;;7736:2;7725:9;7721:18;7708:32;-1:-1:-1;;;;;7755:6:1;7752:30;7749:50;;;7795:1;7792;7785:12;7749:50;7818:22;;7871:4;7863:13;;7859:27;-1:-1:-1;7849:55:1;;7900:1;7897;7890:12;7849:55;7923:74;7989:7;7984:2;7971:16;7966:2;7962;7958:11;7923:74;:::i;:::-;7913:84;;;7336:667;;;;;;;:::o;8008:260::-;8076:6;8084;8137:2;8125:9;8116:7;8112:23;8108:32;8105:52;;;8153:1;8150;8143:12;8105:52;8176:29;8195:9;8176:29;:::i;:::-;8166:39;;8224:38;8258:2;8247:9;8243:18;8224:38;:::i;8273:380::-;8352:1;8348:12;;;;8395;;;8416:61;;8470:4;8462:6;8458:17;8448:27;;8416:61;8523:2;8515:6;8512:14;8492:18;8489:38;8486:161;;8569:10;8564:3;8560:20;8557:1;8550:31;8604:4;8601:1;8594:15;8632:4;8629:1;8622:15;8486:161;;8273:380;;;:::o;8658:127::-;8719:10;8714:3;8710:20;8707:1;8700:31;8750:4;8747:1;8740:15;8774:4;8771:1;8764:15;8790:125;8855:9;;;8876:10;;;8873:36;;;8889:18;;:::i;8920:346::-;9122:2;9104:21;;;9161:2;9141:18;;;9134:30;-1:-1:-1;;;9195:2:1;9180:18;;9173:52;9257:2;9242:18;;8920:346::o;9271:401::-;9473:2;9455:21;;;9512:2;9492:18;;;9485:30;9551:34;9546:2;9531:18;;9524:62;-1:-1:-1;;;9617:2:1;9602:18;;9595:35;9662:3;9647:19;;9271:401::o;10255:338::-;10457:2;10439:21;;;10496:2;10476:18;;;10469:30;-1:-1:-1;;;10530:2:1;10515:18;;10508:44;10584:2;10569:18;;10255:338::o;10956:168::-;11029:9;;;11060;;11077:15;;;11071:22;;11057:37;11047:71;;11098:18;;:::i;11129:342::-;11331:2;11313:21;;;11370:2;11350:18;;;11343:30;-1:-1:-1;;;11404:2:1;11389:18;;11382:48;11462:2;11447:18;;11129:342::o;11476:135::-;11515:3;11536:17;;;11533:43;;11556:18;;:::i;:::-;-1:-1:-1;11603:1:1;11592:13;;11476:135::o;12099:217::-;12139:1;12165;12155:132;;12209:10;12204:3;12200:20;12197:1;12190:31;12244:4;12241:1;12234:15;12272:4;12269:1;12262:15;12155:132;-1:-1:-1;12301:9:1;;12099:217::o;12531:127::-;12592:10;12587:3;12583:20;12580:1;12573:31;12623:4;12620:1;12613:15;12647:4;12644:1;12637:15;12789:545;12891:2;12886:3;12883:11;12880:448;;;12927:1;12952:5;12948:2;12941:17;12997:4;12993:2;12983:19;13067:2;13055:10;13051:19;13048:1;13044:27;13038:4;13034:38;13103:4;13091:10;13088:20;13085:47;;;-1:-1:-1;13126:4:1;13085:47;13181:2;13176:3;13172:12;13169:1;13165:20;13159:4;13155:31;13145:41;;13236:82;13254:2;13247:5;13244:13;13236:82;;;13299:17;;;13280:1;13269:13;13236:82;;13510:1352;13636:3;13630:10;-1:-1:-1;;;;;13655:6:1;13652:30;13649:56;;;13685:18;;:::i;:::-;13714:97;13804:6;13764:38;13796:4;13790:11;13764:38;:::i;:::-;13758:4;13714:97;:::i;:::-;13866:4;;13930:2;13919:14;;13947:1;13942:663;;;;14649:1;14666:6;14663:89;;;-1:-1:-1;14718:19:1;;;14712:26;14663:89;-1:-1:-1;;13467:1:1;13463:11;;;13459:24;13455:29;13445:40;13491:1;13487:11;;;13442:57;14765:81;;13912:944;;13942:663;12736:1;12729:14;;;12773:4;12760:18;;-1:-1:-1;;13978:20:1;;;14096:236;14110:7;14107:1;14104:14;14096:236;;;14199:19;;;14193:26;14178:42;;14291:27;;;;14259:1;14247:14;;;;14126:19;;14096:236;;;14100:3;14360:6;14351:7;14348:19;14345:201;;;14421:19;;;14415:26;-1:-1:-1;;14504:1:1;14500:14;;;14516:3;14496:24;14492:37;14488:42;14473:58;14458:74;;14345:201;-1:-1:-1;;;;;14592:1:1;14576:14;;;14572:22;14559:36;;-1:-1:-1;13510:1352:1:o;15571:663::-;15851:3;15889:6;15883:13;15905:66;15964:6;15959:3;15952:4;15944:6;15940:17;15905:66;:::i;:::-;16034:13;;15993:16;;;;16056:70;16034:13;15993:16;16103:4;16091:17;;16056:70;:::i;:::-;-1:-1:-1;;;16148:20:1;;16177:22;;;16226:1;16215:13;;15571:663;-1:-1:-1;;;;15571:663:1:o;17007:489::-;-1:-1:-1;;;;;17276:15:1;;;17258:34;;17328:15;;17323:2;17308:18;;17301:43;17375:2;17360:18;;17353:34;;;17423:3;17418:2;17403:18;;17396:31;;;17201:4;;17444:46;;17470:19;;17462:6;17444:46;:::i;:::-;17436:54;17007:489;-1:-1:-1;;;;;;17007:489:1:o;17501:249::-;17570:6;17623:2;17611:9;17602:7;17598:23;17594:32;17591:52;;;17639:1;17636;17629:12;17591:52;17671:9;17665:16;17690:30;17714:5;17690:30;:::i

Swarm Source

ipfs://27528482eb23611c24e3a6e083fe04d8c73d6a1a169c842271636150571946f0
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.