ETH Price: $3,389.51 (-1.67%)
Gas: 4 Gwei

Token

KPK Relics ()
 

Overview

Max Total Supply

591

Holders

307

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xC332A68B54a608F2Dafd2b0b77a47A3529537afB
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:
KPKBanners

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-03
*/

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
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 Returns the rebuilt hash obtained by traversing a Merklee 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++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;


/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/token/ERC1155/IERC1155.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

// File: @openzeppelin/contracts/token/ERC1155/ERC1155.sol


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

pragma solidity ^0.8.0;







/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

// File: contracts/KPKBanners.sol


pragma solidity ^0.8.0;

contract KPKBanners is ERC1155, Ownable,ReentrancyGuard {
  

     //To concatenate the URL of an NFT
    using Strings for uint256;

    //To check the addresses in the whitelist
    bytes32 private mR;   

    //name of the collection
    string public name = "KPK Relics"; 
   
    uint256 private constant sizeMapping = 7;

    //Number of NFTs in the collection
    uint256 public constant MAX_SUPPLY = 1000;

    uint256 public numberTokenSold;
    
    //Is the contract paused ?
    bool public paused = false;
    

    //The different stages of selling the collection
    enum Steps {
        Before,
        Claim,
        SoldOut
    }
    mapping(address => uint256) nftsPerWallet;
    mapping(address => mapping(uint256=>uint256)) nftsBurnPerWallet;
    mapping(uint256 => uint256) banners;

    Steps public sellingStep;

    constructor() ERC1155("https://kopokostudio.s3.eu-west-3.amazonaws.com/metadataBanner/{id}.json") {

        transferOwnership(msg.sender);
        sellingStep = Steps.Before;
        banners[1] = 48;
        banners[2] = 150;
        banners[3] = 200;
        banners[4] = 300;
        banners[5] = 300;
        banners[6] = 1;
        banners[7] = 1;
    }
    /**
    * @notice Edit the Merkle Root 
    *
    * @param _newMerkleRoot The new Merkle Root
    **/
    function changeMerkleRoot(bytes32 _newMerkleRoot) external onlyOwner {
        mR = _newMerkleRoot;
    }

    function uri(uint256 _tokenid) override public pure returns (string memory) {
        return string(
            abi.encodePacked(
                "https://kopokostudio.s3.eu-west-3.amazonaws.com/metadataBanner/",
                Strings.toString(_tokenid),".json"
            )
        );
    }

    function getMappingValue() public view returns (uint256[] memory) {
        uint256[] memory memoryArray = new uint256[](sizeMapping+1);
        for(uint i = 1; i <= sizeMapping; i++) {
            memoryArray[i] = banners[i];
        }
        return memoryArray;
    }

    function getMappingValueBurn(address account) public view returns (uint[] memory) {
        uint256[] memory memoryArray = new uint256[](sizeMapping+1);
        for(uint256 i = 1; i <= sizeMapping; i++) {
            memoryArray[i] = nftsBurnPerWallet[account][i];
        }
        return memoryArray;
    }
    

    /** 
    * @notice Set pause to true or false
    *
    * @param _paused True or false if you want the contract to be paused or not
    **/
    function setPaused(bool _paused) external onlyOwner {
        paused = _paused;
    }

   
    /** 
    * @notice Allows to change the sellinStep to Claim
    **/
    function setUpClaim() external onlyOwner {
        sellingStep = Steps.Claim;
    }

    /**
    * @notice Allows to mint one NFT if whitelisted
    *
    * 
    * @param _proof The Merkle Proof
    * @param _amount The ammount of NFTs the user wants to mint
    **/
    function mintBanner(bytes32[] calldata _proof,uint256 _amount, uint256 maxMint) external payable nonReentrant {
        
        //Are we in Claim ?
        require(sellingStep != Steps.SoldOut, "All claimed !");
        require(sellingStep == Steps.Claim, "Claim has not started yet.");
        require(nftsPerWallet[msg.sender] + _amount <= maxMint, "You can't mint anymore");
        //If the user try to mint any non-existent token
        require(numberTokenSold + _amount <= MAX_SUPPLY, "Sale is almost done and we don't have enought NFTs left.");
        //Is this user on the whitelist ?
        require(isWhiteListed(msg.sender, _proof), "You are not on the whitelist");
 
        uint256 tokenID;
        for(uint256 i = 0; i < _amount;i++){
            if(numberTokenSold == 167){
                //Mint the user NFT
                _mint(msg.sender, 6, 1, "");
                banners[6]--;
                numberTokenSold += 1;

            }else if(numberTokenSold == 776){
                //Mint the user NFT
                _mint(msg.sender, 7, 1, "");
                banners[7]--;
                numberTokenSold += 1;

            }else{
                tokenID = random(i);
                for(uint256 j = 1; j <= 5; j++){
                    if(tokenID == 6){
                        tokenID = 1;
                    }
                    if(banners[tokenID] > 0){ 
                        break;
                    }else{
                        tokenID++;
                    }
                }
                //Mint the user NFT
                _mint(msg.sender, tokenID, 1, "");
                banners[tokenID]--;
                numberTokenSold += 1;
            }

        }
        //Increment the number of NFTs this user minted
        nftsPerWallet[msg.sender] += _amount;
        if(numberTokenSold == MAX_SUPPLY){
            sellingStep = Steps.SoldOut;
        }
    }   


    /**
    * @notice Allows to burn one NFT to an address
    *
    * @return number between 1 and 8
    **/
    function random(uint256 i) public view returns(uint256){
    
        uint256 randomnumber = uint256(keccak256(abi.encodePacked(block.timestamp,block.difficulty,  
        msg.sender,i))) % 5;
        randomnumber = randomnumber + 1;
        return randomnumber;
    }

     
    /**
    * @notice Allows to burn one NFT to an address
    *
    * @param tokenID The id of the token
    * @param amount The amount to burn
    **/
    function burn(uint256 tokenID, uint256 amount) external {
        _burn(msg.sender, tokenID, amount);
        nftsBurnPerWallet[msg.sender][tokenID] += amount;
       
    }


    /**
    * @notice Allows to gift one NFT to an address
    *
    * @param _account The account of the happy new owner of one NFT
    **/
    function gift(address _account,uint256 tokenID) external onlyOwner {
        require(banners[tokenID] > 0, "No one left !");
        //Mint the user NFT
        _mint(_account, tokenID, 1, "");
        banners[tokenID]--;

        //Increment the number of NFTs this user minted
        nftsPerWallet[_account] += 1;
        numberTokenSold += 1;

    }

    /**
    * @notice Return true or false if the account is whitelisted or not
    *
    * @param account The account of the user
    * @param proof The Merkle Proof
    *
    * @return true or false if the account is whitelisted or not
    **/
    function isWhiteListed(address account, bytes32[] calldata proof) internal view returns(bool) {
           
        return _verify(_leaf(account),proof);
    }

    /**
    * @notice Return the account hashed
    *
    * @param account The account to hash
    *
    * @return The account hashed
    **/
    function _leaf(address account) internal pure returns(bytes32) {
        return keccak256(abi.encodePacked(account));
    }

    /** 
    * @notice Returns true if a leaf can be proved to be a part of a Merkle tree defined by root
    *
    * @param leaf The leaf
    * @param proof The Merkle Proof
    *
    * @return True if a leaf can be provded to be a part of a Merkle tree defined by root
    **/
    function _verify(bytes32 leaf, bytes32[] memory proof) internal view returns(bool) {
        return MerkleProof.verify(proof, mR, leaf);
    }

    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newMerkleRoot","type":"bytes32"}],"name":"changeMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getMappingValue","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getMappingValueBurn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","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":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"maxMint","type":"uint256"}],"name":"mintBanner","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberTokenSold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"i","type":"uint256"}],"name":"random","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":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellingStep","outputs":[{"internalType":"enum KPKBanners.Steps","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setUpClaim","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenid","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"}]

