POL Price: $0.741086 (+7.52%)
 

Overview

Max Total Supply

0 CC-BC-CO2

Holders

0

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
Carbon

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
File 1 of 16 : Carbon.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;

import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
 
 contract Carbon is Ownable, ERC1155, ERC1155Burnable {
        
    string public name = "Change Code -- BCarbon | CO2";
    string public symbol = "CC-BC-CO2";
    
    uint256 public constant BCARBON_RHO_BUFFER = 0;
    uint256 public constant BCARBON_RHO001 = 1;
    uint256 public constant BCARBON_RHO002 = 2;
    uint256 public constant BCARBON_RHO003 = 3;
    uint256 public constant BCARBON_RHO004 = 4;
    uint256 public constant BCARBON_RHO005 = 5;
    uint256 public constant BCARBON_RHO006 = 6;
    uint256 public constant BCARBON_RHO007 = 7;
    uint256 public constant BCARBON_RHO008 = 8;
    uint256 public constant BCARBON_RHO009 = 9;
    uint256 public constant BCARBON_RHO010 = 10;
    uint256 public constant BCARBON_RHO011 = 11;
    uint256 public constant BCARBON_RHO012 = 12;
    uint256 public constant BCARBON_RHO013 = 13;
    uint256 public constant BCARBON_RHO014 = 14;
    uint256 public constant BCARBON_RHO015 = 15;

    using Strings for uint256;

    string private baseURI = "https://bcarbon.changecode.io/methodologies/soil-carbon-methodology";

    constructor() ERC1155("https://bcarbon.changecode.io/methodologies/soil-carbon-methodology") Ownable(msg.sender) {
        _setURI("https://bcarbon.changecode.io/methodologies/soil-carbon-methodology");
    }
    
    function mint_plus(address to, uint256 tokenId, uint256 quantity, bytes calldata data, string memory mint_metadata) external payable onlyOwner {
        _mint(to, tokenId, quantity, data);
    }

    // requires private key of sender (instead of contract owner)
    function transfer_plus(address from, address to, uint256 tokenId, uint256 quantity, bytes calldata data, string memory transfer_metadata) external payable {
        safeTransferFrom(from, to, tokenId, quantity, data);
    }
    
    // uses private key of contract owner regardless of token holder
     function burn_plus(address from, uint256 tokenId, uint256 quantity, string memory burn_metadata) public onlyOwner {
        _burn(from, tokenId, quantity);
    }
}

File 2 of 16 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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 3 of 16 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

File 4 of 16 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.20;

import {IERC1155} from "./IERC1155.sol";
import {IERC1155Receiver} from "./IERC1155Receiver.sol";
import {IERC1155MetadataURI} from "./extensions/IERC1155MetadataURI.sol";
import {Context} from "../../utils/Context.sol";
import {IERC165, ERC165} from "../../utils/introspection/ERC165.sol";
import {Arrays} from "../../utils/Arrays.sol";
import {IERC1155Errors} from "../../interfaces/draft-IERC6093.sol";

/**
 * @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
 */
abstract contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI, IERC1155Errors {
    using Arrays for uint256[];
    using Arrays for address[];

    mapping(uint256 id => mapping(address account => uint256)) private _balances;

    mapping(address account => mapping(address operator => 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 /* id */) public view virtual returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     */
    function balanceOf(address account, uint256 id) public view virtual returns (uint256) {
        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 returns (uint256[] memory) {
        if (accounts.length != ids.length) {
            revert ERC1155InvalidArrayLength(ids.length, accounts.length);
        }

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

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

        return batchBalances;
    }

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 id, uint256 value, bytes memory data) public virtual {
        address sender = _msgSender();
        if (from != sender && !isApprovedForAll(from, sender)) {
            revert ERC1155MissingApprovalForAll(sender, from);
        }
        _safeTransferFrom(from, to, id, value, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory values,
        bytes memory data
    ) public virtual {
        address sender = _msgSender();
        if (from != sender && !isApprovedForAll(from, sender)) {
            revert ERC1155MissingApprovalForAll(sender, from);
        }
        _safeBatchTransferFrom(from, to, ids, values, data);
    }

    /**
     * @dev Transfers a `value` amount of tokens of type `id` from `from` to `to`. Will mint (or burn) if `from`
     * (or `to`) is the zero address.
     *
     * Emits a {TransferSingle} event if the arrays contain one element, and {TransferBatch} otherwise.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement either {IERC1155Receiver-onERC1155Received}
     *   or {IERC1155Receiver-onERC1155BatchReceived} and return the acceptance magic value.
     * - `ids` and `values` must have the same length.
     *
     * NOTE: The ERC-1155 acceptance check is not performed in this function. See {_updateWithAcceptanceCheck} instead.
     */
    function _update(address from, address to, uint256[] memory ids, uint256[] memory values) internal virtual {
        if (ids.length != values.length) {
            revert ERC1155InvalidArrayLength(ids.length, values.length);
        }

        address operator = _msgSender();

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids.unsafeMemoryAccess(i);
            uint256 value = values.unsafeMemoryAccess(i);

            if (from != address(0)) {
                uint256 fromBalance = _balances[id][from];
                if (fromBalance < value) {
                    revert ERC1155InsufficientBalance(from, fromBalance, value, id);
                }
                unchecked {
                    // Overflow not possible: value <= fromBalance
                    _balances[id][from] = fromBalance - value;
                }
            }

            if (to != address(0)) {
                _balances[id][to] += value;
            }
        }

        if (ids.length == 1) {
            uint256 id = ids.unsafeMemoryAccess(0);
            uint256 value = values.unsafeMemoryAccess(0);
            emit TransferSingle(operator, from, to, id, value);
        } else {
            emit TransferBatch(operator, from, to, ids, values);
        }
    }

    /**
     * @dev Version of {_update} that performs the token acceptance check by calling
     * {IERC1155Receiver-onERC1155Received} or {IERC1155Receiver-onERC1155BatchReceived} on the receiver address if it
     * contains code (eg. is a smart contract at the moment of execution).
     *
     * IMPORTANT: Overriding this function is discouraged because it poses a reentrancy risk from the receiver. So any
     * update to the contract state after this function would break the check-effect-interaction pattern. Consider
     * overriding {_update} instead.
     */
    function _updateWithAcceptanceCheck(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory values,
        bytes memory data
    ) internal virtual {
        _update(from, to, ids, values);
        if (to != address(0)) {
            address operator = _msgSender();
            if (ids.length == 1) {
                uint256 id = ids.unsafeMemoryAccess(0);
                uint256 value = values.unsafeMemoryAccess(0);
                _doSafeTransferAcceptanceCheck(operator, from, to, id, value, data);
            } else {
                _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, values, data);
            }
        }
    }

    /**
     * @dev Transfers a `value` 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 `value` 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 value, bytes memory data) internal {
        if (to == address(0)) {
            revert ERC1155InvalidReceiver(address(0));
        }
        if (from == address(0)) {
            revert ERC1155InvalidSender(address(0));
        }
        (uint256[] memory ids, uint256[] memory values) = _asSingletonArrays(id, value);
        _updateWithAcceptanceCheck(from, to, ids, values, 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.
     * - `ids` and `values` must have the same length.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory values,
        bytes memory data
    ) internal {
        if (to == address(0)) {
            revert ERC1155InvalidReceiver(address(0));
        }
        if (from == address(0)) {
            revert ERC1155InvalidSender(address(0));
        }
        _updateWithAcceptanceCheck(from, to, ids, values, 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 values 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 a `value` amount of tokens of 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 value, bytes memory data) internal {
        if (to == address(0)) {
            revert ERC1155InvalidReceiver(address(0));
        }
        (uint256[] memory ids, uint256[] memory values) = _asSingletonArrays(id, value);
        _updateWithAcceptanceCheck(address(0), to, ids, values, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `values` must have the same length.
     * - `to` cannot be the zero address.
     * - 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 values, bytes memory data) internal {
        if (to == address(0)) {
            revert ERC1155InvalidReceiver(address(0));
        }
        _updateWithAcceptanceCheck(address(0), to, ids, values, data);
    }

    /**
     * @dev Destroys a `value` amount of tokens of type `id` from `from`
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `value` amount of tokens of type `id`.
     */
    function _burn(address from, uint256 id, uint256 value) internal {
        if (from == address(0)) {
            revert ERC1155InvalidSender(address(0));
        }
        (uint256[] memory ids, uint256[] memory values) = _asSingletonArrays(id, value);
        _updateWithAcceptanceCheck(from, address(0), ids, values, "");
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `value` amount of tokens of type `id`.
     * - `ids` and `values` must have the same length.
     */
    function _burnBatch(address from, uint256[] memory ids, uint256[] memory values) internal {
        if (from == address(0)) {
            revert ERC1155InvalidSender(address(0));
        }
        _updateWithAcceptanceCheck(from, address(0), ids, values, "");
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the zero address.
     */
    function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {
        if (operator == address(0)) {
            revert ERC1155InvalidOperator(address(0));
        }
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Performs an acceptance check by calling {IERC1155-onERC1155Received} on the `to` address
     * if it contains code at the moment of execution.
     */
    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 value,
        bytes memory data
    ) private {
        if (to.code.length > 0) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, value, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    // Tokens rejected
                    revert ERC1155InvalidReceiver(to);
                }
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    // non-ERC1155Receiver implementer
                    revert ERC1155InvalidReceiver(to);
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        }
    }

    /**
     * @dev Performs a batch acceptance check by calling {IERC1155-onERC1155BatchReceived} on the `to` address
     * if it contains code at the moment of execution.
     */
    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory values,
        bytes memory data
    ) private {
        if (to.code.length > 0) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, values, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    // Tokens rejected
                    revert ERC1155InvalidReceiver(to);
                }
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    // non-ERC1155Receiver implementer
                    revert ERC1155InvalidReceiver(to);
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        }
    }

    /**
     * @dev Creates an array in memory with only one value for each of the elements provided.
     */
    function _asSingletonArrays(
        uint256 element1,
        uint256 element2
    ) private pure returns (uint256[] memory array1, uint256[] memory array2) {
        /// @solidity memory-safe-assembly
        assembly {
            // Load the free memory pointer
            array1 := mload(0x40)
            // Set array length to 1
            mstore(array1, 1)
            // Store the single element at the next word after the length (where content starts)
            mstore(add(array1, 0x20), element1)

            // Repeat for next array locating it right after the first array
            array2 := add(array1, 0x40)
            mstore(array2, 1)
            mstore(add(array2, 0x20), element2)

            // Update the free memory pointer by pointing after the second array
            mstore(0x40, add(array2, 0x40))
        }
    }
}