60c0604052600a6080819052694b504b2052656c69637360b01b60a09081526200002d9160069190620002de565b506008805460ff191690553480156200004557600080fd5b5060405180608001604052806048815260200162002b04604891396200006b816200019e565b506200007733620001b7565b6001600455620000873362000209565b600c805460ff19169055600b60205260307f72c6bfb7988af3a1efa6568f02a999bc52252641c659d85961ca3d372b57d5cf5560967fa50eece07c7db1631545c0069bd8f5f54d5935e215d59097edf258a44ba916345560c87f64c15cc42be7899b001f818cf4433057002112c418d1d3a67cd5cb453051d33e5561012c7f12d0c11577e2f0950f57c455c117796550b79f444811db8ba2f69c57b646c7848190557febae6141bae5521e99e0a8d610356b0f501fea54980b59c84841db43ba7204f45560017f0387e9d1203691d8e3362a7e4c6723de358a4010d7f31ecbec3fbfc61d1c75fc81905560076000527ff5559028dc9ba50d75343c779b2f75e13a84a14662932fc67a486f263ca31a9655620003c1565b8051620001b3906002906020840190620002de565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6003546001600160a01b03163314620002695760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b038116620002d05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000260565b620002db81620001b7565b50565b828054620002ec9062000384565b90600052602060002090601f0160209004810192826200031057600085556200035b565b82601f106200032b57805160ff19168380011785556200035b565b828001600101855582156200035b579182015b828111156200035b5782518255916020019190600101906200033e565b50620003699291506200036d565b5090565b5b808211156200036957600081556001016200036e565b600181811c908216806200039957607f821691505b60208210811415620003bb57634e487b7160e01b600052602260045260246000fd5b50919050565b61273380620003d16000396000f3fe6080604052600436106101655760003560e01c8063a22cb465116100d1578063e347a2be1161008a578063f1791cdc11610064578063f1791cdc14610445578063f242432a1461045b578063f2fde38b1461047b578063fa9fce701461049b57600080fd5b8063e347a2be146103c7578063e985e9c5146103dc578063ebcea3db1461042557600080fd5b8063a22cb46514610300578063a306422014610320578063b390c0ab14610340578063b863bd3714610360578063cbccefb214610380578063cbce4c97146103a757600080fd5b80632eb2c2d6116101235780632eb2c2d61461024657806332cb6b0c146102665780634e1273f41461027c5780635c975abb146102a9578063715018a6146102c35780638da5cb5b146102d857600080fd5b8062fdd58e1461016a57806301ffc9a71461019d57806306fdde03146101cd5780630908fe45146101ef5780630e89341c1461020657806316c38b3c14610226575b600080fd5b34801561017657600080fd5b5061018a610185366004611f7b565b6104ae565b6040519081526020015b60405180910390f35b3480156101a957600080fd5b506101bd6101b836600461212c565b610545565b6040519015158152602001610194565b3480156101d957600080fd5b506101e2610597565b6040516101949190612375565b3480156101fb57600080fd5b50610204610625565b005b34801561021257600080fd5b506101e2610221366004612113565b61065e565b34801561023257600080fd5b506102046102413660046120f8565b61068f565b34801561025257600080fd5b50610204610261366004611e42565b6106cc565b34801561027257600080fd5b5061018a6103e881565b34801561028857600080fd5b5061029c610297366004611fa5565b610763565b604051610194919061230c565b3480156102b557600080fd5b506008546101bd9060ff1681565b3480156102cf57600080fd5b5061020461088d565b3480156102e457600080fd5b506003546040516001600160a01b039091168152602001610194565b34801561030c57600080fd5b5061020461031b366004611f51565b6108c3565b34801561032c57600080fd5b5061029c61033b366004611df4565b6108d2565b34801561034c57600080fd5b5061020461035b366004612166565b61098d565b34801561036c57600080fd5b5061018a61037b366004612113565b6109cb565b34801561038c57600080fd5b50600c5461039a9060ff1681565b604051610194919061234d565b3480156103b357600080fd5b506102046103c2366004611f7b565b610a46565b3480156103d357600080fd5b5061029c610b39565b3480156103e857600080fd5b506101bd6103f7366004611e0f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561043157600080fd5b50610204610440366004612113565b610bde565b34801561045157600080fd5b5061018a60075481565b34801561046757600080fd5b50610204610476366004611eec565b610c0d565b34801561048757600080fd5b50610204610496366004611df4565b610c94565b6102046104a9366004612076565b610d2f565b60006001600160a01b03831661051f5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061057657506001600160e01b031982166303a24d0760e21b145b8061059157506301ffc9a760e01b6001600160e01b03198316145b92915050565b600680546105a490612542565b80601f01602080910402602001604051908101604052809291908181526020018280546105d090612542565b801561061d5780601f106105f25761010080835404028352916020019161061d565b820191906000526020600020905b81548152906001019060200180831161060057829003601f168201915b505050505081565b6003546001600160a01b0316331461064f5760405162461bcd60e51b81526004016105169061245f565b600c805460ff19166001179055565b606061066982611184565b60405160200161067991906121ef565b6040516020818303038152906040529050919050565b6003546001600160a01b031633146106b95760405162461bcd60e51b81526004016105169061245f565b6008805460ff1916911515919091179055565b6001600160a01b0385163314806106e857506106e885336103f7565b61074f5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610516565b61075c858585858561128a565b5050505050565b606081518351146107c85760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610516565b6000835167ffffffffffffffff8111156107e4576107e461262b565b60405190808252806020026020018201604052801561080d578160200160208202803683370190505b50905060005b84518110156108855761085885828151811061083157610831612615565b602002602001015185838151811061084b5761084b612615565b60200260200101516104ae565b82828151811061086a5761086a612615565b602090810291909101015261087e816125a4565b9050610813565b509392505050565b6003546001600160a01b031633146108b75760405162461bcd60e51b81526004016105169061245f565b6108c16000611467565b565b6108ce3383836114b9565b5050565b606060006108e2600760016124b8565b67ffffffffffffffff8111156108fa576108fa61262b565b604051908082528060200260200182016040528015610923578160200160208202803683370190505b50905060015b60078111610986576001600160a01b0384166000908152600a60209081526040808320848452909152902054825183908390811061096957610969612615565b60209081029190910101528061097e816125a4565b915050610929565b5092915050565b61099833838361159a565b336000908152600a60209081526040808320858452909152812080548392906109c29084906124b8565b90915550505050565b600080600542443386604051602001610a0f9493929190938452602084019290925260601b6bffffffffffffffffffffffff19166040830152605482015260740190565b6040516020818303038152906040528051906020012060001c610a3291906125bf565b9050610a3f8160016124b8565b9392505050565b6003546001600160a01b03163314610a705760405162461bcd60e51b81526004016105169061245f565b6000818152600b6020526040902054610abb5760405162461bcd60e51b815260206004820152600d60248201526c4e6f206f6e65206c656674202160981b6044820152606401610516565b610ad7828260016040518060200160405280600081525061171b565b6000818152600b60205260408120805491610af18361252b565b90915550506001600160a01b0382166000908152600960205260408120805460019290610b1f9084906124b8565b925050819055506001600760008282546109c291906124b8565b60606000610b49600760016124b8565b67ffffffffffffffff811115610b6157610b6161262b565b604051908082528060200260200182016040528015610b8a578160200160208202803683370190505b50905060015b60078111610bd8576000818152600b60205260409020548251839083908110610bbb57610bbb612615565b602090810291909101015280610bd0816125a4565b915050610b90565b50919050565b6003546001600160a01b03163314610c085760405162461bcd60e51b81526004016105169061245f565b600555565b6001600160a01b038516331480610c295750610c2985336103f7565b610c875760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610516565b61075c8585858585611826565b6003546001600160a01b03163314610cbe5760405162461bcd60e51b81526004016105169061245f565b6001600160a01b038116610d235760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610516565b610d2c81611467565b50565b60026004541415610d825760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610516565b60026004819055600c5460ff166002811115610da057610da06125ff565b1415610dde5760405162461bcd60e51b815260206004820152600d60248201526c416c6c20636c61696d6564202160981b6044820152606401610516565b6001600c5460ff166002811115610df757610df76125ff565b14610e445760405162461bcd60e51b815260206004820152601a60248201527f436c61696d20686173206e6f742073746172746564207965742e0000000000006044820152606401610516565b336000908152600960205260409020548190610e619084906124b8565b1115610ea85760405162461bcd60e51b8152602060048201526016602482015275596f752063616e2774206d696e7420616e796d6f726560501b6044820152606401610516565b6103e882600754610eb991906124b8565b1115610f2d5760405162461bcd60e51b815260206004820152603860248201527f53616c6520697320616c6d6f737420646f6e6520616e6420776520646f6e277460448201527f206861766520656e6f75676874204e465473206c6566742e00000000000000006064820152608401610516565b610f38338585611950565b610f845760405162461bcd60e51b815260206004820152601c60248201527f596f7520617265206e6f74206f6e207468652077686974656c697374000000006044820152606401610516565b6000805b838110156111395760075460a7141561101457610fb833600660016040518060200160405280600081525061171b565b60066000908152600b6020527f0387e9d1203691d8e3362a7e4c6723de358a4010d7f31ecbec3fbfc61d1c75fc805491610ff18361252b565b919050555060016007600082825461100991906124b8565b909155506111279050565b60075461030814156110765761103d33600760016040518060200160405280600081525061171b565b60076000908152600b6020527ff5559028dc9ba50d75343c779b2f75e13a84a14662932fc67a486f263ca31a96805491610ff18361252b565b61107f816109cb565b915060015b600581116110d257826006141561109a57600192505b6000838152600b6020526040902054156110b3576110d2565b826110bd816125a4565b935050806110ca816125a4565b915050611084565b506110ef338360016040518060200160405280600081525061171b565b6000828152600b602052604081208054916111098361252b565b919050555060016007600082825461112191906124b8565b90915550505b80611131816125a4565b915050610f88565b5033600090815260096020526040812080548592906111599084906124b8565b90915550506007546103e8141561117857600c805460ff191660021790555b50506001600455505050565b6060816111a85750506040805180820190915260018152600360fc1b602082015290565b8160005b81156111d257806111bc816125a4565b91506111cb9050600a836124d0565b91506111ac565b60008167ffffffffffffffff8111156111ed576111ed61262b565b6040519080825280601f01601f191660200182016040528015611217576020820181803683370190505b5090505b84156112825761122c6001836124e4565b9150611239600a866125bf565b6112449060306124b8565b60f81b81838151811061125957611259612615565b60200101906001600160f81b031916908160001a90535061127b600a866124d0565b945061121b565b949350505050565b81518351146112ec5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610516565b6001600160a01b0384166113125760405162461bcd60e51b8152600401610516906123d0565b3360005b84518110156113f957600085828151811061133357611333612615565b60200260200101519050600085838151811061135157611351612615565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156113a15760405162461bcd60e51b815260040161051690612415565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906113de9084906124b8565b92505081905550505050806113f2906125a4565b9050611316565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161144992919061231f565b60405180910390a461145f8187878787876119d1565b505050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561152d5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610516565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0383166115fc5760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b6064820152608401610516565b33600061160884611b3c565b9050600061161584611b3c565b60408051602080820183526000918290528882528181528282206001600160a01b038b168352905220549091508481101561169e5760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b6064820152608401610516565b6000868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46040805160208101909152600090525b50505050505050565b6001600160a01b03841661177b5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610516565b33600061178785611b3c565b9050600061179485611b3c565b90506000868152602081815260408083206001600160a01b038b168452909152812080548792906117c69084906124b8565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461171283600089898989611b87565b6001600160a01b03841661184c5760405162461bcd60e51b8152600401610516906123d0565b33600061185885611b3c565b9050600061186585611b3c565b90506000868152602081815260408083206001600160a01b038c168452909152902054858110156118a85760405162461bcd60e51b815260040161051690612415565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a168252812080548892906118e59084906124b8565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611945848a8a8a8a8a611b87565b505050505050505050565b6000611282611998856040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250611c5192505050565b6001600160a01b0384163b1561145f5760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611a159089908990889088908890600401612269565b602060405180830381600087803b158015611a2f57600080fd5b505af1925050508015611a5f575060408051601f3d908101601f19168201909252611a5c91810190612149565b60015b611b0c57611a6b612641565b806308c379a01415611aa55750611a8061265d565b80611a8b5750611aa7565b8060405162461bcd60e51b81526004016105169190612375565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610516565b6001600160e01b0319811663bc197c8160e01b146117125760405162461bcd60e51b815260040161051690612388565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611b7657611b76612615565b602090810291909101015292915050565b6001600160a01b0384163b1561145f5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611bcb90899089908890889088906004016122c7565b602060405180830381600087803b158015611be557600080fd5b505af1925050508015611c15575060408051601f3d908101601f19168201909252611c1291810190612149565b60015b611c2157611a6b612641565b6001600160e01b0319811663f23a6e6160e01b146117125760405162461bcd60e51b815260040161051690612388565b6000610a3f8260055485600082611c688584611c71565b14949350505050565b600081815b8451811015610885576000858281518110611c9357611c93612615565b60200260200101519050808311611cb95760008381526020829052604090209250611cca565b600081815260208490526040902092505b5080611cd5816125a4565b915050611c76565b80356001600160a01b0381168114611cf457600080fd5b919050565b600082601f830112611d0a57600080fd5b81356020611d1782612494565b604051611d248282612577565b8381528281019150858301600585901b87018401881015611d4457600080fd5b60005b85811015611d6357813584529284019290840190600101611d47565b5090979650505050505050565b80358015158114611cf457600080fd5b600082601f830112611d9157600080fd5b813567ffffffffffffffff811115611dab57611dab61262b565b604051611dc2601f8301601f191660200182612577565b818152846020838601011115611dd757600080fd5b816020850160208301376000918101602001919091529392505050565b600060208284031215611e0657600080fd5b610a3f82611cdd565b60008060408385031215611e2257600080fd5b611e2b83611cdd565b9150611e3960208401611cdd565b90509250929050565b600080600080600060a08688031215611e5a57600080fd5b611e6386611cdd565b9450611e7160208701611cdd565b9350604086013567ffffffffffffffff80821115611e8e57600080fd5b611e9a89838a01611cf9565b94506060880135915080821115611eb057600080fd5b611ebc89838a01611cf9565b93506080880135915080821115611ed257600080fd5b50611edf88828901611d80565b9150509295509295909350565b600080600080600060a08688031215611f0457600080fd5b611f0d86611cdd565b9450611f1b60208701611cdd565b93506040860135925060608601359150608086013567ffffffffffffffff811115611f4557600080fd5b611edf88828901611d80565b60008060408385031215611f6457600080fd5b611f6d83611cdd565b9150611e3960208401611d70565b60008060408385031215611f8e57600080fd5b611f9783611cdd565b946020939093013593505050565b60008060408385031215611fb857600080fd5b823567ffffffffffffffff80821115611fd057600080fd5b818501915085601f830112611fe457600080fd5b81356020611ff182612494565b604051611ffe8282612577565b8381528281019150858301600585901b870184018b101561201e57600080fd5b600096505b848710156120485761203481611cdd565b835260019690960195918301918301612023565b509650508601359250508082111561205f57600080fd5b5061206c85828601611cf9565b9150509250929050565b6000806000806060858703121561208c57600080fd5b843567ffffffffffffffff808211156120a457600080fd5b818701915087601f8301126120b857600080fd5b8135818111156120c757600080fd5b8860208260051b85010111156120dc57600080fd5b6020928301999098509187013596604001359550909350505050565b60006020828403121561210a57600080fd5b610a3f82611d70565b60006020828403121561212557600080fd5b5035919050565b60006020828403121561213e57600080fd5b8135610a3f816126e7565b60006020828403121561215b57600080fd5b8151610a3f816126e7565b6000806040838503121561217957600080fd5b50508035926020909101359150565b600081518084526020808501945080840160005b838110156121b85781518752958201959082019060010161219c565b509495945050505050565b600081518084526121db8160208601602086016124fb565b601f01601f19169290920160200192915050565b7f68747470733a2f2f6b6f706f6b6f73747564696f2e73332e65752d776573742d81527f332e616d617a6f6e6177732e636f6d2f6d6574616461746142616e6e65722f0060208201526000825161224d81603f8501602087016124fb565b64173539b7b760d91b603f939091019283015250604401919050565b6001600160a01b0386811682528516602082015260a06040820181905260009061229590830186612188565b82810360608401526122a78186612188565b905082810360808401526122bb81856121c3565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090612301908301846121c3565b979650505050505050565b602081526000610a3f6020830184612188565b6040815260006123326040830185612188565b82810360208401526123448185612188565b95945050505050565b602081016003831061236f57634e487b7160e01b600052602160045260246000fd5b91905290565b602081526000610a3f60208301846121c3565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff8211156124ae576124ae61262b565b5060051b60200190565b600082198211156124cb576124cb6125d3565b500190565b6000826124df576124df6125e9565b500490565b6000828210156124f6576124f66125d3565b500390565b60005b838110156125165781810151838201526020016124fe565b83811115612525576000848401525b50505050565b60008161253a5761253a6125d3565b506000190190565b600181811c9082168061255657607f821691505b60208210811415610bd857634e487b7160e01b600052602260045260246000fd5b601f8201601f1916810167ffffffffffffffff8111828210171561259d5761259d61262b565b6040525050565b60006000198214156125b8576125b86125d3565b5060010190565b6000826125ce576125ce6125e9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d111561265a5760046000803e5060005160e01c5b90565b600060443d101561266b5790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561269b57505050505090565b82850191508151818111156126b35750505050505090565b843d87010160208285010111156126cd5750505050505090565b6126dc60208286010187612577565b509095945050505050565b6001600160e01b031981168114610d2c57600080fdfea264697066735822122067150ba2b762714b5bf13792c9758c3e1851287f516dc235edfd2184cb2994bd64736f6c6343000807003368747470733a2f2f6b6f706f6b6f73747564696f2e73332e65752d776573742d332e616d617a6f6e6177732e636f6d2f6d6574616461746142616e6e65722f7b69647d2e6a736f6e

Deployed Bytecode

0x6080604052600436106101655760003560e01c8063a22cb465116100d1578063e347a2be1161008a578063f1791cdc11610064578063f1791cdc14610445578063f242432a1461045b578063f2fde38b1461047b578063fa9fce701461049b57600080fd5b8063e347a2be146103c7578063e985e9c5146103dc578063ebcea3db1461042557600080fd5b8063a22cb46514610300578063a306422014610320578063b390c0ab14610340578063b863bd3714610360578063cbccefb214610380578063cbce4c97146103a757600080fd5b80632eb2c2d6116101235780632eb2c2d61461024657806332cb6b0c146102665780634e1273f41461027c5780635c975abb146102a9578063715018a6146102c35780638da5cb5b146102d857600080fd5b8062fdd58e1461016a57806301ffc9a71461019d57806306fdde03146101cd5780630908fe45146101ef5780630e89341c1461020657806316c38b3c14610226575b600080fd5b34801561017657600080fd5b5061018a610185366004611f7b565b6104ae565b6040519081526020015b60405180910390f35b3480156101a957600080fd5b506101bd6101b836600461212c565b610545565b6040519015158152602001610194565b3480156101d957600080fd5b506101e2610597565b6040516101949190612375565b3480156101fb57600080fd5b50610204610625565b005b34801561021257600080fd5b506101e2610221366004612113565b61065e565b34801561023257600080fd5b506102046102413660046120f8565b61068f565b34801561025257600080fd5b50610204610261366004611e42565b6106cc565b34801561027257600080fd5b5061018a6103e881565b34801561028857600080fd5b5061029c610297366004611fa5565b610763565b604051610194919061230c565b3480156102b557600080fd5b506008546101bd9060ff1681565b3480156102cf57600080fd5b5061020461088d565b3480156102e457600080fd5b506003546040516001600160a01b039091168152602001610194565b34801561030c57600080fd5b5061020461031b366004611f51565b6108c3565b34801561032c57600080fd5b5061029c61033b366004611df4565b6108d2565b34801561034c57600080fd5b5061020461035b366004612166565b61098d565b34801561036c57600080fd5b5061018a61037b366004612113565b6109cb565b34801561038c57600080fd5b50600c5461039a9060ff1681565b604051610194919061234d565b3480156103b357600080fd5b506102046103c2366004611f7b565b610a46565b3480156103d357600080fd5b5061029c610b39565b3480156103e857600080fd5b506101bd6103f7366004611e0f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561043157600080fd5b50610204610440366004612113565b610bde565b34801561045157600080fd5b5061018a60075481565b34801561046757600080fd5b50610204610476366004611eec565b610c0d565b34801561048757600080fd5b50610204610496366004611df4565b610c94565b6102046104a9366004612076565b610d2f565b60006001600160a01b03831661051f5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061057657506001600160e01b031982166303a24d0760e21b145b8061059157506301ffc9a760e01b6001600160e01b03198316145b92915050565b600680546105a490612542565b80601f01602080910402602001604051908101604052809291908181526020018280546105d090612542565b801561061d5780601f106105f25761010080835404028352916020019161061d565b820191906000526020600020905b81548152906001019060200180831161060057829003601f168201915b505050505081565b6003546001600160a01b0316331461064f5760405162461bcd60e51b81526004016105169061245f565b600c805460ff19166001179055565b606061066982611184565b60405160200161067991906121ef565b6040516020818303038152906040529050919050565b6003546001600160a01b031633146106b95760405162461bcd60e51b81526004016105169061245f565b6008805460ff1916911515919091179055565b6001600160a01b0385163314806106e857506106e885336103f7565b61074f5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610516565b61075c858585858561128a565b5050505050565b606081518351146107c85760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610516565b6000835167ffffffffffffffff8111156107e4576107e461262b565b60405190808252806020026020018201604052801561080d578160200160208202803683370190505b50905060005b84518110156108855761085885828151811061083157610831612615565b602002602001015185838151811061084b5761084b612615565b60200260200101516104ae565b82828151811061086a5761086a612615565b602090810291909101015261087e816125a4565b9050610813565b509392505050565b6003546001600160a01b031633146108b75760405162461bcd60e51b81526004016105169061245f565b6108c16000611467565b565b6108ce3383836114b9565b5050565b606060006108e2600760016124b8565b67ffffffffffffffff8111156108fa576108fa61262b565b604051908082528060200260200182016040528015610923578160200160208202803683370190505b50905060015b60078111610986576001600160a01b0384166000908152600a60209081526040808320848452909152902054825183908390811061096957610969612615565b60209081029190910101528061097e816125a4565b915050610929565b5092915050565b61099833838361159a565b336000908152600a60209081526040808320858452909152812080548392906109c29084906124b8565b90915550505050565b600080600542443386604051602001610a0f9493929190938452602084019290925260601b6bffffffffffffffffffffffff19166040830152605482015260740190565b6040516020818303038152906040528051906020012060001c610a3291906125bf565b9050610a3f8160016124b8565b9392505050565b6003546001600160a01b03163314610a705760405162461bcd60e51b81526004016105169061245f565b6000818152600b6020526040902054610abb5760405162461bcd60e51b815260206004820152600d60248201526c4e6f206f6e65206c656674202160981b6044820152606401610516565b610ad7828260016040518060200160405280600081525061171b565b6000818152600b60205260408120805491610af18361252b565b90915550506001600160a01b0382166000908152600960205260408120805460019290610b1f9084906124b8565b925050819055506001600760008282546109c291906124b8565b60606000610b49600760016124b8565b67ffffffffffffffff811115610b6157610b6161262b565b604051908082528060200260200182016040528015610b8a578160200160208202803683370190505b50905060015b60078111610bd8576000818152600b60205260409020548251839083908110610bbb57610bbb612615565b602090810291909101015280610bd0816125a4565b915050610b90565b50919050565b6003546001600160a01b03163314610c085760405162461bcd60e51b81526004016105169061245f565b600555565b6001600160a01b038516331480610c295750610c2985336103f7565b610c875760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610516565b61075c8585858585611826565b6003546001600160a01b03163314610cbe5760405162461bcd60e51b81526004016105169061245f565b6001600160a01b038116610d235760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610516565b610d2c81611467565b50565b60026004541415610d825760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610516565b60026004819055600c5460ff166002811115610da057610da06125ff565b1415610dde5760405162461bcd60e51b815260206004820152600d60248201526c416c6c20636c61696d6564202160981b6044820152606401610516565b6001600c5460ff166002811115610df757610df76125ff565b14610e445760405162461bcd60e51b815260206004820152601a60248201527f436c61696d20686173206e6f742073746172746564207965742e0000000000006044820152606401610516565b336000908152600960205260409020548190610e619084906124b8565b1115610ea85760405162461bcd60e51b8152602060048201526016602482015275596f752063616e2774206d696e7420616e796d6f726560501b6044820152606401610516565b6103e882600754610eb991906124b8565b1115610f2d5760405162461bcd60e51b815260206004820152603860248201527f53616c6520697320616c6d6f737420646f6e6520616e6420776520646f6e277460448201527f206861766520656e6f75676874204e465473206c6566742e00000000000000006064820152608401610516565b610f38338585611950565b610f845760405162461bcd60e51b815260206004820152601c60248201527f596f7520617265206e6f74206f6e207468652077686974656c697374000000006044820152606401610516565b6000805b838110156111395760075460a7141561101457610fb833600660016040518060200160405280600081525061171b565b60066000908152600b6020527f0387e9d1203691d8e3362a7e4c6723de358a4010d7f31ecbec3fbfc61d1c75fc805491610ff18361252b565b919050555060016007600082825461100991906124b8565b909155506111279050565b60075461030814156110765761103d33600760016040518060200160405280600081525061171b565b60076000908152600b6020527ff5559028dc9ba50d75343c779b2f75e13a84a14662932fc67a486f263ca31a96805491610ff18361252b565b61107f816109cb565b915060015b600581116110d257826006141561109a57600192505b6000838152600b6020526040902054156110b3576110d2565b826110bd816125a4565b935050806110ca816125a4565b915050611084565b506110ef338360016040518060200160405280600081525061171b565b6000828152600b602052604081208054916111098361252b565b919050555060016007600082825461112191906124b8565b90915550505b80611131816125a4565b915050610f88565b5033600090815260096020526040812080548592906111599084906124b8565b90915550506007546103e8141561117857600c805460ff191660021790555b50506001600455505050565b6060816111a85750506040805180820190915260018152600360fc1b602082015290565b8160005b81156111d257806111bc816125a4565b91506111cb9050600a836124d0565b91506111ac565b60008167ffffffffffffffff8111156111ed576111ed61262b565b6040519080825280601f01601f191660200182016040528015611217576020820181803683370190505b5090505b84156112825761122c6001836124e4565b9150611239600a866125bf565b6112449060306124b8565b60f81b81838151811061125957611259612615565b60200101906001600160f81b031916908160001a90535061127b600a866124d0565b945061121b565b949350505050565b81518351146112ec5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610516565b6001600160a01b0384166113125760405162461bcd60e51b8152600401610516906123d0565b3360005b84518110156113f957600085828151811061133357611333612615565b60200260200101519050600085838151811061135157611351612615565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156113a15760405162461bcd60e51b815260040161051690612415565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906113de9084906124b8565b92505081905550505050806113f2906125a4565b9050611316565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161144992919061231f565b60405180910390a461145f8187878787876119d1565b505050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561152d5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610516565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0383166115fc5760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b6064820152608401610516565b33600061160884611b3c565b9050600061161584611b3c565b60408051602080820183526000918290528882528181528282206001600160a01b038b168352905220549091508481101561169e5760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b6064820152608401610516565b6000868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46040805160208101909152600090525b50505050505050565b6001600160a01b03841661177b5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610516565b33600061178785611b3c565b9050600061179485611b3c565b90506000868152602081815260408083206001600160a01b038b168452909152812080548792906117c69084906124b8565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461171283600089898989611b87565b6001600160a01b03841661184c5760405162461bcd60e51b8152600401610516906123d0565b33600061185885611b3c565b9050600061186585611b3c565b90506000868152602081815260408083206001600160a01b038c168452909152902054858110156118a85760405162461bcd60e51b815260040161051690612415565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a168252812080548892906118e59084906124b8565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611945848a8a8a8a8a611b87565b505050505050505050565b6000611282611998856040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250611c5192505050565b6001600160a01b0384163b1561145f5760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611a159089908990889088908890600401612269565b602060405180830381600087803b158015611a2f57600080fd5b505af1925050508015611a5f575060408051601f3d908101601f19168201909252611a5c91810190612149565b60015b611b0c57611a6b612641565b806308c379a01415611aa55750611a8061265d565b80611a8b5750611aa7565b8060405162461bcd60e51b81526004016105169190612375565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610516565b6001600160e01b0319811663bc197c8160e01b146117125760405162461bcd60e51b815260040161051690612388565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611b7657611b76612615565b602090810291909101015292915050565b6001600160a01b0384163b1561145f5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611bcb90899089908890889088906004016122c7565b602060405180830381600087803b158015611be557600080fd5b505af1925050508015611c15575060408051601f3d908101601f19168201909252611c1291810190612149565b60015b611c2157611a6b612641565b6001600160e01b0319811663f23a6e6160e01b146117125760405162461bcd60e51b815260040161051690612388565b6000610a3f8260055485600082611c688584611c71565b14949350505050565b600081815b8451811015610885576000858281518110611c9357611c93612615565b60200260200101519050808311611cb95760008381526020829052604090209250611cca565b600081815260208490526040902092505b5080611cd5816125a4565b915050611c76565b80356001600160a01b0381168114611cf457600080fd5b919050565b600082601f830112611d0a57600080fd5b81356020611d1782612494565b604051611d248282612577565b8381528281019150858301600585901b87018401881015611d4457600080fd5b60005b85811015611d6357813584529284019290840190600101611d47565b5090979650505050505050565b80358015158114611cf457600080fd5b600082601f830112611d9157600080fd5b813567ffffffffffffffff811115611dab57611dab61262b565b604051611dc2601f8301601f191660200182612577565b818152846020838601011115611dd757600080fd5b816020850160208301376000918101602001919091529392505050565b600060208284031215611e0657600080fd5b610a3f82611cdd565b60008060408385031215611e2257600080fd5b611e2b83611cdd565b9150611e3960208401611cdd565b90509250929050565b600080600080600060a08688031215611e5a57600080fd5b611e6386611cdd565b9450611e7160208701611cdd565b9350604086013567ffffffffffffffff80821115611e8e57600080fd5b611e9a89838a01611cf9565b94506060880135915080821115611eb057600080fd5b611ebc89838a01611cf9565b93506080880135915080821115611ed257600080fd5b50611edf88828901611d80565b9150509295509295909350565b600080600080600060a08688031215611f0457600080fd5b611f0d86611cdd565b9450611f1b60208701611cdd565b93506040860135925060608601359150608086013567ffffffffffffffff811115611f4557600080fd5b611edf88828901611d80565b60008060408385031215611f6457600080fd5b611f6d83611cdd565b9150611e3960208401611d70565b60008060408385031215611f8e57600080fd5b611f9783611cdd565b946020939093013593505050565b60008060408385031215611fb857600080fd5b823567ffffffffffffffff80821115611fd057600080fd5b818501915085601f830112611fe457600080fd5b81356020611ff182612494565b604051611ffe8282612577565b8381528281019150858301600585901b870184018b101561201e57600080fd5b600096505b848710156120485761203481611cdd565b835260019690960195918301918301612023565b509650508601359250508082111561205f57600080fd5b5061206c85828601611cf9565b9150509250929050565b6000806000806060858703121561208c57600080fd5b843567ffffffffffffffff808211156120a457600080fd5b818701915087601f8301126120b857600080fd5b8135818111156120c757600080fd5b8860208260051b85010111156120dc57600080fd5b6020928301999098509187013596604001359550909350505050565b60006020828403121561210a57600080fd5b610a3f82611d70565b60006020828403121561212557600080fd5b5035919050565b60006020828403121561213e57600080fd5b8135610a3f816126e7565b60006020828403121561215b57600080fd5b8151610a3f816126e7565b6000806040838503121561217957600080fd5b50508035926020909101359150565b600081518084526020808501945080840160005b838110156121b85781518752958201959082019060010161219c565b509495945050505050565b600081518084526121db8160208601602086016124fb565b601f01601f19169290920160200192915050565b7f68747470733a2f2f6b6f706f6b6f73747564696f2e73332e65752d776573742d81527f332e616d617a6f6e6177732e636f6d2f6d6574616461746142616e6e65722f0060208201526000825161224d81603f8501602087016124fb565b64173539b7b760d91b603f939091019283015250604401919050565b6001600160a01b0386811682528516602082015260a06040820181905260009061229590830186612188565b82810360608401526122a78186612188565b905082810360808401526122bb81856121c3565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090612301908301846121c3565b979650505050505050565b602081526000610a3f6020830184612188565b6040815260006123326040830185612188565b82810360208401526123448185612188565b95945050505050565b602081016003831061236f57634e487b7160e01b600052602160045260246000fd5b91905290565b602081526000610a3f60208301846121c3565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff8211156124ae576124ae61262b565b5060051b60200190565b600082198211156124cb576124cb6125d3565b500190565b6000826124df576124df6125e9565b500490565b6000828210156124f6576124f66125d3565b500390565b60005b838110156125165781810151838201526020016124fe565b83811115612525576000848401525b50505050565b60008161253a5761253a6125d3565b506000190190565b600181811c9082168061255657607f821691505b60208210811415610bd857634e487b7160e01b600052602260045260246000fd5b601f8201601f1916810167ffffffffffffffff8111828210171561259d5761259d61262b565b6040525050565b60006000198214156125b8576125b86125d3565b5060010190565b6000826125ce576125ce6125e9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d111561265a5760046000803e5060005160e01c5b90565b600060443d101561266b5790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561269b57505050505090565b82850191508151818111156126b35750505050505090565b843d87010160208285010111156126cd5750505050505090565b6126dc60208286010187612577565b509095945050505050565b6001600160e01b031981168114610d2c57600080fdfea264697066735822122067150ba2b762714b5bf13792c9758c3e1851287f516dc235edfd2184cb2994bd64736f6c63430008070033