File 5 of 16 : ERC1155Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC1155/extensions/ERC1155Burnable.sol)

pragma solidity ^0.8.20;

import {ERC1155} from "../ERC1155.sol";

/**
 * @dev Extension of {ERC1155} that allows token holders to destroy both their
 * own tokens and those that they have been approved to use.
 */
abstract contract ERC1155Burnable is ERC1155 {
    function burn(address account, uint256 id, uint256 value) public virtual {
        if (account != _msgSender() && !isApprovedForAll(account, _msgSender())) {
            revert ERC1155MissingApprovalForAll(_msgSender(), account);
        }

        _burn(account, id, value);
    }

    function burnBatch(address account, uint256[] memory ids, uint256[] memory values) public virtual {
        if (account != _msgSender() && !isApprovedForAll(account, _msgSender())) {
            revert ERC1155MissingApprovalForAll(_msgSender(), account);
        }

        _burnBatch(account, ids, values);
    }
}

File 6 of 16 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.20;

import {IERC1155} from "../IERC1155.sol";

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 */
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 7 of 16 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.20;

import {IERC165} from "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` amount of tokens of 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 value 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 a `value` amount of tokens of type `id` from `from` to `to`.
     *
     * WARNING: This function can potentially allow a reentrancy attack when transferring tokens
     * to an untrusted contract, when invoking {onERC1155Received} on the receiver.
     * Ensure to follow the checks-effects-interactions pattern and consider employing
     * reentrancy guards when interacting with untrusted contracts.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `value` 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 value, bytes calldata data) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * WARNING: This function can potentially allow a reentrancy attack when transferring tokens
     * to an untrusted contract, when invoking {onERC1155BatchReceived} on the receiver.
     * Ensure to follow the checks-effects-interactions pattern and consider employing
     * reentrancy guards when interacting with untrusted contracts.
     *
     * Emits either a {TransferSingle} or a {TransferBatch} event, depending on the length of the array arguments.
     *
     * Requirements:
     *
     * - `ids` and `values` 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 values,
        bytes calldata data
    ) external;
}

File 8 of 16 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.20;

import {IERC165} from "../../utils/introspection/IERC165.sol";

/**
 * @dev Interface that must be implemented by smart contracts in order to receive
 * ERC-1155 token transfers.
 */
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 9 of 16 : Arrays.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Arrays.sol)

pragma solidity ^0.8.20;

import {StorageSlot} from "./StorageSlot.sol";
import {Math} from "./math/Math.sol";

/**
 * @dev Collection of functions related to array types.
 */
library Arrays {
    using StorageSlot for bytes32;

    /**
     * @dev Searches a sorted `array` and returns the first index that contains
     * a value greater or equal to `element`. If no such index exists (i.e. all
     * values in the array are strictly less than `element`), the array length is
     * returned. Time complexity O(log n).
     *
     * `array` is expected to be sorted in ascending order, and to contain no
     * repeated elements.
     */
    function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) {
        uint256 low = 0;
        uint256 high = array.length;

        if (high == 0) {
            return 0;
        }

        while (low < high) {
            uint256 mid = Math.average(low, high);

            // Note that mid will always be strictly less than high (i.e. it will be a valid array index)
            // because Math.average rounds towards zero (it does integer division with truncation).
            if (unsafeAccess(array, mid).value > element) {
                high = mid;
            } else {
                low = mid + 1;
            }
        }

        // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound.
        if (low > 0 && unsafeAccess(array, low - 1).value == element) {
            return low - 1;
        } else {
            return low;
        }
    }

    /**
     * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
     *
     * WARNING: Only use if you are certain `pos` is lower than the array length.
     */
    function unsafeAccess(address[] storage arr, uint256 pos) internal pure returns (StorageSlot.AddressSlot storage) {
        bytes32 slot;
        // We use assembly to calculate the storage slot of the element at index `pos` of the dynamic array `arr`
        // following https://docs.soliditylang.org/en/v0.8.20/internals/layout_in_storage.html#mappings-and-dynamic-arrays.

        /// @solidity memory-safe-assembly
        assembly {
            mstore(0, arr.slot)
            slot := add(keccak256(0, 0x20), pos)
        }
        return slot.getAddressSlot();
    }

    /**
     * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
     *
     * WARNING: Only use if you are certain `pos` is lower than the array length.
     */
    function unsafeAccess(bytes32[] storage arr, uint256 pos) internal pure returns (StorageSlot.Bytes32Slot storage) {
        bytes32 slot;
        // We use assembly to calculate the storage slot of the element at index `pos` of the dynamic array `arr`
        // following https://docs.soliditylang.org/en/v0.8.20/internals/layout_in_storage.html#mappings-and-dynamic-arrays.

        /// @solidity memory-safe-assembly
        assembly {
            mstore(0, arr.slot)
            slot := add(keccak256(0, 0x20), pos)
        }
        return slot.getBytes32Slot();
    }

    /**
     * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
     *
     * WARNING: Only use if you are certain `pos` is lower than the array length.
     */
    function unsafeAccess(uint256[] storage arr, uint256 pos) internal pure returns (StorageSlot.Uint256Slot storage) {
        bytes32 slot;
        // We use assembly to calculate the storage slot of the element at index `pos` of the dynamic array `arr`
        // following https://docs.soliditylang.org/en/v0.8.20/internals/layout_in_storage.html#mappings-and-dynamic-arrays.

        /// @solidity memory-safe-assembly
        assembly {
            mstore(0, arr.slot)
            slot := add(keccak256(0, 0x20), pos)
        }
        return slot.getUint256Slot();
    }

    /**
     * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
     *
     * WARNING: Only use if you are certain `pos` is lower than the array length.
     */
    function unsafeMemoryAccess(uint256[] memory arr, uint256 pos) internal pure returns (uint256 res) {
        assembly {
            res := mload(add(add(arr, 0x20), mul(pos, 0x20)))
        }
    }

    /**
     * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
     *
     * WARNING: Only use if you are certain `pos` is lower than the array length.
     */
    function unsafeMemoryAccess(address[] memory arr, uint256 pos) internal pure returns (address res) {
        assembly {
            res := mload(add(add(arr, 0x20), mul(pos, 0x20)))
        }
    }
}