Deployed Bytecode Sourcemap

46110:7389:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30664:231;;;;;;;;;;-1:-1:-1;30664:231:0;;;;;:::i;:::-;;:::i;:::-;;;21404:25:1;;;21392:2;21377:18;30664:231:0;;;;;;;;29687:310;;;;;;;;;;-1:-1:-1;29687:310:0;;;;;:::i;:::-;;:::i;:::-;;;12036:14:1;;12029:22;12011:41;;11999:2;11984:18;29687:310:0;11871:187:1;46361:33:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;48833:85::-;;;;;;;;;;;;;:::i;:::-;;47587:302;;;;;;;;;;-1:-1:-1;47587:302:0;;;;;:::i;:::-;;:::i;48658:87::-;;;;;;;;;;-1:-1:-1;48658:87:0;;;;;:::i;:::-;;:::i;32603:442::-;;;;;;;;;;-1:-1:-1;32603:442:0;;;;;:::i;:::-;;:::i;46496:41::-;;;;;;;;;;;;46533:4;46496:41;;31061:524;;;;;;;;;;-1:-1:-1;31061:524:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46621:26::-;;;;;;;;;;-1:-1:-1;46621:26:0;;;;;;;;9878:103;;;;;;;;;;;;;:::i;9227:87::-;;;;;;;;;;-1:-1:-1;9300:6:0;;9227:87;;-1:-1:-1;;;;;9300:6:0;;;9677:51:1;;9665:2;9650:18;9227:87:0;9531:203:1;31658:155:0;;;;;;;;;;-1:-1:-1;31658:155:0;;;;;:::i;:::-;;:::i;48181:314::-;;;;;;;;;;-1:-1:-1;48181:314:0;;;;;:::i;:::-;;:::i;51647:177::-;;;;;;;;;;-1:-1:-1;51647:177:0;;;;;:::i;:::-;;:::i;51199:274::-;;;;;;;;;;-1:-1:-1;51199:274:0;;;;;:::i;:::-;;:::i;46953:24::-;;;;;;;;;;-1:-1:-1;46953:24:0;;;;;;;;;;;;;;;:::i;51980:363::-;;;;;;;;;;-1:-1:-1;51980:363:0;;;;;:::i;:::-;;:::i;47897:276::-;;;;;;;;;;;;;:::i;31885:168::-;;;;;;;;;;-1:-1:-1;31885:168:0;;;;;:::i;:::-;-1:-1:-1;;;;;32008:27:0;;;31984:4;32008:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;31885:168;47472:107;;;;;;;;;;-1:-1:-1;47472:107:0;;;;;:::i;:::-;;:::i;46546:30::-;;;;;;;;;;;;;;;;32125:401;;;;;;;;;;-1:-1:-1;32125:401:0;;;;;:::i;:::-;;:::i;10136:201::-;;;;;;;;;;-1:-1:-1;10136:201:0;;;;;:::i;:::-;;:::i;49115:1956::-;;;;;;:::i;:::-;;:::i;30664:231::-;30750:7;-1:-1:-1;;;;;30778:21:0;;30770:77;;;;-1:-1:-1;;;30770:77:0;;14019:2:1;30770:77:0;;;14001:21:1;14058:2;14038:18;;;14031:30;14097:34;14077:18;;;14070:62;-1:-1:-1;;;14148:18:1;;;14141:41;14199:19;;30770:77:0;;;;;;;;;-1:-1:-1;30865:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;30865:22:0;;;;;;;;;;;;30664:231::o;29687:310::-;29789:4;-1:-1:-1;;;;;;29826:41:0;;-1:-1:-1;;;29826:41:0;;:110;;-1:-1:-1;;;;;;;29884:52:0;;-1:-1:-1;;;29884:52:0;29826:110;:163;;;-1:-1:-1;;;;;;;;;;21089:40:0;;;29953:36;29806:183;29687:310;-1:-1:-1;;29687:310:0:o;46361:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48833:85::-;9300:6;;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;48885:11:::1;:25:::0;;-1:-1:-1;;48885:25:0::1;48899:11;48885:25;::::0;;48833:85::o;47587:302::-;47648:13;47821:26;47838:8;47821:16;:26::i;:::-;47702:168;;;;;;;;:::i;:::-;;;;;;;;;;;;;47674:207;;47587:302;;;:::o;48658:87::-;9300:6;;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;48721:6:::1;:16:::0;;-1:-1:-1;;48721:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48658:87::o;32603:442::-;-1:-1:-1;;;;;32836:20:0;;8031:10;32836:20;;:60;;-1:-1:-1;32860:36:0;32877:4;8031:10;31885:168;:::i;32860:36::-;32814:160;;;;-1:-1:-1;;;32814:160:0;;16410:2:1;32814:160:0;;;16392:21:1;16449:2;16429:18;;;16422:30;16488:34;16468:18;;;16461:62;-1:-1:-1;;;16539:18:1;;;16532:48;16597:19;;32814:160:0;16208:414:1;32814:160:0;32985:52;33008:4;33014:2;33018:3;33023:7;33032:4;32985:22;:52::i;:::-;32603:442;;;;;:::o;31061:524::-;31217:16;31278:3;:10;31259:8;:15;:29;31251:83;;;;-1:-1:-1;;;31251:83:0;;19879:2:1;31251:83:0;;;19861:21:1;19918:2;19898:18;;;19891:30;19957:34;19937:18;;;19930:62;-1:-1:-1;;;20008:18:1;;;20001:39;20057:19;;31251:83:0;19677:405:1;31251:83:0;31347:30;31394:8;:15;31380:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31380:30:0;;31347:63;;31428:9;31423:122;31447:8;:15;31443:1;:19;31423:122;;;31503:30;31513:8;31522:1;31513:11;;;;;;;;:::i;:::-;;;;;;;31526:3;31530:1;31526:6;;;;;;;;:::i;:::-;;;;;;;31503:9;:30::i;:::-;31484:13;31498:1;31484:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;31464:3;;;:::i;:::-;;;31423:122;;;-1:-1:-1;31564:13:0;31061:524;-1:-1:-1;;;31061:524:0:o;9878:103::-;9300:6;;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;9943:30:::1;9970:1;9943:18;:30::i;:::-;9878:103::o:0;31658:155::-;31753:52;8031:10;31786:8;31796;31753:18;:52::i;:::-;31658:155;;:::o;48181:314::-;48248:13;48274:28;48319:13;46446:1;48331;48319:13;:::i;:::-;48305:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48305:28:0;-1:-1:-1;48274:59:0;-1:-1:-1;48360:1:0;48344:115;46446:1;48363;:16;48344:115;;-1:-1:-1;;;;;48418:26:0;;;;;;:17;:26;;;;;;;;:29;;;;;;;;;48401:14;;:11;;48445:1;;48401:14;;;;;;:::i;:::-;;;;;;;;;;:46;48381:3;;;;:::i;:::-;;;;48344:115;;;-1:-1:-1;48476:11:0;48181:314;-1:-1:-1;;48181:314:0:o;51647:177::-;51714:34;51720:10;51732:7;51741:6;51714:5;:34::i;:::-;51777:10;51759:29;;;;:17;:29;;;;;;;;:38;;;;;;;;:48;;51801:6;;51759:29;:48;;51801:6;;51759:48;:::i;:::-;;;;-1:-1:-1;;;;51647:177:0:o;51199:274::-;51246:7;51271:20;51392:1;51329:15;51345:16;51374:10;51385:1;51312:75;;;;;;;;;;9314:19:1;;;9358:2;9349:12;;9342:28;;;;9408:2;9404:15;-1:-1:-1;;9400:53:1;9395:2;9386:12;;9379:75;9479:2;9470:12;;9463:28;9516:3;9507:13;;9101:425;51312:75:0;;;;;;;;;;;;;51302:86;;;;;;51294:95;;:99;;;;:::i;:::-;51271:122;-1:-1:-1;51419:16:0;51271:122;51434:1;51419:16;:::i;:::-;51404:31;51199:274;-1:-1:-1;;;51199:274:0:o;51980:363::-;9300:6;;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;52085:1:::1;52066:16:::0;;;:7:::1;:16;::::0;;;;;52058:46:::1;;;::::0;-1:-1:-1;;;52058:46:0;;19127:2:1;52058:46:0::1;::::0;::::1;19109:21:1::0;19166:2;19146:18;;;19139:30;-1:-1:-1;;;19185:18:1;;;19178:43;19238:18;;52058:46:0::1;18925:337:1::0;52058:46:0::1;52144:31;52150:8;52160:7;52169:1;52144:31;;;;;;;;;;;::::0;:5:::1;:31::i;:::-;52186:16;::::0;;;:7:::1;:16;::::0;;;;:18;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;52274:23:0;::::1;;::::0;;;:13:::1;:23;::::0;;;;:28;;52301:1:::1;::::0;52274:23;:28:::1;::::0;52301:1;;52274:28:::1;:::i;:::-;;;;;;;;52332:1;52313:15;;:20;;;;;;;:::i;47897:276::-:0;47945:16;47974:28;48019:13;46446:1;48031;48019:13;:::i;:::-;48005:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48005:28:0;-1:-1:-1;47974:59:0;-1:-1:-1;48057:1:0;48044:93;46446:1;48060;:16;48044:93;;48115:10;;;;:7;:10;;;;;;48098:14;;:11;;48123:1;;48098:14;;;;;;:::i;:::-;;;;;;;;;;:27;48078:3;;;;:::i;:::-;;;;48044:93;;;-1:-1:-1;48154:11:0;47897:276;-1:-1:-1;47897:276:0:o;47472:107::-;9300:6;;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;47552:2:::1;:19:::0;47472:107::o;32125:401::-;-1:-1:-1;;;;;32333:20:0;;8031:10;32333:20;;:60;;-1:-1:-1;32357:36:0;32374:4;8031:10;31885:168;:::i;32357:36::-;32311:151;;;;-1:-1:-1;;;32311:151:0;;15243:2:1;32311:151:0;;;15225:21:1;15282:2;15262:18;;;15255:30;15321:34;15301:18;;;15294:62;-1:-1:-1;;;15372:18:1;;;15365:39;15421:19;;32311:151:0;15041:405:1;32311:151:0;32473:45;32491:4;32497:2;32501;32505:6;32513:4;32473:17;:45::i;10136:201::-;9300:6;;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10225:22:0;::::1;10217:73;;;::::0;-1:-1:-1;;;10217:73:0;;14431:2:1;10217:73:0::1;::::0;::::1;14413:21:1::0;14470:2;14450:18;;;14443:30;14509:34;14489:18;;;14482:62;-1:-1:-1;;;14560:18:1;;;14553:36;14606:19;;10217:73:0::1;14229:402:1::0;10217:73:0::1;10301:28;10320:8;10301:18;:28::i;:::-;10136:201:::0;:::o;49115:1956::-;4201:1;4799:7;;:19;;4791:63;;;;-1:-1:-1;;;4791:63:0;;21100:2:1;4791:63:0;;;21082:21:1;21139:2;21119:18;;;21112:30;21178:33;21158:18;;;21151:61;21229:18;;4791:63:0;20898:355:1;4791:63:0;4201:1;4932:7;:18;;;49283:11:::1;::::0;::::1;;:28;::::0;::::1;;;;;;:::i;:::-;;;49275:54;;;::::0;-1:-1:-1;;;49275:54:0;;18430:2:1;49275:54:0::1;::::0;::::1;18412:21:1::0;18469:2;18449:18;;;18442:30;-1:-1:-1;;;18488:18:1;;;18481:43;18541:18;;49275:54:0::1;18228:337:1::0;49275:54:0::1;49363:11;49348;::::0;::::1;;:26;::::0;::::1;;;;;;:::i;:::-;;49340:65;;;::::0;-1:-1:-1;;;49340:65:0;;18772:2:1;49340:65:0::1;::::0;::::1;18754:21:1::0;18811:2;18791:18;;;18784:30;18850:28;18830:18;;;18823:56;18896:18;;49340:65:0::1;18570:350:1::0;49340:65:0::1;49438:10;49424:25;::::0;;;:13:::1;:25;::::0;;;;;49463:7;;49424:35:::1;::::0;49452:7;;49424:35:::1;:::i;:::-;:46;;49416:81;;;::::0;-1:-1:-1;;;49416:81:0;;15653:2:1;49416:81:0::1;::::0;::::1;15635:21:1::0;15692:2;15672:18;;;15665:30;-1:-1:-1;;;15711:18:1;;;15704:52;15773:18;;49416:81:0::1;15451:346:1::0;49416:81:0::1;46533:4;49592:7;49574:15;;:25;;;;:::i;:::-;:39;;49566:108;;;::::0;-1:-1:-1;;;49566:108:0;;17644:2:1;49566:108:0::1;::::0;::::1;17626:21:1::0;17683:2;17663:18;;;17656:30;17722:34;17702:18;;;17695:62;17793:26;17773:18;;;17766:54;17837:19;;49566:108:0::1;17442:420:1::0;49566:108:0::1;49736:33;49750:10;49762:6;;49736:13;:33::i;:::-;49728:74;;;::::0;-1:-1:-1;;;49728:74:0;;13662:2:1;49728:74:0::1;::::0;::::1;13644:21:1::0;13701:2;13681:18;;;13674:30;13740;13720:18;;;13713:58;13788:18;;49728:74:0::1;13460:352:1::0;49728:74:0::1;49816:15;::::0;49842:1021:::1;49865:7;49861:1;:11;49842:1021;;;49895:15;;49914:3;49895:22;49892:958;;;49974:27;49980:10;49992:1;49995;49974:27;;;;;;;;;;;::::0;:5:::1;:27::i;:::-;50028:1;50020:10;::::0;;;:7:::1;:10;::::0;;:12;;;::::1;::::0;::::1;:::i;:::-;;;;;;50070:1;50051:15;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;49892:958:0::1;::::0;-1:-1:-1;49892:958:0::1;;50097:15;;50116:3;50097:22;50094:756;;;50176:27;50182:10;50194:1;50197;50176:27;;;;;;;;;;;::::0;:5:::1;:27::i;:::-;50230:1;50222:10;::::0;;;:7:::1;:10;::::0;;:12;;;::::1;::::0;::::1;:::i;50094:756::-;50324:9;50331:1;50324:6;:9::i;:::-;50314:19:::0;-1:-1:-1;50368:1:0::1;50352:318;50376:1;50371;:6;50352:318;;50409:7;50420:1;50409:12;50406:78;;;50459:1;50449:11;;50406:78;50528:1;50509:16:::0;;;:7:::1;:16;::::0;;;;;:20;50506:145:::1;;50558:5;;50506:145;50618:9:::0;::::1;::::0;::::1;:::i;:::-;;;;50379:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50352:318;;;;50725:33;50731:10;50743:7;50752:1;50725:33;;;;;;;;;;;::::0;:5:::1;:33::i;:::-;50777:16;::::0;;;:7:::1;:16;::::0;;;;:18;;;::::1;::::0;::::1;:::i;:::-;;;;;;50833:1;50814:15;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;50094:756:0::1;49873:3:::0;::::1;::::0;::::1;:::i;:::-;;;;49842:1021;;;-1:-1:-1::0;50944:10:0::1;50930:25;::::0;;;:13:::1;:25;::::0;;;;:36;;50959:7;;50930:25;:36:::1;::::0;50959:7;;50930:36:::1;:::i;:::-;::::0;;;-1:-1:-1;;50980:15:0::1;::::0;46533:4:::1;50980:29;50977:87;;;51025:11;:27:::0;;-1:-1:-1;;51025:27:0::1;51039:13;51025:27;::::0;;50977:87:::1;-1:-1:-1::0;;4157:1:0;5111:7;:22;-1:-1:-1;;;49115:1956:0:o;5513:723::-;5569:13;5790:10;5786:53;;-1:-1:-1;;5817:10:0;;;;;;;;;;;;-1:-1:-1;;;5817:10:0;;;;;5513:723::o;5786:53::-;5864:5;5849:12;5905:78;5912:9;;5905:78;;5938:8;;;;:::i;:::-;;-1:-1:-1;5961:10:0;;-1:-1:-1;5969:2:0;5961:10;;:::i;:::-;;;5905:78;;;5993:19;6025:6;6015:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6015:17:0;;5993:39;;6043:154;6050:10;;6043:154;;6077:11;6087:1;6077:11;;:::i;:::-;;-1:-1:-1;6146:10:0;6154:2;6146:5;:10;:::i;:::-;6133:24;;:2;:24;:::i;:::-;6120:39;;6103:6;6110;6103:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6103:56:0;;;;;;;;-1:-1:-1;6174:11:0;6183:2;6174:11;;:::i;:::-;;;6043:154;;;6221:6;5513:723;-1:-1:-1;;;;5513:723:0:o;34841:1146::-;35068:7;:14;35054:3;:10;:28;35046:81;;;;-1:-1:-1;;;35046:81:0;;20289:2:1;35046:81:0;;;20271:21:1;20328:2;20308:18;;;20301:30;20367:34;20347:18;;;20340:62;-1:-1:-1;;;20418:18:1;;;20411:38;20466:19;;35046:81:0;20087:404:1;35046:81:0;-1:-1:-1;;;;;35146:16:0;;35138:66;;;;-1:-1:-1;;;35138:66:0;;;;;;;:::i;:::-;8031:10;35217:16;35334:421;35358:3;:10;35354:1;:14;35334:421;;;35390:10;35403:3;35407:1;35403:6;;;;;;;;:::i;:::-;;;;;;;35390:19;;35424:14;35441:7;35449:1;35441:10;;;;;;;;:::i;:::-;;;;;;;;;;;;35468:19;35490:13;;;;;;;;;;-1:-1:-1;;;;;35490:19:0;;;;;;;;;;;;35441:10;;-1:-1:-1;35532:21:0;;;;35524:76;;;;-1:-1:-1;;;35524:76:0;;;;;;;:::i;:::-;35644:9;:13;;;;;;;;;;;-1:-1:-1;;;;;35644:19:0;;;;;;;;;;35666:20;;;35644:42;;35716:17;;;;;;;:27;;35666:20;;35644:9;35716:27;;35666:20;;35716:27;:::i;:::-;;;;;;;;35375:380;;;35370:3;;;;:::i;:::-;;;35334:421;;;;35802:2;-1:-1:-1;;;;;35772:47:0;35796:4;-1:-1:-1;;;;;35772:47:0;35786:8;-1:-1:-1;;;;;35772:47:0;;35806:3;35811:7;35772:47;;;;;;;:::i;:::-;;;;;;;;35904:75;35940:8;35950:4;35956:2;35960:3;35965:7;35974:4;35904:35;:75::i;:::-;35035:952;34841:1146;;;;;:::o;10497:191::-;10590:6;;;-1:-1:-1;;;;;10607:17:0;;;-1:-1:-1;;;;;;10607:17:0;;;;;;;10640:40;;10590:6;;;10607:17;10590:6;;10640:40;;10571:16;;10640:40;10560:128;10497:191;:::o;41575:331::-;41730:8;-1:-1:-1;;;;;41721:17:0;:5;-1:-1:-1;;;;;41721:17:0;;;41713:71;;;;-1:-1:-1;;;41713:71:0;;19469:2:1;41713:71:0;;;19451:21:1;19508:2;19488:18;;;19481:30;19547:34;19527:18;;;19520:62;-1:-1:-1;;;19598:18:1;;;19591:39;19647:19;;41713:71:0;19267:405:1;41713:71:0;-1:-1:-1;;;;;41795:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;41795:46:0;;;;;;;;;;41857:41;;12011::1;;;41857::0;;11984:18:1;41857:41:0;;;;;;;41575:331;;;:::o;39453:808::-;-1:-1:-1;;;;;39580:18:0;;39572:66;;;;-1:-1:-1;;;39572:66:0;;16829:2:1;39572:66:0;;;16811:21:1;16868:2;16848:18;;;16841:30;16907:34;16887:18;;;16880:62;-1:-1:-1;;;16958:18:1;;;16951:33;17001:19;;39572:66:0;16627:399:1;39572:66:0;8031:10;39651:16;39716:21;39734:2;39716:17;:21::i;:::-;39693:44;;39748:24;39775:25;39793:6;39775:17;:25::i;:::-;39813:66;;;;;;;;;-1:-1:-1;39813:66:0;;;;39914:13;;;;;;;;;-1:-1:-1;;;;;39914:19:0;;;;;;;;39748:52;;-1:-1:-1;39952:21:0;;;;39944:70;;;;-1:-1:-1;;;39944:70:0;;14838:2:1;39944:70:0;;;14820:21:1;14877:2;14857:18;;;14850:30;14916:34;14896:18;;;14889:62;-1:-1:-1;;;14967:18:1;;;14960:34;15011:19;;39944:70:0;14636:400:1;39944:70:0;40050:9;:13;;;;;;;;;;;-1:-1:-1;;;;;40050:19:0;;;;;;;;;;;;40072:20;;;40050:42;;40121:54;;21614:25:1;;;21655:18;;;21648:34;;;40050:19:0;;40121:54;;;;;;21587:18:1;40121:54:0;;;;;;;40188:65;;;;;;;;;40232:1;40188:65;;;39561:700;;;;39453:808;;;:::o;37305:729::-;-1:-1:-1;;;;;37458:16:0;;37450:62;;;;-1:-1:-1;;;37450:62:0;;20698:2:1;37450:62:0;;;20680:21:1;20737:2;20717:18;;;20710:30;20776:34;20756:18;;;20749:62;-1:-1:-1;;;20827:18:1;;;20820:31;20868:19;;37450:62:0;20496:397:1;37450:62:0;8031:10;37525:16;37590:21;37608:2;37590:17;:21::i;:::-;37567:44;;37622:24;37649:25;37667:6;37649:17;:25::i;:::-;37622:52;;37766:9;:13;;;;;;;;;;;-1:-1:-1;;;;;37766:17:0;;;;;;;;;:27;;37787:6;;37766:9;:27;;37787:6;;37766:27;:::i;:::-;;;;-1:-1:-1;;37809:52:0;;;21614:25:1;;;21670:2;21655:18;;21648:34;;;-1:-1:-1;;;;;37809:52:0;;;;37842:1;;37809:52;;;;;;21587:18:1;37809:52:0;;;;;;;37952:74;37983:8;38001:1;38005:2;38009;38013:6;38021:4;37952:30;:74::i;33509:974::-;-1:-1:-1;;;;;33697:16:0;;33689:66;;;;-1:-1:-1;;;33689:66:0;;;;;;;:::i;:::-;8031:10;33768:16;33833:21;33851:2;33833:17;:21::i;:::-;33810:44;;33865:24;33892:25;33910:6;33892:17;:25::i;:::-;33865:52;;34003:19;34025:13;;;;;;;;;;;-1:-1:-1;;;;;34025:19:0;;;;;;;;;;34063:21;;;;34055:76;;;;-1:-1:-1;;;34055:76:0;;;;;;;:::i;:::-;34167:9;:13;;;;;;;;;;;-1:-1:-1;;;;;34167:19:0;;;;;;;;;;34189:20;;;34167:42;;34231:17;;;;;;;:27;;34189:20;;34167:9;34231:27;;34189:20;;34231:27;:::i;:::-;;;;-1:-1:-1;;34276:46:0;;;21614:25:1;;;21670:2;21655:18;;21648:34;;;-1:-1:-1;;;;;34276:46:0;;;;;;;;;;;;;;21587:18:1;34276:46:0;;;;;;;34407:68;34438:8;34448:4;34454:2;34458;34462:6;34470:4;34407:30;:68::i;:::-;33678:805;;;;33509:974;;;;;:::o;52605:162::-;52693:4;52730:29;52738:14;52744:7;53015:25;;-1:-1:-1;;8339:2:1;8335:15;;;8331:53;53015:25:0;;;8319:66:1;52978:7:0;;8401:12:1;;53015:25:0;;;;;;;;;;;;53005:36;;;;;;52998:43;;52924:125;;;;52738:14;52753:5;;52730:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52730:7:0;;-1:-1:-1;;;52730:29:0:i;45018:813::-;-1:-1:-1;;;;;45258:13:0;;12223:19;:23;45254:570;;45294:79;;-1:-1:-1;;;45294:79:0;;-1:-1:-1;;;;;45294:43:0;;;;;:79;;45338:8;;45348:4;;45354:3;;45359:7;;45368:4;;45294:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45294:79:0;;;;;;;;-1:-1:-1;;45294:79:0;;;;;;;;;;;;:::i;:::-;;;45290:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;45686:6;45679:14;;-1:-1:-1;;;45679:14:0;;;;;;;;:::i;45290:523::-;;;45735:62;;-1:-1:-1;;;45735:62:0;;12832:2:1;45735:62:0;;;12814:21:1;12871:2;12851:18;;;12844:30;12910:34;12890:18;;;12883:62;-1:-1:-1;;;12961:18:1;;;12954:50;13021:19;;45735:62:0;12630:416:1;45290:523:0;-1:-1:-1;;;;;;45455:60:0;;-1:-1:-1;;;45455:60:0;45451:159;;45540:50;;-1:-1:-1;;;45540:50:0;;;;;;;:::i;45839:198::-;45959:16;;;45973:1;45959:16;;;;;;;;;45905;;45934:22;;45959:16;;;;;;;;;;;;-1:-1:-1;45959:16:0;45934:41;;45997:7;45986:5;45992:1;45986:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;46024:5;45839:198;-1:-1:-1;;45839:198:0:o;44266:744::-;-1:-1:-1;;;;;44481:13:0;;12223:19;:23;44477:526;;44517:72;;-1:-1:-1;;;44517:72:0;;-1:-1:-1;;;;;44517:38:0;;;;;:72;;44556:8;;44566:4;;44572:2;;44576:6;;44584:4;;44517:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44517:72:0;;;;;;;;-1:-1:-1;;44517:72:0;;;;;;;;;;;;:::i;:::-;;;44513:479;;;;:::i;:::-;-1:-1:-1;;;;;;44639:55:0;;-1:-1:-1;;;44639:55:0;44635:154;;44719:50;;-1:-1:-1;;;44719:50:0;;;;;;;:::i;53344:144::-;53421:4;53445:35;53464:5;53471:2;;53475:4;1048;1101;1072:25;1085:5;1092:4;1072:12;:25::i;:::-;:33;;923:190;-1:-1:-1;;;;923:190:0:o;1475:675::-;1558:7;1601:4;1558:7;1616:497;1640:5;:12;1636:1;:16;1616:497;;;1674:20;1697:5;1703:1;1697:8;;;;;;;;:::i;:::-;;;;;;;1674:31;;1740:12;1724;:28;1720:382;;2226:13;2276:15;;;2312:4;2305:15;;;2359:4;2343:21;;1852:57;;1720:382;;;2226:13;2276:15;;;2312:4;2305:15;;;2359:4;2343:21;;2029:57;;1720:382;-1:-1:-1;1654:3:0;;;;:::i;:::-;;;;1616:497;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:735::-;246:5;299:3;292:4;284:6;280:17;276:27;266:55;;317:1;314;307:12;266:55;353:6;340:20;379:4;402:43;442:2;402:43;:::i;:::-;474:2;468:9;486:31;514:2;506:6;486:31;:::i;:::-;552:18;;;586:15;;;;-1:-1:-1;621:15:1;;;671:1;667:10;;;655:23;;651:32;;648:41;-1:-1:-1;645:61:1;;;702:1;699;692:12;645:61;724:1;734:163;748:2;745:1;742:9;734:163;;;805:17;;793:30;;843:12;;;;875;;;;766:1;759:9;734:163;;;-1:-1:-1;915:6:1;;192:735;-1:-1:-1;;;;;;;192:735:1:o;932:160::-;997:20;;1053:13;;1046:21;1036:32;;1026:60;;1082:1;1079;1072:12;1097:555;1139:5;1192:3;1185:4;1177:6;1173:17;1169:27;1159:55;;1210:1;1207;1200:12;1159:55;1246:6;1233:20;1272:18;1268:2;1265:26;1262:52;;;1294:18;;:::i;:::-;1343:2;1337:9;1355:67;1410:2;1391:13;;-1:-1:-1;;1387:27:1;1416:4;1383:38;1337:9;1355:67;:::i;:::-;1446:2;1438:6;1431:18;1492:3;1485:4;1480:2;1472:6;1468:15;1464:26;1461:35;1458:55;;;1509:1;1506;1499:12;1458:55;1573:2;1566:4;1558:6;1554:17;1547:4;1539:6;1535:17;1522:54;1620:1;1596:15;;;1613:4;1592:26;1585:37;;;;1600:6;1097:555;-1:-1:-1;;;1097:555:1:o;1657:186::-;1716:6;1769:2;1757:9;1748:7;1744:23;1740:32;1737:52;;;1785:1;1782;1775:12;1737:52;1808:29;1827:9;1808:29;:::i;1848:260::-;1916:6;1924;1977:2;1965:9;1956:7;1952:23;1948:32;1945:52;;;1993:1;1990;1983:12;1945:52;2016:29;2035:9;2016:29;:::i;:::-;2006:39;;2064:38;2098:2;2087:9;2083:18;2064:38;:::i;:::-;2054:48;;1848:260;;;;;:::o;2113:943::-;2267:6;2275;2283;2291;2299;2352:3;2340:9;2331:7;2327:23;2323:33;2320:53;;;2369:1;2366;2359:12;2320:53;2392:29;2411:9;2392:29;:::i;:::-;2382:39;;2440:38;2474:2;2463:9;2459:18;2440:38;:::i;:::-;2430:48;;2529:2;2518:9;2514:18;2501:32;2552:18;2593:2;2585:6;2582:14;2579:34;;;2609:1;2606;2599:12;2579:34;2632:61;2685:7;2676:6;2665:9;2661:22;2632:61;:::i;:::-;2622:71;;2746:2;2735:9;2731:18;2718:32;2702:48;;2775:2;2765:8;2762:16;2759:36;;;2791:1;2788;2781:12;2759:36;2814:63;2869:7;2858:8;2847:9;2843:24;2814:63;:::i;:::-;2804:73;;2930:3;2919:9;2915:19;2902:33;2886:49;;2960:2;2950:8;2947:16;2944:36;;;2976:1;2973;2966:12;2944:36;;2999:51;3042:7;3031:8;3020:9;3016:24;2999:51;:::i;:::-;2989:61;;;2113:943;;;;;;;;:::o;3061:606::-;3165:6;3173;3181;3189;3197;3250:3;3238:9;3229:7;3225:23;3221:33;3218:53;;;3267:1;3264;3257:12;3218:53;3290:29;3309:9;3290:29;:::i;:::-;3280:39;;3338:38;3372:2;3361:9;3357:18;3338:38;:::i;:::-;3328:48;;3423:2;3412:9;3408:18;3395:32;3385:42;;3474:2;3463:9;3459:18;3446:32;3436:42;;3529:3;3518:9;3514:19;3501:33;3557:18;3549:6;3546:30;3543:50;;;3589:1;3586;3579:12;3543:50;3612:49;3653:7;3644:6;3633:9;3629:22;3612:49;:::i;3672:254::-;3737:6;3745;3798:2;3786:9;3777:7;3773:23;3769:32;3766:52;;;3814:1;3811;3804:12;3766:52;3837:29;3856:9;3837:29;:::i;:::-;3827:39;;3885:35;3916:2;3905:9;3901:18;3885:35;:::i;3931:254::-;3999:6;4007;4060:2;4048:9;4039:7;4035:23;4031:32;4028:52;;;4076:1;4073;4066:12;4028:52;4099:29;4118:9;4099:29;:::i;:::-;4089:39;4175:2;4160:18;;;;4147:32;;-1:-1:-1;;;3931:254:1:o;4190:1219::-;4308:6;4316;4369:2;4357:9;4348:7;4344:23;4340:32;4337:52;;;4385:1;4382;4375:12;4337:52;4425:9;4412:23;4454:18;4495:2;4487:6;4484:14;4481:34;;;4511:1;4508;4501:12;4481:34;4549:6;4538:9;4534:22;4524:32;;4594:7;4587:4;4583:2;4579:13;4575:27;4565:55;;4616:1;4613;4606:12;4565:55;4652:2;4639:16;4674:4;4697:43;4737:2;4697:43;:::i;:::-;4769:2;4763:9;4781:31;4809:2;4801:6;4781:31;:::i;:::-;4847:18;;;4881:15;;;;-1:-1:-1;4916:11:1;;;4958:1;4954:10;;;4946:19;;4942:28;;4939:41;-1:-1:-1;4936:61:1;;;4993:1;4990;4983:12;4936:61;5015:1;5006:10;;5025:169;5039:2;5036:1;5033:9;5025:169;;;5096:23;5115:3;5096:23;:::i;:::-;5084:36;;5057:1;5050:9;;;;;5140:12;;;;5172;;5025:169;;;-1:-1:-1;5213:6:1;-1:-1:-1;;5257:18:1;;5244:32;;-1:-1:-1;;5288:16:1;;;5285:36;;;5317:1;5314;5307:12;5285:36;;5340:63;5395:7;5384:8;5373:9;5369:24;5340:63;:::i;:::-;5330:73;;;4190:1219;;;;;:::o;5414:757::-;5518:6;5526;5534;5542;5595:2;5583:9;5574:7;5570:23;5566:32;5563:52;;;5611:1;5608;5601:12;5563:52;5651:9;5638:23;5680:18;5721:2;5713:6;5710:14;5707:34;;;5737:1;5734;5727:12;5707:34;5775:6;5764:9;5760:22;5750:32;;5820:7;5813:4;5809:2;5805:13;5801:27;5791:55;;5842:1;5839;5832:12;5791:55;5882:2;5869:16;5908:2;5900:6;5897:14;5894:34;;;5924:1;5921;5914:12;5894:34;5979:7;5972:4;5962:6;5959:1;5955:14;5951:2;5947:23;5943:34;5940:47;5937:67;;;6000:1;5997;5990:12;5937:67;6031:4;6023:13;;;;6055:6;;-1:-1:-1;6093:20:1;;;6080:34;;6161:2;6146:18;6133:32;;-1:-1:-1;5414:757:1;;-1:-1:-1;;;;5414:757:1:o;6176:180::-;6232:6;6285:2;6273:9;6264:7;6260:23;6256:32;6253:52;;;6301:1;6298;6291:12;6253:52;6324:26;6340:9;6324:26;:::i;6361:180::-;6420:6;6473:2;6461:9;6452:7;6448:23;6444:32;6441:52;;;6489:1;6486;6479:12;6441:52;-1:-1:-1;6512:23:1;;6361:180;-1:-1:-1;6361:180:1:o;6546:245::-;6604:6;6657:2;6645:9;6636:7;6632:23;6628:32;6625:52;;;6673:1;6670;6663:12;6625:52;6712:9;6699:23;6731:30;6755:5;6731:30;:::i;6796:249::-;6865:6;6918:2;6906:9;6897:7;6893:23;6889:32;6886:52;;;6934:1;6931;6924:12;6886:52;6966:9;6960:16;6985:30;7009:5;6985:30;:::i;7235:248::-;7303:6;7311;7364:2;7352:9;7343:7;7339:23;7335:32;7332:52;;;7380:1;7377;7370:12;7332:52;-1:-1:-1;;7403:23:1;;;7473:2;7458:18;;;7445:32;;-1:-1:-1;7235:248:1:o;7488:435::-;7541:3;7579:5;7573:12;7606:6;7601:3;7594:19;7632:4;7661:2;7656:3;7652:12;7645:19;;7698:2;7691:5;7687:14;7719:1;7729:169;7743:6;7740:1;7737:13;7729:169;;;7804:13;;7792:26;;7838:12;;;;7873:15;;;;7765:1;7758:9;7729:169;;;-1:-1:-1;7914:3:1;;7488:435;-1:-1:-1;;;;;7488:435:1:o;7928:257::-;7969:3;8007:5;8001:12;8034:6;8029:3;8022:19;8050:63;8106:6;8099:4;8094:3;8090:14;8083:4;8076:5;8072:16;8050:63;:::i;:::-;8167:2;8146:15;-1:-1:-1;;8142:29:1;8133:39;;;;8174:4;8129:50;;7928:257;-1:-1:-1;;7928:257:1:o;8424:672::-;8787:34;8782:3;8775:47;8852:33;8847:2;8842:3;8838:12;8831:55;8757:3;8915:6;8909:13;8931:60;8984:6;8979:2;8974:3;8970:12;8965:2;8957:6;8953:15;8931:60;:::i;:::-;-1:-1:-1;;;9050:2:1;9010:16;;;;9042:11;;;9035:28;-1:-1:-1;9087:2:1;9079:11;;8424:672;-1:-1:-1;8424:672:1:o;9739:826::-;-1:-1:-1;;;;;10136:15:1;;;10118:34;;10188:15;;10183:2;10168:18;;10161:43;10098:3;10235:2;10220:18;;10213:31;;;10061:4;;10267:57;;10304:19;;10296:6;10267:57;:::i;:::-;10372:9;10364:6;10360:22;10355:2;10344:9;10340:18;10333:50;10406:44;10443:6;10435;10406:44;:::i;:::-;10392:58;;10499:9;10491:6;10487:22;10481:3;10470:9;10466:19;10459:51;10527:32;10552:6;10544;10527:32;:::i;:::-;10519:40;9739:826;-1:-1:-1;;;;;;;;9739:826:1:o;10570:560::-;-1:-1:-1;;;;;10867:15:1;;;10849:34;;10919:15;;10914:2;10899:18;;10892:43;10966:2;10951:18;;10944:34;;;11009:2;10994:18;;10987:34;;;10829:3;11052;11037:19;;11030:32;;;10792:4;;11079:45;;11104:19;;11096:6;11079:45;:::i;:::-;11071:53;10570:560;-1:-1:-1;;;;;;;10570:560:1:o;11135:261::-;11314:2;11303:9;11296:21;11277:4;11334:56;11386:2;11375:9;11371:18;11363:6;11334:56;:::i;11401:465::-;11658:2;11647:9;11640:21;11621:4;11684:56;11736:2;11725:9;11721:18;11713:6;11684:56;:::i;:::-;11788:9;11780:6;11776:22;11771:2;11760:9;11756:18;11749:50;11816:44;11853:6;11845;11816:44;:::i;:::-;11808:52;11401:465;-1:-1:-1;;;;;11401:465:1:o;12063:338::-;12205:2;12190:18;;12238:1;12227:13;;12217:144;;12283:10;12278:3;12274:20;12271:1;12264:31;12318:4;12315:1;12308:15;12346:4;12343:1;12336:15;12217:144;12370:25;;;12063:338;:::o;12406:219::-;12555:2;12544:9;12537:21;12518:4;12575:44;12615:2;12604:9;12600:18;12592:6;12575:44;:::i;13051:404::-;13253:2;13235:21;;;13292:2;13272:18;;;13265:30;13331:34;13326:2;13311:18;;13304:62;-1:-1:-1;;;13397:2:1;13382:18;;13375:38;13445:3;13430:19;;13051:404::o;15802:401::-;16004:2;15986:21;;;16043:2;16023:18;;;16016:30;16082:34;16077:2;16062:18;;16055:62;-1:-1:-1;;;16148:2:1;16133:18;;16126:35;16193:3;16178:19;;15802:401::o;17031:406::-;17233:2;17215:21;;;17272:2;17252:18;;;17245:30;17311:34;17306:2;17291:18;;17284:62;-1:-1:-1;;;17377:2:1;17362:18;;17355:40;17427:3;17412:19;;17031:406::o;17867:356::-;18069:2;18051:21;;;18088:18;;;18081:30;18147:34;18142:2;18127:18;;18120:62;18214:2;18199:18;;17867:356::o;21693:183::-;21753:4;21786:18;21778:6;21775:30;21772:56;;;21808:18;;:::i;:::-;-1:-1:-1;21853:1:1;21849:14;21865:4;21845:25;;21693:183::o;21881:128::-;21921:3;21952:1;21948:6;21945:1;21942:13;21939:39;;;21958:18;;:::i;:::-;-1:-1:-1;21994:9:1;;21881:128::o;22014:120::-;22054:1;22080;22070:35;;22085:18;;:::i;:::-;-1:-1:-1;22119:9:1;;22014:120::o;22139:125::-;22179:4;22207:1;22204;22201:8;22198:34;;;22212:18;;:::i;:::-;-1:-1:-1;22249:9:1;;22139:125::o;22269:258::-;22341:1;22351:113;22365:6;22362:1;22359:13;22351:113;;;22441:11;;;22435:18;22422:11;;;22415:39;22387:2;22380:10;22351:113;;;22482:6;22479:1;22476:13;22473:48;;;22517:1;22508:6;22503:3;22499:16;22492:27;22473:48;;22269:258;;;:::o;22532:136::-;22571:3;22599:5;22589:39;;22608:18;;:::i;:::-;-1:-1:-1;;;22644:18:1;;22532:136::o;22673:380::-;22752:1;22748:12;;;;22795;;;22816:61;;22870:4;22862:6;22858:17;22848:27;;22816:61;22923:2;22915:6;22912:14;22892:18;22889:38;22886:161;;;22969:10;22964:3;22960:20;22957:1;22950:31;23004:4;23001:1;22994:15;23032:4;23029:1;23022:15;23058:249;23168:2;23149:13;;-1:-1:-1;;23145:27:1;23133:40;;23203:18;23188:34;;23224:22;;;23185:62;23182:88;;;23250:18;;:::i;:::-;23286:2;23279:22;-1:-1:-1;;23058:249:1:o;23312:135::-;23351:3;-1:-1:-1;;23372:17:1;;23369:43;;;23392:18;;:::i;:::-;-1:-1:-1;23439:1:1;23428:13;;23312:135::o;23452:112::-;23484:1;23510;23500:35;;23515:18;;:::i;:::-;-1:-1:-1;23549:9:1;;23452:112::o;23569:127::-;23630:10;23625:3;23621:20;23618:1;23611:31;23661:4;23658:1;23651:15;23685:4;23682:1;23675:15;23701:127;23762:10;23757:3;23753:20;23750:1;23743:31;23793:4;23790:1;23783:15;23817:4;23814:1;23807:15;23833:127;23894:10;23889:3;23885:20;23882:1;23875:31;23925:4;23922:1;23915:15;23949:4;23946:1;23939:15;23965:127;24026:10;24021:3;24017:20;24014:1;24007:31;24057:4;24054:1;24047:15;24081:4;24078:1;24071:15;24097:127;24158:10;24153:3;24149:20;24146:1;24139:31;24189:4;24186:1;24179:15;24213:4;24210:1;24203:15;24229:179;24264:3;24306:1;24288:16;24285:23;24282:120;;;24352:1;24349;24346;24331:23;-1:-1:-1;24389:1:1;24383:8;24378:3;24374:18;24282:120;24229:179;:::o;24413:671::-;24452:3;24494:4;24476:16;24473:26;24470:39;;;24413:671;:::o;24470:39::-;24536:2;24530:9;-1:-1:-1;;24601:16:1;24597:25;;24594:1;24530:9;24573:50;24652:4;24646:11;24676:16;24711:18;24782:2;24775:4;24767:6;24763:17;24760:25;24755:2;24747:6;24744:14;24741:45;24738:58;;;24789:5;;;;;24413:671;:::o;24738:58::-;24826:6;24820:4;24816:17;24805:28;;24862:3;24856:10;24889:2;24881:6;24878:14;24875:27;;;24895:5;;;;;;24413:671;:::o;24875:27::-;24979:2;24960:16;24954:4;24950:27;24946:36;24939:4;24930:6;24925:3;24921:16;24917:27;24914:69;24911:82;;;24986:5;;;;;;24413:671;:::o;24911:82::-;25002:57;25053:4;25044:6;25036;25032:19;25028:30;25022:4;25002:57;:::i;:::-;-1:-1:-1;25075:3:1;;24413:671;-1:-1:-1;;;;;24413:671:1:o;25089:131::-;-1:-1:-1;;;;;;25163:32:1;;25153:43;;25143:71;;25210:1;25207;25200:12

Swarm Source

ipfs://67150ba2b762714b5bf13792c9758c3e1851287f516dc235edfd2184cb2994bd
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.