File 10 of 16 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 11 of 16 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol)

pragma solidity ^0.8.20;

import {IERC165} from "./IERC165.sol";

/**
 * @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);
 * }
 * ```
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 12 of 16 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)

pragma solidity ^0.8.20;

/**
 * @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 13 of 16 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Muldiv operation overflow.
     */
    error MathOverflowedMulDiv();

    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

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

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

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

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }

        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

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

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

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            if (denominator <= prod1) {
                revert MathOverflowedMulDiv();
            }

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

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

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

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

            uint256 twos = denominator & (0 - denominator);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}

File 14 of 16 : SignedMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.20;

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

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

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

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

File 15 of 16 : StorageSlot.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/StorageSlot.sol)
// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.

pragma solidity ^0.8.20;

/**
 * @dev Library for reading and writing primitive types to specific storage slots.
 *
 * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
 * This library helps with reading and writing to such slots without the need for inline assembly.
 *
 * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
 *
 * Example usage to set ERC1967 implementation slot:
 * ```solidity
 * contract ERC1967 {
 *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
 *
 *     function _getImplementation() internal view returns (address) {
 *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
 *     }
 *
 *     function _setImplementation(address newImplementation) internal {
 *         require(newImplementation.code.length > 0);
 *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
 *     }
 * }
 * ```
 */
library StorageSlot {
    struct AddressSlot {
        address value;
    }

    struct BooleanSlot {
        bool value;
    }

    struct Bytes32Slot {
        bytes32 value;
    }

    struct Uint256Slot {
        uint256 value;
    }

    struct StringSlot {
        string value;
    }

    struct BytesSlot {
        bytes value;
    }

    /**
     * @dev Returns an `AddressSlot` with member `value` located at `slot`.
     */
    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BooleanSlot` with member `value` located at `slot`.
     */
    function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
     */
    function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Uint256Slot` with member `value` located at `slot`.
     */
    function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `StringSlot` with member `value` located at `slot`.
     */
    function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `StringSlot` representation of the string storage pointer `store`.
     */
    function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := store.slot
        }
    }

    /**
     * @dev Returns an `BytesSlot` with member `value` located at `slot`.
     */
    function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.
     */
    function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := store.slot
        }
    }
}

File 16 of 16 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)

pragma solidity ^0.8.20;

import {Math} from "./math/Math.sol";
import {SignedMath} from "./math/SignedMath.sol";

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

    /**
     * @dev The `value` string doesn't fit in the specified `length`.
     */
    error StringsInsufficientHexLength(uint256 value, uint256 length);

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

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

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        uint256 localValue = value;
        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_DIGITS[localValue & 0xf];
            localValue >>= 4;
        }
        if (localValue != 0) {
            revert StringsInsufficientHexLength(value, length);
        }
        return string(buffer);
    }

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC1155InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC1155InvalidApprover","type":"error"},{"inputs":[{"internalType":"uint256","name":"idsLength","type":"uint256"},{"internalType":"uint256","name":"valuesLength","type":"uint256"}],"name":"ERC1155InvalidArrayLength","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC1155InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC1155InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC1155InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC1155MissingApprovalForAll","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":"BCARBON_RHO001","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BCARBON_RHO002","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BCARBON_RHO003","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BCARBON_RHO004","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BCARBON_RHO005","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BCARBON_RHO006","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BCARBON_RHO007","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BCARBON_RHO008","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BCARBON_RHO009","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BCARBON_RHO010","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BCARBON_RHO011","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BCARBON_RHO012","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BCARBON_RHO013","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BCARBON_RHO014","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BCARBON_RHO015","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BCARBON_RHO_BUFFER","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":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"string","name":"burn_metadata","type":"string"}],"name":"burn_plus","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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"string","name":"mint_metadata","type":"string"}],"name":"mint_plus","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"values","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":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"string","name":"transfer_metadata","type":"string"}],"name":"transfer_plus","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040526040518060400160405280601c81526020017f4368616e676520436f6465202d2d2042436172626f6e207c20434f3200000000815250600490816200004a919062000502565b506040518060400160405280600981526020017f43432d42432d434f3200000000000000000000000000000000000000000000008152506005908162000091919062000502565b50604051806080016040528060438152602001620037256043913960069081620000bc919062000502565b50348015620000ca57600080fd5b50604051806080016040528060438152602001620037256043913933600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200015b5760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200015291906200062e565b60405180910390fd5b6200016c81620001af60201b60201c565b506200017e816200027360201b60201c565b50620001a960405180608001604052806043815260200162003725604391396200027360201b60201c565b6200064b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b806003908162000284919062000502565b5050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200030a57607f821691505b60208210810362000320576200031f620002c2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200038a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200034b565b6200039686836200034b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003e3620003dd620003d784620003ae565b620003b8565b620003ae565b9050919050565b6000819050919050565b620003ff83620003c2565b620004176200040e82620003ea565b84845462000358565b825550505050565b600090565b6200042e6200041f565b6200043b818484620003f4565b505050565b5b8181101562000463576200045760008262000424565b60018101905062000441565b5050565b601f821115620004b2576200047c8162000326565b62000487846200033b565b8101602085101562000497578190505b620004af620004a6856200033b565b83018262000440565b50505b505050565b600082821c905092915050565b6000620004d760001984600802620004b7565b1980831691505092915050565b6000620004f28383620004c4565b9150826002028217905092915050565b6200050d8262000288565b67ffffffffffffffff81111562000529576200052862000293565b5b620005358254620002f1565b6200054282828562000467565b600060209050601f8311600181146200057a576000841562000565578287015190505b620005718582620004e4565b865550620005e1565b601f1984166200058a8662000326565b60005b82811015620005b4578489015182556001820191506020850194506020810190506200058d565b86831015620005d45784890151620005d0601f891682620004c4565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200061682620005e9565b9050919050565b620006288162000609565b82525050565b60006020820190506200064560008301846200061d565b92915050565b6130ca806200065b6000396000f3fe6080604052600436106101f85760003560e01c806371060ded1161010d578063b63818c7116100a0578063dde061021161006f578063dde06102146106ea578063e985e9c514610715578063f242432a14610752578063f2fde38b1461077b578063f5298aca146107a4576101f8565b8063b63818c71461063e578063b856316114610669578063c489aa8414610694578063d8e374d9146106bf576101f8565b806395ed2b51116100dc57806395ed2b5114610594578063963c9236146105bf578063a22cb465146105ea578063a56a254c14610613576101f8565b806371060ded146104fc578063715018a6146105275780638da5cb5b1461053e57806395d89b4114610569576101f8565b80631a3a491511610190578063320d6ec91161015f578063320d6ec9146104265780633676cddd1461044f5780634e1273f41461047a5780636b20c454146104b75780636c67c449146104e0576101f8565b80631a3a49151461038b5780632cfb0ab5146103a75780632d1aa51f146103d25780632eb2c2d6146103fd576101f8565b80630e89341c116101cc5780630e89341c146102cd578063186b77e41461030a578063196df1591461033557806319bf80b414610360576101f8565b8062fdd58e146101fd57806301ffc9a71461023a57806306fdde03146102775780630b017943146102a2575b600080fd5b34801561020957600080fd5b50610224600480360381019061021f91906120d0565b6107cd565b604051610231919061211f565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612192565b610828565b60405161026e91906121da565b60405180910390f35b34801561028357600080fd5b5061028c61090a565b6040516102999190612285565b60405180910390f35b3480156102ae57600080fd5b506102b7610998565b6040516102c4919061211f565b60405180910390f35b3480156102d957600080fd5b506102f460048036038101906102ef91906122a7565b61099d565b6040516103019190612285565b60405180910390f35b34801561031657600080fd5b5061031f610a31565b60405161032c919061211f565b60405180910390f35b34801561034157600080fd5b5061034a610a36565b604051610357919061211f565b60405180910390f35b34801561036c57600080fd5b50610375610a3b565b604051610382919061211f565b60405180910390f35b6103a560048036038101906103a09190612469565b610a40565b005b3480156103b357600080fd5b506103bc610aa0565b6040516103c9919061211f565b60405180910390f35b3480156103de57600080fd5b506103e7610aa5565b6040516103f4919061211f565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f9190612683565b610aaa565b005b34801561043257600080fd5b5061044d60048036038101906104489190612752565b610b52565b005b34801561045b57600080fd5b50610464610b6b565b604051610471919061211f565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c9190612898565b610b70565b6040516104ae91906129ce565b60405180910390f35b3480156104c357600080fd5b506104de60048036038101906104d991906129f0565b610c7f565b005b6104fa60048036038101906104f59190612a7b565b610d2b565b005b34801561050857600080fd5b50610511610d85565b60405161051e919061211f565b60405180910390f35b34801561053357600080fd5b5061053c610d8a565b005b34801561054a57600080fd5b50610553610d9e565b6040516105609190612b55565b60405180910390f35b34801561057557600080fd5b5061057e610dc7565b60405161058b9190612285565b60405180910390f35b3480156105a057600080fd5b506105a9610e55565b6040516105b6919061211f565b60405180910390f35b3480156105cb57600080fd5b506105d4610e5a565b6040516105e1919061211f565b60405180910390f35b3480156105f657600080fd5b50610611600480360381019061060c9190612b9c565b610e5f565b005b34801561061f57600080fd5b50610628610e75565b604051610635919061211f565b60405180910390f35b34801561064a57600080fd5b50610653610e7a565b604051610660919061211f565b60405180910390f35b34801561067557600080fd5b5061067e610e7f565b60405161068b919061211f565b60405180910390f35b3480156106a057600080fd5b506106a9610e84565b6040516106b6919061211f565b60405180910390f35b3480156106cb57600080fd5b506106d4610e89565b6040516106e1919061211f565b60405180910390f35b3480156106f657600080fd5b506106ff610e8e565b60405161070c919061211f565b60405180910390f35b34801561072157600080fd5b5061073c60048036038101906107379190612bdc565b610e93565b60405161074991906121da565b60405180910390f35b34801561075e57600080fd5b5061077960048036038101906107749190612c1c565b610f27565b005b34801561078757600080fd5b506107a2600480360381019061079d9190612cb3565b610fcf565b005b3480156107b057600080fd5b506107cb60048036038101906107c69190612ce0565b611055565b005b60006001600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f357507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610903575061090282611101565b5b9050919050565b6004805461091790612d62565b80601f016020809104026020016040519081016040528092919081815260200182805461094390612d62565b80156109905780601f1061096557610100808354040283529160200191610990565b820191906000526020600020905b81548152906001019060200180831161097357829003601f168201915b505050505081565b600881565b6060600380546109ac90612d62565b80601f01602080910402602001604051908101604052809291908181526020018280546109d890612d62565b8015610a255780601f106109fa57610100808354040283529160200191610a25565b820191906000526020600020905b815481529060010190602001808311610a0857829003601f168201915b50505050509050919050565b600481565b600c81565b600281565b610a4861116b565b610a9886868686868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506111f2565b505050505050565b600b81565b600981565b6000610ab461128b565b90508073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614158015610af95750610af78682610e93565b155b15610b3d5780866040517fe237d922000000000000000000000000000000000000000000000000000000008152600401610b34929190612d93565b60405180910390fd5b610b4a8686868686611293565b505050505050565b610b5a61116b565b610b6584848461138b565b50505050565b600181565b60608151835114610bbc57815183516040517f5b059991000000000000000000000000000000000000000000000000000000008152600401610bb3929190612dbc565b60405180910390fd5b6000835167ffffffffffffffff811115610bd957610bd861233e565b5b604051908082528060200260200182016040528015610c075781602001602082028036833780820191505090505b50905060005b8451811015610c7457610c44610c2c828761143290919063ffffffff16565b610c3f838761144690919063ffffffff16565b6107cd565b828281518110610c5757610c56612de5565b5b60200260200101818152505080610c6d90612e43565b9050610c0d565b508091505092915050565b610c8761128b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610cd05750610cce83610cc961128b565b610e93565b155b15610d1b57610cdd61128b565b836040517fe237d922000000000000000000000000000000000000000000000000000000008152600401610d12929190612d93565b60405180910390fd5b610d2683838361145a565b505050565b610d7c8787878787878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050610f27565b50505050505050565b600a81565b610d9261116b565b610d9c60006114ee565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60058054610dd490612d62565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0090612d62565b8015610e4d5780601f10610e2257610100808354040283529160200191610e4d565b820191906000526020600020905b815481529060010190602001808311610e3057829003601f168201915b505050505081565b600581565b600781565b610e71610e6a61128b565b83836115b2565b5050565b600681565b600d81565b600081565b600f81565b600381565b600e81565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000610f3161128b565b90508073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614158015610f765750610f748682610e93565b155b15610fba5780866040517fe237d922000000000000000000000000000000000000000000000000000000008152600401610fb1929190612d93565b60405180910390fd5b610fc78686868686611722565b505050505050565b610fd761116b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110495760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016110409190612b55565b60405180910390fd5b611052816114ee565b50565b61105d61128b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156110a657506110a48361109f61128b565b610e93565b155b156110f1576110b361128b565b836040517fe237d9220000000000000000000000000000000000000000000000000000000081526004016110e8929190612d93565b60405180910390fd5b6110fc83838361138b565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61117361128b565b73ffffffffffffffffffffffffffffffffffffffff16611191610d9e565b73ffffffffffffffffffffffffffffffffffffffff16146111f0576111b461128b565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016111e79190612b55565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036112645760006040517f57f447ce00000000000000000000000000000000000000000000000000000000815260040161125b9190612b55565b60405180910390fd5b600080611271858561182d565b9150915061128360008784848761185d565b505050505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036113055760006040517f57f447ce0000000000000000000000000000000000000000000000000000000081526004016112fc9190612b55565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036113775760006040517f01a8351400000000000000000000000000000000000000000000000000000000815260040161136e9190612b55565b60405180910390fd5b611384858585858561185d565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113fd5760006040517f01a835140000000000000000000000000000000000000000000000000000000081526004016113f49190612b55565b60405180910390fd5b60008061140a848461182d565b9150915061142b85600084846040518060200160405280600081525061185d565b5050505050565b600060208202602084010151905092915050565b600060208202602084010151905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114cc5760006040517f01a835140000000000000000000000000000000000000000000000000000000081526004016114c39190612b55565b60405180910390fd5b6114e983600084846040518060200160405280600081525061185d565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116245760006040517fced3e10000000000000000000000000000000000000000000000000000000000815260040161161b9190612b55565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161171591906121da565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036117945760006040517f57f447ce00000000000000000000000000000000000000000000000000000000815260040161178b9190612b55565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036118065760006040517f01a835140000000000000000000000000000000000000000000000000000000081526004016117fd9190612b55565b60405180910390fd5b600080611813858561182d565b91509150611824878784848761185d565b50505050505050565b60608060405191506001825283602083015260408201905060018152826020820152604081016040529250929050565b6118698585858561190f565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146119085760006118a761128b565b905060018451036118f75760006118c860008661144690919063ffffffff16565b905060006118e060008661144690919063ffffffff16565b90506118f0838989858589611cc0565b5050611906565b611905818787878787611e74565b5b505b5050505050565b805182511461195957815181516040517f5b059991000000000000000000000000000000000000000000000000000000008152600401611950929190612dbc565b60405180910390fd5b600061196361128b565b905060005b8351811015611b7b576000611986828661144690919063ffffffff16565b9050600061199d838661144690919063ffffffff16565b9050600073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614611acc5760006001600084815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a7357888183856040517f03dee4c5000000000000000000000000000000000000000000000000000000008152600401611a6a9493929190612e8b565b60405180910390fd5b8181036001600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614611b6857806001600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b609190612ed0565b925050819055505b505080611b7490612e43565b9050611968565b506001835103611c3a576000611b9b60008561144690919063ffffffff16565b90506000611bb360008561144690919063ffffffff16565b90508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628585604051611c2b929190612dbc565b60405180910390a45050611cb9565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611cb0929190612f04565b60405180910390a45b5050505050565b60008473ffffffffffffffffffffffffffffffffffffffff163b1115611e6c578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611d21959493929190612f90565b6020604051808303816000875af1925050508015611d5d57506040513d601f19601f82011682018060405250810190611d5a9190612fff565b60015b611de1573d8060008114611d8d576040519150601f19603f3d011682016040523d82523d6000602084013e611d92565b606091505b506000815103611dd957846040517f57f447ce000000000000000000000000000000000000000000000000000000008152600401611dd09190612b55565b60405180910390fd5b805181602001fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611e6a57846040517f57f447ce000000000000000000000000000000000000000000000000000000008152600401611e619190612b55565b60405180910390fd5b505b505050505050565b60008473ffffffffffffffffffffffffffffffffffffffff163b1115612020578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611ed595949392919061302c565b6020604051808303816000875af1925050508015611f1157506040513d601f19601f82011682018060405250810190611f0e9190612fff565b60015b611f95573d8060008114611f41576040519150601f19603f3d011682016040523d82523d6000602084013e611f46565b606091505b506000815103611f8d57846040517f57f447ce000000000000000000000000000000000000000000000000000000008152600401611f849190612b55565b60405180910390fd5b805181602001fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461201e57846040517f57f447ce0000000000000000000000000000000000000000000000000000000081526004016120159190612b55565b60405180910390fd5b505b505050505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006120678261203c565b9050919050565b6120778161205c565b811461208257600080fd5b50565b6000813590506120948161206e565b92915050565b6000819050919050565b6120ad8161209a565b81146120b857600080fd5b50565b6000813590506120ca816120a4565b92915050565b600080604083850312156120e7576120e6612032565b5b60006120f585828601612085565b9250506020612106858286016120bb565b9150509250929050565b6121198161209a565b82525050565b60006020820190506121346000830184612110565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61216f8161213a565b811461217a57600080fd5b50565b60008135905061218c81612166565b92915050565b6000602082840312156121a8576121a7612032565b5b60006121b68482850161217d565b91505092915050565b60008115159050919050565b6121d4816121bf565b82525050565b60006020820190506121ef60008301846121cb565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561222f578082015181840152602081019050612214565b60008484015250505050565b6000601f19601f8301169050919050565b6000612257826121f5565b6122618185612200565b9350612271818560208601612211565b61227a8161223b565b840191505092915050565b6000602082019050818103600083015261229f818461224c565b905092915050565b6000602082840312156122bd576122bc612032565b5b60006122cb848285016120bb565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126122f9576122f86122d4565b5b8235905067ffffffffffffffff811115612316576123156122d9565b5b602083019150836001820283011115612332576123316122de565b5b9250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6123768261223b565b810181811067ffffffffffffffff821117156123955761239461233e565b5b80604052505050565b60006123a8612028565b90506123b4828261236d565b919050565b600067ffffffffffffffff8211156123d4576123d361233e565b5b6123dd8261223b565b9050602081019050919050565b82818337600083830152505050565b600061240c612407846123b9565b61239e565b90508281526020810184848401111561242857612427612339565b5b6124338482856123ea565b509392505050565b600082601f8301126124505761244f6122d4565b5b81356124608482602086016123f9565b91505092915050565b60008060008060008060a0878903121561248657612485612032565b5b600061249489828a01612085565b96505060206124a589828a016120bb565b95505060406124b689828a016120bb565b945050606087013567ffffffffffffffff8111156124d7576124d6612037565b5b6124e389828a016122e3565b9350935050608087013567ffffffffffffffff81111561250657612505612037565b5b61251289828a0161243b565b9150509295509295509295565b600067ffffffffffffffff82111561253a5761253961233e565b5b602082029050602081019050919050565b600061255e6125598461251f565b61239e565b90508083825260208201905060208402830185811115612581576125806122de565b5b835b818110156125aa578061259688826120bb565b845260208401935050602081019050612583565b5050509392505050565b600082601f8301126125c9576125c86122d4565b5b81356125d984826020860161254b565b91505092915050565b600067ffffffffffffffff8211156125fd576125fc61233e565b5b6126068261223b565b9050602081019050919050565b6000612626612621846125e2565b61239e565b90508281526020810184848401111561264257612641612339565b5b61264d8482856123ea565b509392505050565b600082601f83011261266a576126696122d4565b5b813561267a848260208601612613565b91505092915050565b600080600080600060a0868803121561269f5761269e612032565b5b60006126ad88828901612085565b95505060206126be88828901612085565b945050604086013567ffffffffffffffff8111156126df576126de612037565b5b6126eb888289016125b4565b935050606086013567ffffffffffffffff81111561270c5761270b612037565b5b612718888289016125b4565b925050608086013567ffffffffffffffff81111561273957612738612037565b5b61274588828901612655565b9150509295509295909350565b6000806000806080858703121561276c5761276b612032565b5b600061277a87828801612085565b945050602061278b878288016120bb565b935050604061279c878288016120bb565b925050606085013567ffffffffffffffff8111156127bd576127bc612037565b5b6127c98782880161243b565b91505092959194509250565b600067ffffffffffffffff8211156127f0576127ef61233e565b5b602082029050602081019050919050565b600061281461280f846127d5565b61239e565b90508083825260208201905060208402830185811115612837576128366122de565b5b835b81811015612860578061284c8882612085565b845260208401935050602081019050612839565b5050509392505050565b600082601f83011261287f5761287e6122d4565b5b813561288f848260208601612801565b91505092915050565b600080604083850312156128af576128ae612032565b5b600083013567ffffffffffffffff8111156128cd576128cc612037565b5b6128d98582860161286a565b925050602083013567ffffffffffffffff8111156128fa576128f9612037565b5b612906858286016125b4565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6129458161209a565b82525050565b6000612957838361293c565b60208301905092915050565b6000602082019050919050565b600061297b82612910565b612985818561291b565b93506129908361292c565b8060005b838110156129c15781516129a8888261294b565b97506129b383612963565b925050600181019050612994565b5085935050505092915050565b600060208201905081810360008301526129e88184612970565b905092915050565b600080600060608486031215612a0957612a08612032565b5b6000612a1786828701612085565b935050602084013567ffffffffffffffff811115612a3857612a37612037565b5b612a44868287016125b4565b925050604084013567ffffffffffffffff811115612a6557612a64612037565b5b612a71868287016125b4565b9150509250925092565b600080600080600080600060c0888a031215612a9a57612a99612032565b5b6000612aa88a828b01612085565b9750506020612ab98a828b01612085565b9650506040612aca8a828b016120bb565b9550506060612adb8a828b016120bb565b945050608088013567ffffffffffffffff811115612afc57612afb612037565b5b612b088a828b016122e3565b935093505060a088013567ffffffffffffffff811115612b2b57612b2a612037565b5b612b378a828b0161243b565b91505092959891949750929550565b612b4f8161205c565b82525050565b6000602082019050612b6a6000830184612b46565b92915050565b612b79816121bf565b8114612b8457600080fd5b50565b600081359050612b9681612b70565b92915050565b60008060408385031215612bb357612bb2612032565b5b6000612bc185828601612085565b9250506020612bd285828601612b87565b9150509250929050565b60008060408385031215612bf357612bf2612032565b5b6000612c0185828601612085565b9250506020612c1285828601612085565b9150509250929050565b600080600080600060a08688031215612c3857612c37612032565b5b6000612c4688828901612085565b9550506020612c5788828901612085565b9450506040612c68888289016120bb565b9350506060612c79888289016120bb565b925050608086013567ffffffffffffffff811115612c9a57612c99612037565b5b612ca688828901612655565b9150509295509295909350565b600060208284031215612cc957612cc8612032565b5b6000612cd784828501612085565b91505092915050565b600080600060608486031215612cf957612cf8612032565b5b6000612d0786828701612085565b9350506020612d18868287016120bb565b9250506040612d29868287016120bb565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612d7a57607f821691505b602082108103612d8d57612d8c612d33565b5b50919050565b6000604082019050612da86000830185612b46565b612db56020830184612b46565b9392505050565b6000604082019050612dd16000830185612110565b612dde6020830184612110565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e4e8261209a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612e8057612e7f612e14565b5b600182019050919050565b6000608082019050612ea06000830187612b46565b612ead6020830186612110565b612eba6040830185612110565b612ec76060830184612110565b95945050505050565b6000612edb8261209a565b9150612ee68361209a565b9250828201905080821115612efe57612efd612e14565b5b92915050565b60006040820190508181036000830152612f1e8185612970565b90508181036020830152612f328184612970565b90509392505050565b600081519050919050565b600082825260208201905092915050565b6000612f6282612f3b565b612f6c8185612f46565b9350612f7c818560208601612211565b612f858161223b565b840191505092915050565b600060a082019050612fa56000830188612b46565b612fb26020830187612b46565b612fbf6040830186612110565b612fcc6060830185612110565b8181036080830152612fde8184612f57565b90509695505050505050565b600081519050612ff981612166565b92915050565b60006020828403121561301557613014612032565b5b600061302384828501612fea565b91505092915050565b600060a0820190506130416000830188612b46565b61304e6020830187612b46565b81810360408301526130608186612970565b905081810360608301526130748185612970565b905081810360808301526130888184612f57565b9050969550505050505056fea2646970667358221220549c82bcf4a5beac5867cce2b910acf3008b7a78be48fa7deeffbd9fefe2939564736f6c6343000814003368747470733a2f2f62636172626f6e2e6368616e6765636f64652e696f2f6d6574686f646f6c6f676965732f736f696c2d636172626f6e2d6d6574686f646f6c6f6779

Deployed Bytecode

0x6080604052600436106101f85760003560e01c806371060ded1161010d578063b63818c7116100a0578063dde061021161006f578063dde06102146106ea578063e985e9c514610715578063f242432a14610752578063f2fde38b1461077b578063f5298aca146107a4576101f8565b8063b63818c71461063e578063b856316114610669578063c489aa8414610694578063d8e374d9146106bf576101f8565b806395ed2b51116100dc57806395ed2b5114610594578063963c9236146105bf578063a22cb465146105ea578063a56a254c14610613576101f8565b806371060ded146104fc578063715018a6146105275780638da5cb5b1461053e57806395d89b4114610569576101f8565b80631a3a491511610190578063320d6ec91161015f578063320d6ec9146104265780633676cddd1461044f5780634e1273f41461047a5780636b20c454146104b75780636c67c449146104e0576101f8565b80631a3a49151461038b5780632cfb0ab5146103a75780632d1aa51f146103d25780632eb2c2d6146103fd576101f8565b80630e89341c116101cc5780630e89341c146102cd578063186b77e41461030a578063196df1591461033557806319bf80b414610360576101f8565b8062fdd58e146101fd57806301ffc9a71461023a57806306fdde03146102775780630b017943146102a2575b600080fd5b34801561020957600080fd5b50610224600480360381019061021f91906120d0565b6107cd565b604051610231919061211f565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612192565b610828565b60405161026e91906121da565b60405180910390f35b34801561028357600080fd5b5061028c61090a565b6040516102999190612285565b60405180910390f35b3480156102ae57600080fd5b506102b7610998565b6040516102c4919061211f565b60405180910390f35b3480156102d957600080fd5b506102f460048036038101906102ef91906122a7565b61099d565b6040516103019190612285565b60405180910390f35b34801561031657600080fd5b5061031f610a31565b60405161032c919061211f565b60405180910390f35b34801561034157600080fd5b5061034a610a36565b604051610357919061211f565b60405180910390f35b34801561036c57600080fd5b50610375610a3b565b604051610382919061211f565b60405180910390f35b6103a560048036038101906103a09190612469565b610a40565b005b3480156103b357600080fd5b506103bc610aa0565b6040516103c9919061211f565b60405180910390f35b3480156103de57600080fd5b506103e7610aa5565b6040516103f4919061211f565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f9190612683565b610aaa565b005b34801561043257600080fd5b5061044d60048036038101906104489190612752565b610b52565b005b34801561045b57600080fd5b50610464610b6b565b604051610471919061211f565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c9190612898565b610b70565b6040516104ae91906129ce565b60405180910390f35b3480156104c357600080fd5b506104de60048036038101906104d991906129f0565b610c7f565b005b6104fa60048036038101906104f59190612a7b565b610d2b565b005b34801561050857600080fd5b50610511610d85565b60405161051e919061211f565b60405180910390f35b34801561053357600080fd5b5061053c610d8a565b005b34801561054a57600080fd5b50610553610d9e565b6040516105609190612b55565b60405180910390f35b34801561057557600080fd5b5061057e610dc7565b60405161058b9190612285565b60405180910390f35b3480156105a057600080fd5b506105a9610e55565b6040516105b6919061211f565b60405180910390f35b3480156105cb57600080fd5b506105d4610e5a565b6040516105e1919061211f565b60405180910390f35b3480156105f657600080fd5b50610611600480360381019061060c9190612b9c565b610e5f565b005b34801561061f57600080fd5b50610628610e75565b604051610635919061211f565b60405180910390f35b34801561064a57600080fd5b50610653610e7a565b604051610660919061211f565b60405180910390f35b34801561067557600080fd5b5061067e610e7f565b60405161068b919061211f565b60405180910390f35b3480156106a057600080fd5b506106a9610e84565b6040516106b6919061211f565b60405180910390f35b3480156106cb57600080fd5b506106d4610e89565b6040516106e1919061211f565b60405180910390f35b3480156106f657600080fd5b506106ff610e8e565b60405161070c919061211f565b60405180910390f35b34801561072157600080fd5b5061073c60048036038101906107379190612bdc565b610e93565b60405161074991906121da565b60405180910390f35b34801561075e57600080fd5b5061077960048036038101906107749190612c1c565b610f27565b005b34801561078757600080fd5b506107a2600480360381019061079d9190612cb3565b610fcf565b005b3480156107b057600080fd5b506107cb60048036038101906107c69190612ce0565b611055565b005b60006001600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f357507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610903575061090282611101565b5b9050919050565b6004805461091790612d62565b80601f016020809104026020016040519081016040528092919081815260200182805461094390612d62565b80156109905780601f1061096557610100808354040283529160200191610990565b820191906000526020600020905b81548152906001019060200180831161097357829003601f168201915b505050505081565b600881565b6060600380546109ac90612d62565b80601f01602080910402602001604051908101604052809291908181526020018280546109d890612d62565b8015610a255780601f106109fa57610100808354040283529160200191610a25565b820191906000526020600020905b815481529060010190602001808311610a0857829003601f168201915b50505050509050919050565b600481565b600c81565b600281565b610a4861116b565b610a9886868686868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506111f2565b505050505050565b600b81565b600981565b6000610ab461128b565b90508073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614158015610af95750610af78682610e93565b155b15610b3d5780866040517fe237d922000000000000000000000000000000000000000000000000000000008152600401610b34929190612d93565b60405180910390fd5b610b4a8686868686611293565b505050505050565b610b5a61116b565b610b6584848461138b565b50505050565b600181565b60608151835114610bbc57815183516040517f5b059991000000000000000000000000000000000000000000000000000000008152600401610bb3929190612dbc565b60405180910390fd5b6000835167ffffffffffffffff811115610bd957610bd861233e565b5b604051908082528060200260200182016040528015610c075781602001602082028036833780820191505090505b50905060005b8451811015610c7457610c44610c2c828761143290919063ffffffff16565b610c3f838761144690919063ffffffff16565b6107cd565b828281518110610c5757610c56612de5565b5b60200260200101818152505080610c6d90612e43565b9050610c0d565b508091505092915050565b610c8761128b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610cd05750610cce83610cc961128b565b610e93565b155b15610d1b57610cdd61128b565b836040517fe237d922000000000000000000000000000000000000000000000000000000008152600401610d12929190612d93565b60405180910390fd5b610d2683838361145a565b505050565b610d7c8787878787878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050610f27565b50505050505050565b600a81565b610d9261116b565b610d9c60006114ee565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60058054610dd490612d62565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0090612d62565b8015610e4d5780601f10610e2257610100808354040283529160200191610e4d565b820191906000526020600020905b815481529060010190602001808311610e3057829003601f168201915b505050505081565b600581565b600781565b610e71610e6a61128b565b83836115b2565b5050565b600681565b600d81565b600081565b600f81565b600381565b600e81565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000610f3161128b565b90508073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614158015610f765750610f748682610e93565b155b15610fba5780866040517fe237d922000000000000000000000000000000000000000000000000000000008152600401610fb1929190612d93565b60405180910390fd5b610fc78686868686611722565b505050505050565b610fd761116b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110495760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016110409190612b55565b60405180910390fd5b611052816114ee565b50565b61105d61128b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156110a657506110a48361109f61128b565b610e93565b155b156110f1576110b361128b565b836040517fe237d9220000000000000000000000000000000000000000000000000000000081526004016110e8929190612d93565b60405180910390fd5b6110fc83838361138b565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61117361128b565b73ffffffffffffffffffffffffffffffffffffffff16611191610d9e565b73ffffffffffffffffffffffffffffffffffffffff16146111f0576111b461128b565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016111e79190612b55565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036112645760006040517f57f447ce00000000000000000000000000000000000000000000000000000000815260040161125b9190612b55565b60405180910390fd5b600080611271858561182d565b9150915061128360008784848761185d565b505050505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036113055760006040517f57f447ce0000000000000000000000000000000000000000000000000000000081526004016112fc9190612b55565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036113775760006040517f01a8351400000000000000000000000000000000000000000000000000000000815260040161136e9190612b55565b60405180910390fd5b611384858585858561185d565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113fd5760006040517f01a835140000000000000000000000000000000000000000000000000000000081526004016113f49190612b55565b60405180910390fd5b60008061140a848461182d565b9150915061142b85600084846040518060200160405280600081525061185d565b5050505050565b600060208202602084010151905092915050565b600060208202602084010151905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114cc5760006040517f01a835140000000000000000000000000000000000000000000000000000000081526004016114c39190612b55565b60405180910390fd5b6114e983600084846040518060200160405280600081525061185d565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116245760006040517fced3e10000000000000000000000000000000000000000000000000000000000815260040161161b9190612b55565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161171591906121da565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036117945760006040517f57f447ce00000000000000000000000000000000000000000000000000000000815260040161178b9190612b55565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036118065760006040517f01a835140000000000000000000000000000000000000000000000000000000081526004016117fd9190612b55565b60405180910390fd5b600080611813858561182d565b91509150611824878784848761185d565b50505050505050565b60608060405191506001825283602083015260408201905060018152826020820152604081016040529250929050565b6118698585858561190f565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146119085760006118a761128b565b905060018451036118f75760006118c860008661144690919063ffffffff16565b905060006118e060008661144690919063ffffffff16565b90506118f0838989858589611cc0565b5050611906565b611905818787878787611e74565b5b505b5050505050565b805182511461195957815181516040517f5b059991000000000000000000000000000000000000000000000000000000008152600401611950929190612dbc565b60405180910390fd5b600061196361128b565b905060005b8351811015611b7b576000611986828661144690919063ffffffff16565b9050600061199d838661144690919063ffffffff16565b9050600073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614611acc5760006001600084815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a7357888183856040517f03dee4c5000000000000000000000000000000000000000000000000000000008152600401611a6a9493929190612e8b565b60405180910390fd5b8181036001600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614611b6857806001600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b609190612ed0565b925050819055505b505080611b7490612e43565b9050611968565b506001835103611c3a576000611b9b60008561144690919063ffffffff16565b90506000611bb360008561144690919063ffffffff16565b90508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628585604051611c2b929190612dbc565b60405180910390a45050611cb9565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611cb0929190612f04565b60405180910390a45b5050505050565b60008473ffffffffffffffffffffffffffffffffffffffff163b1115611e6c578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611d21959493929190612f90565b6020604051808303816000875af1925050508015611d5d57506040513d601f19601f82011682018060405250810190611d5a9190612fff565b60015b611de1573d8060008114611d8d576040519150601f19603f3d011682016040523d82523d6000602084013e611d92565b606091505b506000815103611dd957846040517f57f447ce000000000000000000000000000000000000000000000000000000008152600401611dd09190612b55565b60405180910390fd5b805181602001fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611e6a57846040517f57f447ce000000000000000000000000000000000000000000000000000000008152600401611e619190612b55565b60405180910390fd5b505b505050505050565b60008473ffffffffffffffffffffffffffffffffffffffff163b1115612020578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611ed595949392919061302c565b6020604051808303816000875af1925050508015611f1157506040513d601f19601f82011682018060405250810190611f0e9190612fff565b60015b611f95573d8060008114611f41576040519150601f19603f3d011682016040523d82523d6000602084013e611f46565b606091505b506000815103611f8d57846040517f57f447ce000000000000000000000000000000000000000000000000000000008152600401611f849190612b55565b60405180910390fd5b805181602001fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461201e57846040517f57f447ce0000000000000000000000000000000000000000000000000000000081526004016120159190612b55565b60405180910390fd5b505b505050505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006120678261203c565b9050919050565b6120778161205c565b811461208257600080fd5b50565b6000813590506120948161206e565b92915050565b6000819050919050565b6120ad8161209a565b81146120b857600080fd5b50565b6000813590506120ca816120a4565b92915050565b600080604083850312156120e7576120e6612032565b5b60006120f585828601612085565b9250506020612106858286016120bb565b9150509250929050565b6121198161209a565b82525050565b60006020820190506121346000830184612110565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61216f8161213a565b811461217a57600080fd5b50565b60008135905061218c81612166565b92915050565b6000602082840312156121a8576121a7612032565b5b60006121b68482850161217d565b91505092915050565b60008115159050919050565b6121d4816121bf565b82525050565b60006020820190506121ef60008301846121cb565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561222f578082015181840152602081019050612214565b60008484015250505050565b6000601f19601f8301169050919050565b6000612257826121f5565b6122618185612200565b9350612271818560208601612211565b61227a8161223b565b840191505092915050565b6000602082019050818103600083015261229f818461224c565b905092915050565b6000602082840312156122bd576122bc612032565b5b60006122cb848285016120bb565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126122f9576122f86122d4565b5b8235905067ffffffffffffffff811115612316576123156122d9565b5b602083019150836001820283011115612332576123316122de565b5b9250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6123768261223b565b810181811067ffffffffffffffff821117156123955761239461233e565b5b80604052505050565b60006123a8612028565b90506123b4828261236d565b919050565b600067ffffffffffffffff8211156123d4576123d361233e565b5b6123dd8261223b565b9050602081019050919050565b82818337600083830152505050565b600061240c612407846123b9565b61239e565b90508281526020810184848401111561242857612427612339565b5b6124338482856123ea565b509392505050565b600082601f8301126124505761244f6122d4565b5b81356124608482602086016123f9565b91505092915050565b60008060008060008060a0878903121561248657612485612032565b5b600061249489828a01612085565b96505060206124a589828a016120bb565b95505060406124b689828a016120bb565b945050606087013567ffffffffffffffff8111156124d7576124d6612037565b5b6124e389828a016122e3565b9350935050608087013567ffffffffffffffff81111561250657612505612037565b5b61251289828a0161243b565b9150509295509295509295565b600067ffffffffffffffff82111561253a5761253961233e565b5b602082029050602081019050919050565b600061255e6125598461251f565b61239e565b90508083825260208201905060208402830185811115612581576125806122de565b5b835b818110156125aa578061259688826120bb565b845260208401935050602081019050612583565b5050509392505050565b600082601f8301126125c9576125c86122d4565b5b81356125d984826020860161254b565b91505092915050565b600067ffffffffffffffff8211156125fd576125fc61233e565b5b6126068261223b565b9050602081019050919050565b6000612626612621846125e2565b61239e565b90508281526020810184848401111561264257612641612339565b5b61264d8482856123ea565b509392505050565b600082601f83011261266a576126696122d4565b5b813561267a848260208601612613565b91505092915050565b600080600080600060a0868803121561269f5761269e612032565b5b60006126ad88828901612085565b95505060206126be88828901612085565b945050604086013567ffffffffffffffff8111156126df576126de612037565b5b6126eb888289016125b4565b935050606086013567ffffffffffffffff81111561270c5761270b612037565b5b612718888289016125b4565b925050608086013567ffffffffffffffff81111561273957612738612037565b5b61274588828901612655565b9150509295509295909350565b6000806000806080858703121561276c5761276b612032565b5b600061277a87828801612085565b945050602061278b878288016120bb565b935050604061279c878288016120bb565b925050606085013567ffffffffffffffff8111156127bd576127bc612037565b5b6127c98782880161243b565b91505092959194509250565b600067ffffffffffffffff8211156127f0576127ef61233e565b5b602082029050602081019050919050565b600061281461280f846127d5565b61239e565b90508083825260208201905060208402830185811115612837576128366122de565b5b835b81811015612860578061284c8882612085565b845260208401935050602081019050612839565b5050509392505050565b600082601f83011261287f5761287e6122d4565b5b813561288f848260208601612801565b91505092915050565b600080604083850312156128af576128ae612032565b5b600083013567ffffffffffffffff8111156128cd576128cc612037565b5b6128d98582860161286a565b925050602083013567ffffffffffffffff8111156128fa576128f9612037565b5b612906858286016125b4565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6129458161209a565b82525050565b6000612957838361293c565b60208301905092915050565b6000602082019050919050565b600061297b82612910565b612985818561291b565b93506129908361292c565b8060005b838110156129c15781516129a8888261294b565b97506129b383612963565b925050600181019050612994565b5085935050505092915050565b600060208201905081810360008301526129e88184612970565b905092915050565b600080600060608486031215612a0957612a08612032565b5b6000612a1786828701612085565b935050602084013567ffffffffffffffff811115612a3857612a37612037565b5b612a44868287016125b4565b925050604084013567ffffffffffffffff811115612a6557612a64612037565b5b612a71868287016125b4565b9150509250925092565b600080600080600080600060c0888a031215612a9a57612a99612032565b5b6000612aa88a828b01612085565b9750506020612ab98a828b01612085565b9650506040612aca8a828b016120bb565b9550506060612adb8a828b016120bb565b945050608088013567ffffffffffffffff811115612afc57612afb612037565b5b612b088a828b016122e3565b935093505060a088013567ffffffffffffffff811115612b2b57612b2a612037565b5b612b378a828b0161243b565b91505092959891949750929550565b612b4f8161205c565b82525050565b6000602082019050612b6a6000830184612b46565b92915050565b612b79816121bf565b8114612b8457600080fd5b50565b600081359050612b9681612b70565b92915050565b60008060408385031215612bb357612bb2612032565b5b6000612bc185828601612085565b9250506020612bd285828601612b87565b9150509250929050565b60008060408385031215612bf357612bf2612032565b5b6000612c0185828601612085565b9250506020612c1285828601612085565b9150509250929050565b600080600080600060a08688031215612c3857612c37612032565b5b6000612c4688828901612085565b9550506020612c5788828901612085565b9450506040612c68888289016120bb565b9350506060612c79888289016120bb565b925050608086013567ffffffffffffffff811115612c9a57612c99612037565b5b612ca688828901612655565b9150509295509295909350565b600060208284031215612cc957612cc8612032565b5b6000612cd784828501612085565b91505092915050565b600080600060608486031215612cf957612cf8612032565b5b6000612d0786828701612085565b9350506020612d18868287016120bb565b9250506040612d29868287016120bb565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612d7a57607f821691505b602082108103612d8d57612d8c612d33565b5b50919050565b6000604082019050612da86000830185612b46565b612db56020830184612b46565b9392505050565b6000604082019050612dd16000830185612110565b612dde6020830184612110565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e4e8261209a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612e8057612e7f612e14565b5b600182019050919050565b6000608082019050612ea06000830187612b46565b612ead6020830186612110565b612eba6040830185612110565b612ec76060830184612110565b95945050505050565b6000612edb8261209a565b9150612ee68361209a565b9250828201905080821115612efe57612efd612e14565b5b92915050565b60006040820190508181036000830152612f1e8185612970565b90508181036020830152612f328184612970565b90509392505050565b600081519050919050565b600082825260208201905092915050565b6000612f6282612f3b565b612f6c8185612f46565b9350612f7c818560208601612211565b612f858161223b565b840191505092915050565b600060a082019050612fa56000830188612b46565b612fb26020830187612b46565b612fbf6040830186612110565b612fcc6060830185612110565b8181036080830152612fde8184612f57565b90509695505050505050565b600081519050612ff981612166565b92915050565b60006020828403121561301557613014612032565b5b600061302384828501612fea565b91505092915050565b600060a0820190506130416000830188612b46565b61304e6020830187612b46565b81810360408301526130608186612970565b905081810360608301526130748185612970565b905081810360808301526130888184612f57565b9050969550505050505056fea2646970667358221220549c82bcf4a5beac5867cce2b910acf3008b7a78be48fa7deeffbd9fefe2939564736f6c63430008140033

Loading...
Loading
[ 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.