ETH Price: $3,076.36 (+2.62%)
Gas: 4 Gwei

Token

ticketSamuraiBurn (TSB)
 

Overview

Max Total Supply

15 TSB

Holders

4

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
Null: 0x000...000
0x0000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SamuraiBurnTickets

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-12
*/

// File: contracts/ISamuraiCats.sol



pragma solidity ^0.8.0;

interface ISamuraiCats {

    function balanceOf(address owner) external view returns (uint256 balance); // IERC721 is IERC165

    function ownerOf(uint256 tokenId) external view returns (address owner);

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;







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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

        return array;
    }
}

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


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

pragma solidity ^0.8.0;


/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates whether any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155Supply.totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        if (from == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] += amounts[i];
            }
        }

        if (to == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                uint256 id = ids[i];
                uint256 amount = amounts[i];
                uint256 supply = _totalSupply[id];
                require(supply >= amount, "ERC1155: burn amount exceeds totalSupply");
                unchecked {
                    _totalSupply[id] = supply - amount;
                }
            }
        }
    }
}

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


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

pragma solidity ^0.8.0;


/**
 * @dev Extension of {ERC1155} that allows token holders to destroy both their
 * own tokens and those that they have been approved to use.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Burnable is ERC1155 {
    function burn(
        address account,
        uint256 id,
        uint256 value
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burn(account, id, value);
    }

    function burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory values
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burnBatch(account, ids, values);
    }
}

// File: contracts/forkMurakamiFlowerClone.sol





pragma solidity ^0.8.11;



// import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
// import "@openzeppelin/contracts/token/common/ERC2981.sol";
// import "@openzeppelin/contracts/access/AccessControl.sol";




// import "./BaseCollection.sol";

contract SamuraiBurnTickets is
    // ERC1155,
    ERC1155Burnable,
    ERC1155Supply,
    // ERC2981,
    // AccessControl,
    Ownable,
    ReentrancyGuard
{
   // using Strings for uint256;
   // using MerkleProof for bytes32[];
   // uint256 public constant SEED = 0;
    uint256 public constant BIGSTATUE = 0;
    uint256 public constant SMALLSTATUE = 1;
    uint256 public constant PAINTING = 2;
    uint256 public constant PRINT = 3;

    address sCats = 0xc8D2bf842b9f0b601043fb4fd5F23d22b9483911; 
    address public burnAAddress = 0x78D56acec1ea54E0D015ce7F59c09655fE9bfD86;

    // uint256 public maxSupply;
    mapping(uint256 => uint256) public maxSupply;

    mapping(address => uint256) private _count;

    mapping(uint256 => uint256) public catsToBurnPerTicket;

    string public contractMetadataURI;
    string private _name;
    string private _symbol;
   
    bool private _active;

    // mapping(uint256 => string) public tokensURI;

    constructor(
        string memory name_,
        string memory symbol_,
        string memory uri_
    ) ERC1155(uri_) {
        _name = name_;
        _symbol = symbol_;
        _active = false;
        // _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
        contractMetadataURI = uri_;
        catsToBurnPerTicket[BIGSTATUE] = 30;
        catsToBurnPerTicket[SMALLSTATUE] = 15;
        catsToBurnPerTicket[PAINTING] = 10;
        catsToBurnPerTicket[PRINT] = 5;

        maxSupply[BIGSTATUE] = 2;
        maxSupply[SMALLSTATUE] = 10;
        maxSupply[PAINTING] = 3;
        maxSupply[PRINT] = 50;
    }

    
    function setcatsToBurn(uint _bigS, uint _smallS, uint _paint, uint _print) external onlyOwner {
        catsToBurnPerTicket[BIGSTATUE] = _bigS;
        catsToBurnPerTicket[SMALLSTATUE] = _smallS;
        catsToBurnPerTicket[PAINTING] = _paint;
        catsToBurnPerTicket[PRINT] = _print;
       
    }

    function setBurnAddress(address _burnAddress) external onlyOwner {
        burnAAddress = _burnAddress;
    }

    function mintBigStatue(uint[] memory samuraiIdsToBurn) external  {
        require(totalSupply(BIGSTATUE) + 1 <= maxSupply[BIGSTATUE], "Exceeded max supply");
        require(samuraiIdsToBurn.length == catsToBurnPerTicket[BIGSTATUE], "samuraicats number dont match");
        ISamuraiCats sam2d = ISamuraiCats(sCats);
        require(tx.origin == msg.sender, "EOS Mint Only");
        require(_active == true, "Sale Not open");
        require( sam2d.balanceOf(msg.sender) >= catsToBurnPerTicket[BIGSTATUE] , "not enough SamuraiCats to claim a ticket");
        for ( uint i = 0 ; i < catsToBurnPerTicket[BIGSTATUE]; i++ ) {
        require(sam2d.ownerOf(samuraiIdsToBurn[i]) == msg.sender, "some items not owned");
        sam2d.safeTransferFrom(msg.sender, owner(), samuraiIdsToBurn[i]);
        }
        _mint(_msgSender() , BIGSTATUE, 1, "");
    }

    function mintSmallStatue(uint[] memory samuraiIdsToBurn) external  {
        require(totalSupply(SMALLSTATUE) + 1 <= maxSupply[SMALLSTATUE], "Exceeded max supply");
        require(samuraiIdsToBurn.length == catsToBurnPerTicket[SMALLSTATUE], "samuraicats number dont match");
        ISamuraiCats sam2d = ISamuraiCats(sCats);
        require(tx.origin == msg.sender, "EOS Mint Only");
        require(_active == true, "Sale Not open");
        require( sam2d.balanceOf(msg.sender) >= catsToBurnPerTicket[SMALLSTATUE] , "not enough SamuraiCats to claim a ticket");
        for ( uint i = 0 ; i < catsToBurnPerTicket[SMALLSTATUE]; i++ ) {
        require(sam2d.ownerOf(samuraiIdsToBurn[i]) == msg.sender, "some of intems not owned");
        sam2d.safeTransferFrom(msg.sender, owner(), samuraiIdsToBurn[i]);
        }
        _mint(_msgSender() , SMALLSTATUE, 1, "");
    }

    function mintPaint(uint[] memory samuraiIdsToBurn) external  {
        require(totalSupply(PAINTING) + 1 <= maxSupply[PAINTING], "Exceeded max supply");
        require(samuraiIdsToBurn.length == catsToBurnPerTicket[PAINTING], "samuraicats number dont match");
        ISamuraiCats sam2d = ISamuraiCats(sCats);
        require(tx.origin == msg.sender, "EOS Mint Only");
        require(_active == true, "Sale Not open");
        require( sam2d.balanceOf(msg.sender) >= catsToBurnPerTicket[PAINTING] , "not enough SamuraiCats to claim a ticket");
        for ( uint i = 0 ; i < catsToBurnPerTicket[PAINTING]; i++ ) {
        require(sam2d.ownerOf(samuraiIdsToBurn[i]) == msg.sender, "some of items not owned");
        sam2d.safeTransferFrom(msg.sender, owner(), samuraiIdsToBurn[i]);
        }
        _mint(_msgSender() , PAINTING, 1, "");
    }

    function mintPrint(uint[] memory samuraiIdsToBurn) external  {
        require(totalSupply(PRINT) + 1 <= maxSupply[PRINT], "Exceeded max supply");
        require(samuraiIdsToBurn.length == catsToBurnPerTicket[PRINT], "samuraicats number dont match");
        ISamuraiCats sam2d = ISamuraiCats(sCats);
        require(tx.origin == msg.sender, "EOS Mint Only");
        require(_active == true, "Sale Not open");
        require( sam2d.balanceOf(msg.sender) >= catsToBurnPerTicket[PRINT] , "not enough SamuraiCats to claim a ticket");
        for ( uint i = 0 ; i < catsToBurnPerTicket[PRINT]; i++ ) {
        require(sam2d.ownerOf(samuraiIdsToBurn[i]) == msg.sender, "some of items not owned");
        sam2d.safeTransferFrom(msg.sender, owner(), samuraiIdsToBurn[i]);
        }
        _mint(_msgSender() , PRINT, 1, "");
    }

   

    function setMaxSupply(uint256[] memory newMaxSupply) external onlyOwner {
        maxSupply[BIGSTATUE] = newMaxSupply[0];
        maxSupply[SMALLSTATUE] = newMaxSupply[1];
        maxSupply[PAINTING] = newMaxSupply[2];
        maxSupply[PRINT] = newMaxSupply[3];   
    }

    
    function toggleActive() external onlyOwner {
        _active = !_active;
    }

    

    function burn(address tokenOwner, uint256 typeId, uint256 amount)
        public nonReentrant onlyOwner override(ERC1155Burnable) {
       //  require(msg.sender == burners[typeId], "Invalid burner address");
        _burn(tokenOwner, typeId, amount);
    }

    
    function setContractURI(string memory uri_) external onlyOwner {
        contractMetadataURI = uri_;
    }
    

    // for opensea to be able to get correct uri per id
    function uri(uint256 typeId)  public view override returns (string memory) {
        return(
         string(abi.encodePacked(contractMetadataURI, Strings.toString(typeId),".json")) 
         // string(abi.encodePacked(contractMetadataURI, Strings.toString(typeId)))   
        );
    }
    

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

   
    function active() external view returns (bool) {
        return _active;
    }

    function withdraw(address payable treasury) external onlyOwner {
        require(address(this).balance > 0, "0 balance");
        uint256 balance = address(this).balance;
        Address.sendValue(payable(treasury), balance);
    }

    // The following functions are overrides required by Solidity.
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal override(ERC1155, ERC1155Supply) {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC1155)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"uri_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"BIGSTATUE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAINTING","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SMALLSTATUE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"tokenOwner","type":"address"},{"internalType":"uint256","name":"typeId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnAAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"uint256","name":"","type":"uint256"}],"name":"catsToBurnPerTicket","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractMetadataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uint256","name":"","type":"uint256"}],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"samuraiIdsToBurn","type":"uint256[]"}],"name":"mintBigStatue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"samuraiIdsToBurn","type":"uint256[]"}],"name":"mintPaint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"samuraiIdsToBurn","type":"uint256[]"}],"name":"mintPrint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"samuraiIdsToBurn","type":"uint256[]"}],"name":"mintSmallStatue","outputs":[],"stateMutability":"nonpayable","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":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_burnAddress","type":"address"}],"name":"setBurnAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"newMaxSupply","type":"uint256[]"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_bigS","type":"uint256"},{"internalType":"uint256","name":"_smallS","type":"uint256"},{"internalType":"uint256","name":"_paint","type":"uint256"},{"internalType":"uint256","name":"_print","type":"uint256"}],"name":"setcatsToBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"typeId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"treasury","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600680546001600160a01b031990811673c8d2bf842b9f0b601043fb4fd5f23d22b948391117909155600780549091167378d56acec1ea54e0d015ce7f59c09655fe9bfd861790553480156200005957600080fd5b5060405162003d2938038062003d298339810160408190526200007c91620003f6565b80620000888162000218565b50620000943362000231565b60016005558251620000ae90600c90602086019062000283565b508151620000c490600d90602085019062000283565b50600e805460ff191690558051620000e490600b90602084019062000283565b5050601e7f13da86008ba1c6922daee3e07db95305ef49ebced9f5467a0b8613fcc6b343e3555050600f7fbbc70db1b6c7afd11e79c0fb0051300458f1a3acb8ee9789d9b6b26c61ad9bc755600a7fbff4442b8ed600beeb8e26b1279a0f0d14c6edfaec26d968ee13c86f7d4c2ba881905560057fa856840544dc26124927add067d799967eac11be13e14d82cc281ea46fa3975955600860205260027f5eff886ea0ce6ca488a3d6e336d6c0f75f46d19b42c06ce5ee98e42c96d256c7557fad67d757c34507f157cacfa2e3153e9f260a2244f30428821be7be64587ac55f5560037f6add646517a5b0f6793cd5891b7937d28a5b2981a5d88ebc7cd776088fea904181905560005260327f625b35f5e76f098dd7c3a05b10e2e5e78a4a01228d60c3b143426cdf36d2645555620004c4565b80516200022d90600290602084019062000283565b5050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620002919062000487565b90600052602060002090601f016020900481019282620002b5576000855562000300565b82601f10620002d057805160ff191683800117855562000300565b8280016001018555821562000300579182015b8281111562000300578251825591602001919060010190620002e3565b506200030e92915062000312565b5090565b5b808211156200030e576000815560010162000313565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200035157600080fd5b81516001600160401b03808211156200036e576200036e62000329565b604051601f8301601f19908116603f0116810190828211818310171562000399576200039962000329565b81604052838152602092508683858801011115620003b657600080fd5b600091505b83821015620003da5785820183015181830184015290820190620003bb565b83821115620003ec5760008385830101525b9695505050505050565b6000806000606084860312156200040c57600080fd5b83516001600160401b03808211156200042457600080fd5b62000432878388016200033f565b945060208601519150808211156200044957600080fd5b62000457878388016200033f565b935060408601519150808211156200046e57600080fd5b506200047d868287016200033f565b9150509250925092565b600181811c908216806200049c57607f821691505b60208210811415620004be57634e487b7160e01b600052602260045260246000fd5b50919050565b61385580620004d46000396000f3fe608060405234801561001057600080fd5b506004361061021b5760003560e01c806382743d0a11610125578063caa6c7b9116100ad578063e99271e91161007c578063e99271e9146104c1578063f242432a146104d4578063f2fde38b146104e7578063f5298aca146104fa578063f646ec791461050d57600080fd5b8063caa6c7b91461043f578063d69f63261461045f578063e23d2ffa14610472578063e985e9c51461048557600080fd5b806395d89b41116100f457806395d89b41146103e95780639d4c39ac146103f1578063a22cb465146103f9578063b39667c21461040c578063bd85b0391461041f57600080fd5b806382743d0a1461039d578063869f7594146103a55780638da5cb5b146103c5578063938e3d7b146103d657600080fd5b80634b0e7216116101a85780636b20c454116101775780636b20c4541461035f578063715018a61461037257806373e927841461037a57806374020484146103825780637806566e1461038a57600080fd5b80634b0e7216146102f75780634e1273f41461030a5780634f558e791461032a57806351cff8d91461034c57600080fd5b80630e89341c116101ef5780630e89341c1461028957806310c804721461029c5780631d12eb4b146102b157806329c68dc1146102dc5780632eb2c2d6146102e457600080fd5b8062fdd58e1461022057806301ffc9a71461024657806302fb0c5e1461026957806306fdde0314610274575b600080fd5b61023361022e366004612a80565b610515565b6040519081526020015b60405180910390f35b610259610254366004612ac2565b6105ac565b604051901515815260200161023d565b600e5460ff16610259565b61027c6105bd565b60405161023d9190612b3e565b61027c610297366004612b51565b61064f565b6102af6102aa366004612c42565b610683565b005b6007546102c4906001600160a01b031681565b6040516001600160a01b03909116815260200161023d565b6102af6109ec565b6102af6102f2366004612cf5565b610a2a565b6102af610305366004612da3565b610ac1565b61031d610318366004612dc0565b610b0d565b60405161023d9190612ec8565b610259610338366004612b51565b600090815260036020526040902054151590565b6102af61035a366004612da3565b610c37565b6102af61036d366004612edb565b610ca8565b6102af610cf0565b61027c610d26565b610233600081565b6102af610398366004612c42565b610db4565b610233600181565b6102336103b3366004612b51565b60086020526000908152604090205481565b6004546001600160a01b03166102c4565b6102af6103e4366004612f51565b61111c565b61027c611159565b610233600281565b6102af610407366004612f9a565b611168565b6102af61041a366004612c42565b611173565b61023361042d366004612b51565b60009081526003602052604090205490565b61023361044d366004612b51565b600a6020526000908152604090205481565b6102af61046d366004612c42565b6114d1565b6102af610480366004612c42565b61183b565b610259610493366004612fd8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6102af6104cf366004613006565b611999565b6102af6104e2366004613038565b611a15565b6102af6104f5366004612da3565b611a5a565b6102af6105083660046130a1565b611af5565b610233600381565b60006001600160a01b0383166105865760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006105b782611b8c565b92915050565b6060600c80546105cc906130d6565b80601f01602080910402602001604051908101604052809291908181526020018280546105f8906130d6565b80156106455780601f1061061a57610100808354040283529160200191610645565b820191906000526020600020905b81548152906001019060200180831161062857829003601f168201915b5050505050905090565b6060600b61065c83611bdc565b60405160200161066d92919061312d565b6040516020818303038152906040529050919050565b60026000527f6add646517a5b0f6793cd5891b7937d28a5b2981a5d88ebc7cd776088fea90415460036020527fc3a24b0501bd2c13a7e57f2db4369ec4c223447539fc0724a9d55ac4a06ebd4d546106dc9060016131fe565b11156106fa5760405162461bcd60e51b815260040161057d90613216565b6002600052600a6020526000805160206137c0833981519152548151146107335760405162461bcd60e51b815260040161057d90613243565b6006546001600160a01b031632331461075e5760405162461bcd60e51b815260040161057d9061327a565b600e5460ff1615156001146107855760405162461bcd60e51b815260040161057d906132a1565b6002600052600a6020526000805160206137c0833981519152546040516370a0823160e01b81523360048201526001600160a01b038316906370a0823190602401602060405180830381865afa1580156107e3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061080791906132c8565b10156108255760405162461bcd60e51b815260040161057d906132e1565b60005b6002600052600a6020526000805160206137c0833981519152548110156109ca57336001600160a01b0316826001600160a01b0316636352211e85848151811061087457610874613329565b60200260200101516040518263ffffffff1660e01b815260040161089a91815260200190565b602060405180830381865afa1580156108b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108db919061333f565b6001600160a01b03161461092b5760405162461bcd60e51b81526020600482015260176024820152761cdbdb59481bd9881a5d195b5cc81b9bdd081bdddb9959604a1b604482015260640161057d565b816001600160a01b03166342842e0e3361094d6004546001600160a01b031690565b86858151811061095f5761095f613329565b60200260200101516040518463ffffffff1660e01b81526004016109859392919061335c565b600060405180830381600087803b15801561099f57600080fd5b505af11580156109b3573d6000803e3d6000fd5b5050505080806109c290613380565b915050610828565b506109e8336002600160405180602001604052806000815250611ce2565b5050565b6004546001600160a01b03163314610a165760405162461bcd60e51b815260040161057d9061339b565b600e805460ff19811660ff90911615179055565b6001600160a01b038516331480610a465750610a468533610493565b610aad5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161057d565b610aba8585858585611e05565b5050505050565b6004546001600160a01b03163314610aeb5760405162461bcd60e51b815260040161057d9061339b565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b60608151835114610b725760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161057d565b6000835167ffffffffffffffff811115610b8e57610b8e612b6a565b604051908082528060200260200182016040528015610bb7578160200160208202803683370190505b50905060005b8451811015610c2f57610c02858281518110610bdb57610bdb613329565b6020026020010151858381518110610bf557610bf5613329565b6020026020010151610515565b828281518110610c1457610c14613329565b6020908102919091010152610c2881613380565b9050610bbd565b509392505050565b6004546001600160a01b03163314610c615760405162461bcd60e51b815260040161057d9061339b565b60004711610c9d5760405162461bcd60e51b8152602060048201526009602482015268302062616c616e636560b81b604482015260640161057d565b476109e88282611faf565b6001600160a01b038316331480610cc45750610cc48333610493565b610ce05760405162461bcd60e51b815260040161057d906133d0565b610ceb8383836120c8565b505050565b6004546001600160a01b03163314610d1a5760405162461bcd60e51b815260040161057d9061339b565b610d246000612266565b565b600b8054610d33906130d6565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5f906130d6565b8015610dac5780601f10610d8157610100808354040283529160200191610dac565b820191906000526020600020905b815481529060010190602001808311610d8f57829003601f168201915b505050505081565b600360008190527f625b35f5e76f098dd7c3a05b10e2e5e78a4a01228d60c3b143426cdf36d26455546020919091527fcbc4e5fb02c3d1de23a9f1e014b4d2ee5aeaea9505df5e855c9210bf472495af54610e109060016131fe565b1115610e2e5760405162461bcd60e51b815260040161057d90613216565b6003600052600a6020526000805160206137a083398151915254815114610e675760405162461bcd60e51b815260040161057d90613243565b6006546001600160a01b0316323314610e925760405162461bcd60e51b815260040161057d9061327a565b600e5460ff161515600114610eb95760405162461bcd60e51b815260040161057d906132a1565b6003600052600a6020526000805160206137a0833981519152546040516370a0823160e01b81523360048201526001600160a01b038316906370a0823190602401602060405180830381865afa158015610f17573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f3b91906132c8565b1015610f595760405162461bcd60e51b815260040161057d906132e1565b60005b6003600052600a6020526000805160206137a0833981519152548110156110fe57336001600160a01b0316826001600160a01b0316636352211e858481518110610fa857610fa8613329565b60200260200101516040518263ffffffff1660e01b8152600401610fce91815260200190565b602060405180830381865afa158015610feb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061100f919061333f565b6001600160a01b03161461105f5760405162461bcd60e51b81526020600482015260176024820152761cdbdb59481bd9881a5d195b5cc81b9bdd081bdddb9959604a1b604482015260640161057d565b816001600160a01b03166342842e0e336110816004546001600160a01b031690565b86858151811061109357611093613329565b60200260200101516040518463ffffffff1660e01b81526004016110b99392919061335c565b600060405180830381600087803b1580156110d357600080fd5b505af11580156110e7573d6000803e3d6000fd5b5050505080806110f690613380565b915050610f5c565b506109e8336003600160405180602001604052806000815250611ce2565b6004546001600160a01b031633146111465760405162461bcd60e51b815260040161057d9061339b565b80516109e890600b9060208401906129d2565b6060600d80546105cc906130d6565b6109e83383836122b8565b600080527f5eff886ea0ce6ca488a3d6e336d6c0f75f46d19b42c06ce5ee98e42c96d256c75460036020527f3617319a054d772f909f7c479a2cebe5066e836a939412e32403c99029b92eff546111cb9060016131fe565b11156111e95760405162461bcd60e51b815260040161057d90613216565b60008052600a6020526000805160206137e0833981519152548151146112215760405162461bcd60e51b815260040161057d90613243565b6006546001600160a01b031632331461124c5760405162461bcd60e51b815260040161057d9061327a565b600e5460ff1615156001146112735760405162461bcd60e51b815260040161057d906132a1565b60008052600a6020526000805160206137e0833981519152546040516370a0823160e01b81523360048201526001600160a01b038316906370a0823190602401602060405180830381865afa1580156112d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112f491906132c8565b10156113125760405162461bcd60e51b815260040161057d906132e1565b60005b60008052600a6020526000805160206137e0833981519152548110156114b357336001600160a01b0316826001600160a01b0316636352211e85848151811061136057611360613329565b60200260200101516040518263ffffffff1660e01b815260040161138691815260200190565b602060405180830381865afa1580156113a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113c7919061333f565b6001600160a01b0316146114145760405162461bcd60e51b81526020600482015260146024820152731cdbdb59481a5d195b5cc81b9bdd081bdddb995960621b604482015260640161057d565b816001600160a01b03166342842e0e336114366004546001600160a01b031690565b86858151811061144857611448613329565b60200260200101516040518463ffffffff1660e01b815260040161146e9392919061335c565b600060405180830381600087803b15801561148857600080fd5b505af115801561149c573d6000803e3d6000fd5b5050505080806114ab90613380565b915050611315565b506109e8336000600160405180602001604052806000815250611ce2565b60016000527fad67d757c34507f157cacfa2e3153e9f260a2244f30428821be7be64587ac55f5460036020527fa15bc60c955c405d20d9149c709e2460f1c2d9a497496a7f46004d1772c3054c5461152a9060016131fe565b11156115485760405162461bcd60e51b815260040161057d90613216565b6001600052600a602052600080516020613800833981519152548151146115815760405162461bcd60e51b815260040161057d90613243565b6006546001600160a01b03163233146115ac5760405162461bcd60e51b815260040161057d9061327a565b600e5460ff1615156001146115d35760405162461bcd60e51b815260040161057d906132a1565b6001600052600a602052600080516020613800833981519152546040516370a0823160e01b81523360048201526001600160a01b038316906370a0823190602401602060405180830381865afa158015611631573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061165591906132c8565b10156116735760405162461bcd60e51b815260040161057d906132e1565b60005b6001600052600a6020526000805160206138008339815191525481101561181e57336001600160a01b0316826001600160a01b0316636352211e8584815181106116c2576116c2613329565b60200260200101516040518263ffffffff1660e01b81526004016116e891815260200190565b602060405180830381865afa158015611705573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611729919061333f565b6001600160a01b03161461177f5760405162461bcd60e51b815260206004820152601860248201527f736f6d65206f6620696e74656d73206e6f74206f776e65640000000000000000604482015260640161057d565b816001600160a01b03166342842e0e336117a16004546001600160a01b031690565b8685815181106117b3576117b3613329565b60200260200101516040518463ffffffff1660e01b81526004016117d99392919061335c565b600060405180830381600087803b1580156117f357600080fd5b505af1158015611807573d6000803e3d6000fd5b50505050808061181690613380565b915050611676565b506109e83360018060405180602001604052806000815250611ce2565b6004546001600160a01b031633146118655760405162461bcd60e51b815260040161057d9061339b565b8060008151811061187857611878613329565b6020908102919091018101516000805260089091527f5eff886ea0ce6ca488a3d6e336d6c0f75f46d19b42c06ce5ee98e42c96d256c7558051819060019081106118c4576118c4613329565b602090810291909101810151600160005260089091527fad67d757c34507f157cacfa2e3153e9f260a2244f30428821be7be64587ac55f5580518190600290811061191157611911613329565b602090810291909101810151600260005260089091527f6add646517a5b0f6793cd5891b7937d28a5b2981a5d88ebc7cd776088fea90415580518190600390811061195e5761195e613329565b602090810291909101810151600360005260089091527f625b35f5e76f098dd7c3a05b10e2e5e78a4a01228d60c3b143426cdf36d264555550565b6004546001600160a01b031633146119c35760405162461bcd60e51b815260040161057d9061339b565b600a6020526000805160206137e083398151915293909355600080516020613800833981519152919091556000805160206137c08339815191525560036000526000805160206137a083398151915255565b6001600160a01b038516331480611a315750611a318533610493565b611a4d5760405162461bcd60e51b815260040161057d906133d0565b610aba8585858585612399565b6004546001600160a01b03163314611a845760405162461bcd60e51b815260040161057d9061339b565b6001600160a01b038116611ae95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161057d565b611af281612266565b50565b60026005541415611b485760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161057d565b60026005556004546001600160a01b03163314611b775760405162461bcd60e51b815260040161057d9061339b565b611b828383836124d1565b5050600160055550565b60006001600160e01b03198216636cdb3d1360e11b1480611bbd57506001600160e01b031982166303a24d0760e21b145b806105b757506301ffc9a760e01b6001600160e01b03198316146105b7565b606081611c005750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c2a5780611c1481613380565b9150611c239050600a8361342f565b9150611c04565b60008167ffffffffffffffff811115611c4557611c45612b6a565b6040519080825280601f01601f191660200182016040528015611c6f576020820181803683370190505b5090505b8415611cda57611c84600183613443565b9150611c91600a8661345a565b611c9c9060306131fe565b60f81b818381518110611cb157611cb1613329565b60200101906001600160f81b031916908160001a905350611cd3600a8661342f565b9450611c73565b949350505050565b6001600160a01b038416611d425760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161057d565b336000611d4e856125e9565b90506000611d5b856125e9565b9050611d6c83600089858589612634565b6000868152602081815260408083206001600160a01b038b16845290915281208054879290611d9c9084906131fe565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611dfc83600089898989612642565b50505050505050565b8151835114611e265760405162461bcd60e51b815260040161057d9061346e565b6001600160a01b038416611e4c5760405162461bcd60e51b815260040161057d906134b6565b33611e5b818787878787612634565b60005b8451811015611f41576000858281518110611e7b57611e7b613329565b602002602001015190506000858381518110611e9957611e99613329565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015611ee95760405162461bcd60e51b815260040161057d906134fb565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611f269084906131fe565b9250508190555050505080611f3a90613380565b9050611e5e565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611f91929190613545565b60405180910390a4611fa781878787878761279e565b505050505050565b80471015611fff5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161057d565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461204c576040519150601f19603f3d011682016040523d82523d6000602084013e612051565b606091505b5050905080610ceb5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161057d565b6001600160a01b0383166120ee5760405162461bcd60e51b815260040161057d9061356a565b805182511461210f5760405162461bcd60e51b815260040161057d9061346e565b600033905061213281856000868660405180602001604052806000815250612634565b60005b83518110156121f757600084828151811061215257612152613329565b60200260200101519050600084838151811061217057612170613329565b602090810291909101810151600084815280835260408082206001600160a01b038c1683529093529190912054909150818110156121c05760405162461bcd60e51b815260040161057d906135ad565b6000928352602083815260408085206001600160a01b038b16865290915290922091039055806121ef81613380565b915050612135565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051612248929190613545565b60405180910390a46040805160208101909152600090525b50505050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561232c5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161057d565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166123bf5760405162461bcd60e51b815260040161057d906134b6565b3360006123cb856125e9565b905060006123d8856125e9565b90506123e8838989858589612634565b6000868152602081815260408083206001600160a01b038c168452909152902054858110156124295760405162461bcd60e51b815260040161057d906134fb565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a168252812080548892906124669084906131fe565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46124c6848a8a8a8a8a612642565b505050505050505050565b6001600160a01b0383166124f75760405162461bcd60e51b815260040161057d9061356a565b336000612503846125e9565b90506000612510846125e9565b905061253083876000858560405180602001604052806000815250612634565b6000858152602081815260408083206001600160a01b038a168452909152902054848110156125715760405162461bcd60e51b815260040161057d906135ad565b6000868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4604080516020810190915260009052611dfc565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061262357612623613329565b602090810291909101015292915050565b611fa7868686868686612859565b6001600160a01b0384163b15611fa75760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061268690899089908890889088906004016135f1565b6020604051808303816000875af19250505080156126c1575060408051601f3d908101601f191682019092526126be91810190613636565b60015b61276e576126cd613653565b806308c379a0141561270757506126e261366f565b806126ed5750612709565b8060405162461bcd60e51b815260040161057d9190612b3e565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161057d565b6001600160e01b0319811663f23a6e6160e01b14611dfc5760405162461bcd60e51b815260040161057d906136f9565b6001600160a01b0384163b15611fa75760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906127e29089908990889088908890600401613741565b6020604051808303816000875af192505050801561281d575060408051601f3d908101601f1916820190925261281a91810190613636565b60015b612829576126cd613653565b6001600160e01b0319811663bc197c8160e01b14611dfc5760405162461bcd60e51b815260040161057d906136f9565b6001600160a01b0385166128e05760005b83518110156128de5782818151811061288557612885613329565b6020026020010151600360008684815181106128a3576128a3613329565b6020026020010151815260200190815260200160002060008282546128c891906131fe565b909155506128d7905081613380565b905061286a565b505b6001600160a01b038416611fa75760005b8351811015611dfc57600084828151811061290e5761290e613329565b60200260200101519050600084838151811061292c5761292c613329565b60200260200101519050600060036000848152602001908152602001600020549050818110156129af5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a206275726e20616d6f756e74206578636565647320746f74604482015267616c537570706c7960c01b606482015260840161057d565b600092835260036020526040909220910390556129cb81613380565b90506128f1565b8280546129de906130d6565b90600052602060002090601f016020900481019282612a005760008555612a46565b82601f10612a1957805160ff1916838001178555612a46565b82800160010185558215612a46579182015b82811115612a46578251825591602001919060010190612a2b565b50612a52929150612a56565b5090565b5b80821115612a525760008155600101612a57565b6001600160a01b0381168114611af257600080fd5b60008060408385031215612a9357600080fd5b8235612a9e81612a6b565b946020939093013593505050565b6001600160e01b031981168114611af257600080fd5b600060208284031215612ad457600080fd5b8135612adf81612aac565b9392505050565b60005b83811015612b01578181015183820152602001612ae9565b838111156122605750506000910152565b60008151808452612b2a816020860160208601612ae6565b601f01601f19169290920160200192915050565b602081526000612adf6020830184612b12565b600060208284031215612b6357600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff81118282101715612ba657612ba6612b6a565b6040525050565b600067ffffffffffffffff821115612bc757612bc7612b6a565b5060051b60200190565b600082601f830112612be257600080fd5b81356020612bef82612bad565b604051612bfc8282612b80565b83815260059390931b8501820192828101915086841115612c1c57600080fd5b8286015b84811015612c375780358352918301918301612c20565b509695505050505050565b600060208284031215612c5457600080fd5b813567ffffffffffffffff811115612c6b57600080fd5b611cda84828501612bd1565b600067ffffffffffffffff831115612c9157612c91612b6a565b604051612ca8601f8501601f191660200182612b80565b809150838152848484011115612cbd57600080fd5b83836020830137600060208583010152509392505050565b600082601f830112612ce657600080fd5b612adf83833560208501612c77565b600080600080600060a08688031215612d0d57600080fd5b8535612d1881612a6b565b94506020860135612d2881612a6b565b9350604086013567ffffffffffffffff80821115612d4557600080fd5b612d5189838a01612bd1565b94506060880135915080821115612d6757600080fd5b612d7389838a01612bd1565b93506080880135915080821115612d8957600080fd5b50612d9688828901612cd5565b9150509295509295909350565b600060208284031215612db557600080fd5b8135612adf81612a6b565b60008060408385031215612dd357600080fd5b823567ffffffffffffffff80821115612deb57600080fd5b818501915085601f830112612dff57600080fd5b81356020612e0c82612bad565b604051612e198282612b80565b83815260059390931b8501820192828101915089841115612e3957600080fd5b948201945b83861015612e60578535612e5181612a6b565b82529482019490820190612e3e565b96505086013592505080821115612e7657600080fd5b50612e8385828601612bd1565b9150509250929050565b600081518084526020808501945080840160005b83811015612ebd57815187529582019590820190600101612ea1565b509495945050505050565b602081526000612adf6020830184612e8d565b600080600060608486031215612ef057600080fd5b8335612efb81612a6b565b9250602084013567ffffffffffffffff80821115612f1857600080fd5b612f2487838801612bd1565b93506040860135915080821115612f3a57600080fd5b50612f4786828701612bd1565b9150509250925092565b600060208284031215612f6357600080fd5b813567ffffffffffffffff811115612f7a57600080fd5b8201601f81018413612f8b57600080fd5b611cda84823560208401612c77565b60008060408385031215612fad57600080fd5b8235612fb881612a6b565b915060208301358015158114612fcd57600080fd5b809150509250929050565b60008060408385031215612feb57600080fd5b8235612ff681612a6b565b91506020830135612fcd81612a6b565b6000806000806080858703121561301c57600080fd5b5050823594602084013594506040840135936060013592509050565b600080600080600060a0868803121561305057600080fd5b853561305b81612a6b565b9450602086013561306b81612a6b565b93506040860135925060608601359150608086013567ffffffffffffffff81111561309557600080fd5b612d9688828901612cd5565b6000806000606084860312156130b657600080fd5b83356130c181612a6b565b95602085013595506040909401359392505050565b600181811c908216806130ea57607f821691505b6020821081141561310b57634e487b7160e01b600052602260045260246000fd5b50919050565b60008151613123818560208601612ae6565b9290920192915050565b600080845481600182811c91508083168061314957607f831692505b602080841082141561316957634e487b7160e01b86526022600452602486fd5b81801561317d576001811461318e576131bb565b60ff198616895284890196506131bb565b60008b81526020902060005b868110156131b35781548b82015290850190830161319a565b505084890196505b5050505050506131df6131ce8286613111565b64173539b7b760d91b815260050190565b95945050505050565b634e487b7160e01b600052601160045260246000fd5b60008219821115613211576132116131e8565b500190565b6020808252601390820152724578636565646564206d617820737570706c7960681b604082015260600190565b6020808252601d908201527f73616d7572616963617473206e756d62657220646f6e74206d61746368000000604082015260600190565b6020808252600d908201526c454f53204d696e74204f6e6c7960981b604082015260600190565b6020808252600d908201526c29b0b632902737ba1037b832b760991b604082015260600190565b6000602082840312156132da57600080fd5b5051919050565b60208082526028908201527f6e6f7420656e6f7567682053616d757261694361747320746f20636c61696d2060408201526718481d1a58dad95d60c21b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561335157600080fd5b8151612adf81612a6b565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6000600019821415613394576133946131e8565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261343e5761343e613419565b500490565b600082821015613455576134556131e8565b500390565b60008261346957613469613419565b500690565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6040815260006135586040830185612e8d565b82810360208401526131df8185612e8d565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061362b90830184612b12565b979650505050505050565b60006020828403121561364857600080fd5b8151612adf81612aac565b600060033d111561366c5760046000803e5060005160e01c5b90565b600060443d101561367d5790565b6040516003193d81016004833e81513d67ffffffffffffffff81602484011181841117156136ad57505050505090565b82850191508151818111156136c55750505050505090565b843d87010160208285010111156136df5750505050505090565b6136ee60208286010187612b80565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b0386811682528516602082015260a06040820181905260009061376d90830186612e8d565b828103606084015261377f8186612e8d565b905082810360808401526137938185612b12565b9897505050505050505056fea856840544dc26124927add067d799967eac11be13e14d82cc281ea46fa39759bff4442b8ed600beeb8e26b1279a0f0d14c6edfaec26d968ee13c86f7d4c2ba813da86008ba1c6922daee3e07db95305ef49ebced9f5467a0b8613fcc6b343e3bbc70db1b6c7afd11e79c0fb0051300458f1a3acb8ee9789d9b6b26c61ad9bc7a2646970667358221220fd0f8ff439a10df6dd8d6e0f611ea188a66e6938e5e39c7374c81ad147d323e164736f6c634300080b0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000117469636b657453616d757261694275726e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000354534200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d57426939523634534532534458774e7459677557614e416d63516e7132366161723847716b775a655947666a2f00000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061021b5760003560e01c806382743d0a11610125578063caa6c7b9116100ad578063e99271e91161007c578063e99271e9146104c1578063f242432a146104d4578063f2fde38b146104e7578063f5298aca146104fa578063f646ec791461050d57600080fd5b8063caa6c7b91461043f578063d69f63261461045f578063e23d2ffa14610472578063e985e9c51461048557600080fd5b806395d89b41116100f457806395d89b41146103e95780639d4c39ac146103f1578063a22cb465146103f9578063b39667c21461040c578063bd85b0391461041f57600080fd5b806382743d0a1461039d578063869f7594146103a55780638da5cb5b146103c5578063938e3d7b146103d657600080fd5b80634b0e7216116101a85780636b20c454116101775780636b20c4541461035f578063715018a61461037257806373e927841461037a57806374020484146103825780637806566e1461038a57600080fd5b80634b0e7216146102f75780634e1273f41461030a5780634f558e791461032a57806351cff8d91461034c57600080fd5b80630e89341c116101ef5780630e89341c1461028957806310c804721461029c5780631d12eb4b146102b157806329c68dc1146102dc5780632eb2c2d6146102e457600080fd5b8062fdd58e1461022057806301ffc9a71461024657806302fb0c5e1461026957806306fdde0314610274575b600080fd5b61023361022e366004612a80565b610515565b6040519081526020015b60405180910390f35b610259610254366004612ac2565b6105ac565b604051901515815260200161023d565b600e5460ff16610259565b61027c6105bd565b60405161023d9190612b3e565b61027c610297366004612b51565b61064f565b6102af6102aa366004612c42565b610683565b005b6007546102c4906001600160a01b031681565b6040516001600160a01b03909116815260200161023d565b6102af6109ec565b6102af6102f2366004612cf5565b610a2a565b6102af610305366004612da3565b610ac1565b61031d610318366004612dc0565b610b0d565b60405161023d9190612ec8565b610259610338366004612b51565b600090815260036020526040902054151590565b6102af61035a366004612da3565b610c37565b6102af61036d366004612edb565b610ca8565b6102af610cf0565b61027c610d26565b610233600081565b6102af610398366004612c42565b610db4565b610233600181565b6102336103b3366004612b51565b60086020526000908152604090205481565b6004546001600160a01b03166102c4565b6102af6103e4366004612f51565b61111c565b61027c611159565b610233600281565b6102af610407366004612f9a565b611168565b6102af61041a366004612c42565b611173565b61023361042d366004612b51565b60009081526003602052604090205490565b61023361044d366004612b51565b600a6020526000908152604090205481565b6102af61046d366004612c42565b6114d1565b6102af610480366004612c42565b61183b565b610259610493366004612fd8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6102af6104cf366004613006565b611999565b6102af6104e2366004613038565b611a15565b6102af6104f5366004612da3565b611a5a565b6102af6105083660046130a1565b611af5565b610233600381565b60006001600160a01b0383166105865760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006105b782611b8c565b92915050565b6060600c80546105cc906130d6565b80601f01602080910402602001604051908101604052809291908181526020018280546105f8906130d6565b80156106455780601f1061061a57610100808354040283529160200191610645565b820191906000526020600020905b81548152906001019060200180831161062857829003601f168201915b5050505050905090565b6060600b61065c83611bdc565b60405160200161066d92919061312d565b6040516020818303038152906040529050919050565b60026000527f6add646517a5b0f6793cd5891b7937d28a5b2981a5d88ebc7cd776088fea90415460036020527fc3a24b0501bd2c13a7e57f2db4369ec4c223447539fc0724a9d55ac4a06ebd4d546106dc9060016131fe565b11156106fa5760405162461bcd60e51b815260040161057d90613216565b6002600052600a6020526000805160206137c0833981519152548151146107335760405162461bcd60e51b815260040161057d90613243565b6006546001600160a01b031632331461075e5760405162461bcd60e51b815260040161057d9061327a565b600e5460ff1615156001146107855760405162461bcd60e51b815260040161057d906132a1565b6002600052600a6020526000805160206137c0833981519152546040516370a0823160e01b81523360048201526001600160a01b038316906370a0823190602401602060405180830381865afa1580156107e3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061080791906132c8565b10156108255760405162461bcd60e51b815260040161057d906132e1565b60005b6002600052600a6020526000805160206137c0833981519152548110156109ca57336001600160a01b0316826001600160a01b0316636352211e85848151811061087457610874613329565b60200260200101516040518263ffffffff1660e01b815260040161089a91815260200190565b602060405180830381865afa1580156108b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108db919061333f565b6001600160a01b03161461092b5760405162461bcd60e51b81526020600482015260176024820152761cdbdb59481bd9881a5d195b5cc81b9bdd081bdddb9959604a1b604482015260640161057d565b816001600160a01b03166342842e0e3361094d6004546001600160a01b031690565b86858151811061095f5761095f613329565b60200260200101516040518463ffffffff1660e01b81526004016109859392919061335c565b600060405180830381600087803b15801561099f57600080fd5b505af11580156109b3573d6000803e3d6000fd5b5050505080806109c290613380565b915050610828565b506109e8336002600160405180602001604052806000815250611ce2565b5050565b6004546001600160a01b03163314610a165760405162461bcd60e51b815260040161057d9061339b565b600e805460ff19811660ff90911615179055565b6001600160a01b038516331480610a465750610a468533610493565b610aad5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161057d565b610aba8585858585611e05565b5050505050565b6004546001600160a01b03163314610aeb5760405162461bcd60e51b815260040161057d9061339b565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b60608151835114610b725760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161057d565b6000835167ffffffffffffffff811115610b8e57610b8e612b6a565b604051908082528060200260200182016040528015610bb7578160200160208202803683370190505b50905060005b8451811015610c2f57610c02858281518110610bdb57610bdb613329565b6020026020010151858381518110610bf557610bf5613329565b6020026020010151610515565b828281518110610c1457610c14613329565b6020908102919091010152610c2881613380565b9050610bbd565b509392505050565b6004546001600160a01b03163314610c615760405162461bcd60e51b815260040161057d9061339b565b60004711610c9d5760405162461bcd60e51b8152602060048201526009602482015268302062616c616e636560b81b604482015260640161057d565b476109e88282611faf565b6001600160a01b038316331480610cc45750610cc48333610493565b610ce05760405162461bcd60e51b815260040161057d906133d0565b610ceb8383836120c8565b505050565b6004546001600160a01b03163314610d1a5760405162461bcd60e51b815260040161057d9061339b565b610d246000612266565b565b600b8054610d33906130d6565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5f906130d6565b8015610dac5780601f10610d8157610100808354040283529160200191610dac565b820191906000526020600020905b815481529060010190602001808311610d8f57829003601f168201915b505050505081565b600360008190527f625b35f5e76f098dd7c3a05b10e2e5e78a4a01228d60c3b143426cdf36d26455546020919091527fcbc4e5fb02c3d1de23a9f1e014b4d2ee5aeaea9505df5e855c9210bf472495af54610e109060016131fe565b1115610e2e5760405162461bcd60e51b815260040161057d90613216565b6003600052600a6020526000805160206137a083398151915254815114610e675760405162461bcd60e51b815260040161057d90613243565b6006546001600160a01b0316323314610e925760405162461bcd60e51b815260040161057d9061327a565b600e5460ff161515600114610eb95760405162461bcd60e51b815260040161057d906132a1565b6003600052600a6020526000805160206137a0833981519152546040516370a0823160e01b81523360048201526001600160a01b038316906370a0823190602401602060405180830381865afa158015610f17573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f3b91906132c8565b1015610f595760405162461bcd60e51b815260040161057d906132e1565b60005b6003600052600a6020526000805160206137a0833981519152548110156110fe57336001600160a01b0316826001600160a01b0316636352211e858481518110610fa857610fa8613329565b60200260200101516040518263ffffffff1660e01b8152600401610fce91815260200190565b602060405180830381865afa158015610feb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061100f919061333f565b6001600160a01b03161461105f5760405162461bcd60e51b81526020600482015260176024820152761cdbdb59481bd9881a5d195b5cc81b9bdd081bdddb9959604a1b604482015260640161057d565b816001600160a01b03166342842e0e336110816004546001600160a01b031690565b86858151811061109357611093613329565b60200260200101516040518463ffffffff1660e01b81526004016110b99392919061335c565b600060405180830381600087803b1580156110d357600080fd5b505af11580156110e7573d6000803e3d6000fd5b5050505080806110f690613380565b915050610f5c565b506109e8336003600160405180602001604052806000815250611ce2565b6004546001600160a01b031633146111465760405162461bcd60e51b815260040161057d9061339b565b80516109e890600b9060208401906129d2565b6060600d80546105cc906130d6565b6109e83383836122b8565b600080527f5eff886ea0ce6ca488a3d6e336d6c0f75f46d19b42c06ce5ee98e42c96d256c75460036020527f3617319a054d772f909f7c479a2cebe5066e836a939412e32403c99029b92eff546111cb9060016131fe565b11156111e95760405162461bcd60e51b815260040161057d90613216565b60008052600a6020526000805160206137e0833981519152548151146112215760405162461bcd60e51b815260040161057d90613243565b6006546001600160a01b031632331461124c5760405162461bcd60e51b815260040161057d9061327a565b600e5460ff1615156001146112735760405162461bcd60e51b815260040161057d906132a1565b60008052600a6020526000805160206137e0833981519152546040516370a0823160e01b81523360048201526001600160a01b038316906370a0823190602401602060405180830381865afa1580156112d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112f491906132c8565b10156113125760405162461bcd60e51b815260040161057d906132e1565b60005b60008052600a6020526000805160206137e0833981519152548110156114b357336001600160a01b0316826001600160a01b0316636352211e85848151811061136057611360613329565b60200260200101516040518263ffffffff1660e01b815260040161138691815260200190565b602060405180830381865afa1580156113a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113c7919061333f565b6001600160a01b0316146114145760405162461bcd60e51b81526020600482015260146024820152731cdbdb59481a5d195b5cc81b9bdd081bdddb995960621b604482015260640161057d565b816001600160a01b03166342842e0e336114366004546001600160a01b031690565b86858151811061144857611448613329565b60200260200101516040518463ffffffff1660e01b815260040161146e9392919061335c565b600060405180830381600087803b15801561148857600080fd5b505af115801561149c573d6000803e3d6000fd5b5050505080806114ab90613380565b915050611315565b506109e8336000600160405180602001604052806000815250611ce2565b60016000527fad67d757c34507f157cacfa2e3153e9f260a2244f30428821be7be64587ac55f5460036020527fa15bc60c955c405d20d9149c709e2460f1c2d9a497496a7f46004d1772c3054c5461152a9060016131fe565b11156115485760405162461bcd60e51b815260040161057d90613216565b6001600052600a602052600080516020613800833981519152548151146115815760405162461bcd60e51b815260040161057d90613243565b6006546001600160a01b03163233146115ac5760405162461bcd60e51b815260040161057d9061327a565b600e5460ff1615156001146115d35760405162461bcd60e51b815260040161057d906132a1565b6001600052600a602052600080516020613800833981519152546040516370a0823160e01b81523360048201526001600160a01b038316906370a0823190602401602060405180830381865afa158015611631573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061165591906132c8565b10156116735760405162461bcd60e51b815260040161057d906132e1565b60005b6001600052600a6020526000805160206138008339815191525481101561181e57336001600160a01b0316826001600160a01b0316636352211e8584815181106116c2576116c2613329565b60200260200101516040518263ffffffff1660e01b81526004016116e891815260200190565b602060405180830381865afa158015611705573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611729919061333f565b6001600160a01b03161461177f5760405162461bcd60e51b815260206004820152601860248201527f736f6d65206f6620696e74656d73206e6f74206f776e65640000000000000000604482015260640161057d565b816001600160a01b03166342842e0e336117a16004546001600160a01b031690565b8685815181106117b3576117b3613329565b60200260200101516040518463ffffffff1660e01b81526004016117d99392919061335c565b600060405180830381600087803b1580156117f357600080fd5b505af1158015611807573d6000803e3d6000fd5b50505050808061181690613380565b915050611676565b506109e83360018060405180602001604052806000815250611ce2565b6004546001600160a01b031633146118655760405162461bcd60e51b815260040161057d9061339b565b8060008151811061187857611878613329565b6020908102919091018101516000805260089091527f5eff886ea0ce6ca488a3d6e336d6c0f75f46d19b42c06ce5ee98e42c96d256c7558051819060019081106118c4576118c4613329565b602090810291909101810151600160005260089091527fad67d757c34507f157cacfa2e3153e9f260a2244f30428821be7be64587ac55f5580518190600290811061191157611911613329565b602090810291909101810151600260005260089091527f6add646517a5b0f6793cd5891b7937d28a5b2981a5d88ebc7cd776088fea90415580518190600390811061195e5761195e613329565b602090810291909101810151600360005260089091527f625b35f5e76f098dd7c3a05b10e2e5e78a4a01228d60c3b143426cdf36d264555550565b6004546001600160a01b031633146119c35760405162461bcd60e51b815260040161057d9061339b565b600a6020526000805160206137e083398151915293909355600080516020613800833981519152919091556000805160206137c08339815191525560036000526000805160206137a083398151915255565b6001600160a01b038516331480611a315750611a318533610493565b611a4d5760405162461bcd60e51b815260040161057d906133d0565b610aba8585858585612399565b6004546001600160a01b03163314611a845760405162461bcd60e51b815260040161057d9061339b565b6001600160a01b038116611ae95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161057d565b611af281612266565b50565b60026005541415611b485760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161057d565b60026005556004546001600160a01b03163314611b775760405162461bcd60e51b815260040161057d9061339b565b611b828383836124d1565b5050600160055550565b60006001600160e01b03198216636cdb3d1360e11b1480611bbd57506001600160e01b031982166303a24d0760e21b145b806105b757506301ffc9a760e01b6001600160e01b03198316146105b7565b606081611c005750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c2a5780611c1481613380565b9150611c239050600a8361342f565b9150611c04565b60008167ffffffffffffffff811115611c4557611c45612b6a565b6040519080825280601f01601f191660200182016040528015611c6f576020820181803683370190505b5090505b8415611cda57611c84600183613443565b9150611c91600a8661345a565b611c9c9060306131fe565b60f81b818381518110611cb157611cb1613329565b60200101906001600160f81b031916908160001a905350611cd3600a8661342f565b9450611c73565b949350505050565b6001600160a01b038416611d425760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161057d565b336000611d4e856125e9565b90506000611d5b856125e9565b9050611d6c83600089858589612634565b6000868152602081815260408083206001600160a01b038b16845290915281208054879290611d9c9084906131fe565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611dfc83600089898989612642565b50505050505050565b8151835114611e265760405162461bcd60e51b815260040161057d9061346e565b6001600160a01b038416611e4c5760405162461bcd60e51b815260040161057d906134b6565b33611e5b818787878787612634565b60005b8451811015611f41576000858281518110611e7b57611e7b613329565b602002602001015190506000858381518110611e9957611e99613329565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015611ee95760405162461bcd60e51b815260040161057d906134fb565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611f269084906131fe565b9250508190555050505080611f3a90613380565b9050611e5e565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611f91929190613545565b60405180910390a4611fa781878787878761279e565b505050505050565b80471015611fff5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161057d565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461204c576040519150601f19603f3d011682016040523d82523d6000602084013e612051565b606091505b5050905080610ceb5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161057d565b6001600160a01b0383166120ee5760405162461bcd60e51b815260040161057d9061356a565b805182511461210f5760405162461bcd60e51b815260040161057d9061346e565b600033905061213281856000868660405180602001604052806000815250612634565b60005b83518110156121f757600084828151811061215257612152613329565b60200260200101519050600084838151811061217057612170613329565b602090810291909101810151600084815280835260408082206001600160a01b038c1683529093529190912054909150818110156121c05760405162461bcd60e51b815260040161057d906135ad565b6000928352602083815260408085206001600160a01b038b16865290915290922091039055806121ef81613380565b915050612135565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051612248929190613545565b60405180910390a46040805160208101909152600090525b50505050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561232c5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161057d565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166123bf5760405162461bcd60e51b815260040161057d906134b6565b3360006123cb856125e9565b905060006123d8856125e9565b90506123e8838989858589612634565b6000868152602081815260408083206001600160a01b038c168452909152902054858110156124295760405162461bcd60e51b815260040161057d906134fb565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a168252812080548892906124669084906131fe565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46124c6848a8a8a8a8a612642565b505050505050505050565b6001600160a01b0383166124f75760405162461bcd60e51b815260040161057d9061356a565b336000612503846125e9565b90506000612510846125e9565b905061253083876000858560405180602001604052806000815250612634565b6000858152602081815260408083206001600160a01b038a168452909152902054848110156125715760405162461bcd60e51b815260040161057d906135ad565b6000868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4604080516020810190915260009052611dfc565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061262357612623613329565b602090810291909101015292915050565b611fa7868686868686612859565b6001600160a01b0384163b15611fa75760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061268690899089908890889088906004016135f1565b6020604051808303816000875af19250505080156126c1575060408051601f3d908101601f191682019092526126be91810190613636565b60015b61276e576126cd613653565b806308c379a0141561270757506126e261366f565b806126ed5750612709565b8060405162461bcd60e51b815260040161057d9190612b3e565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161057d565b6001600160e01b0319811663f23a6e6160e01b14611dfc5760405162461bcd60e51b815260040161057d906136f9565b6001600160a01b0384163b15611fa75760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906127e29089908990889088908890600401613741565b6020604051808303816000875af192505050801561281d575060408051601f3d908101601f1916820190925261281a91810190613636565b60015b612829576126cd613653565b6001600160e01b0319811663bc197c8160e01b14611dfc5760405162461bcd60e51b815260040161057d906136f9565b6001600160a01b0385166128e05760005b83518110156128de5782818151811061288557612885613329565b6020026020010151600360008684815181106128a3576128a3613329565b6020026020010151815260200190815260200160002060008282546128c891906131fe565b909155506128d7905081613380565b905061286a565b505b6001600160a01b038416611fa75760005b8351811015611dfc57600084828151811061290e5761290e613329565b60200260200101519050600084838151811061292c5761292c613329565b60200260200101519050600060036000848152602001908152602001600020549050818110156129af5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a206275726e20616d6f756e74206578636565647320746f74604482015267616c537570706c7960c01b606482015260840161057d565b600092835260036020526040909220910390556129cb81613380565b90506128f1565b8280546129de906130d6565b90600052602060002090601f016020900481019282612a005760008555612a46565b82601f10612a1957805160ff1916838001178555612a46565b82800160010185558215612a46579182015b82811115612a46578251825591602001919060010190612a2b565b50612a52929150612a56565b5090565b5b80821115612a525760008155600101612a57565b6001600160a01b0381168114611af257600080fd5b60008060408385031215612a9357600080fd5b8235612a9e81612a6b565b946020939093013593505050565b6001600160e01b031981168114611af257600080fd5b600060208284031215612ad457600080fd5b8135612adf81612aac565b9392505050565b60005b83811015612b01578181015183820152602001612ae9565b838111156122605750506000910152565b60008151808452612b2a816020860160208601612ae6565b601f01601f19169290920160200192915050565b602081526000612adf6020830184612b12565b600060208284031215612b6357600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff81118282101715612ba657612ba6612b6a565b6040525050565b600067ffffffffffffffff821115612bc757612bc7612b6a565b5060051b60200190565b600082601f830112612be257600080fd5b81356020612bef82612bad565b604051612bfc8282612b80565b83815260059390931b8501820192828101915086841115612c1c57600080fd5b8286015b84811015612c375780358352918301918301612c20565b509695505050505050565b600060208284031215612c5457600080fd5b813567ffffffffffffffff811115612c6b57600080fd5b611cda84828501612bd1565b600067ffffffffffffffff831115612c9157612c91612b6a565b604051612ca8601f8501601f191660200182612b80565b809150838152848484011115612cbd57600080fd5b83836020830137600060208583010152509392505050565b600082601f830112612ce657600080fd5b612adf83833560208501612c77565b600080600080600060a08688031215612d0d57600080fd5b8535612d1881612a6b565b94506020860135612d2881612a6b565b9350604086013567ffffffffffffffff80821115612d4557600080fd5b612d5189838a01612bd1565b94506060880135915080821115612d6757600080fd5b612d7389838a01612bd1565b93506080880135915080821115612d8957600080fd5b50612d9688828901612cd5565b9150509295509295909350565b600060208284031215612db557600080fd5b8135612adf81612a6b565b60008060408385031215612dd357600080fd5b823567ffffffffffffffff80821115612deb57600080fd5b818501915085601f830112612dff57600080fd5b81356020612e0c82612bad565b604051612e198282612b80565b83815260059390931b8501820192828101915089841115612e3957600080fd5b948201945b83861015612e60578535612e5181612a6b565b82529482019490820190612e3e565b96505086013592505080821115612e7657600080fd5b50612e8385828601612bd1565b9150509250929050565b600081518084526020808501945080840160005b83811015612ebd57815187529582019590820190600101612ea1565b509495945050505050565b602081526000612adf6020830184612e8d565b600080600060608486031215612ef057600080fd5b8335612efb81612a6b565b9250602084013567ffffffffffffffff80821115612f1857600080fd5b612f2487838801612bd1565b93506040860135915080821115612f3a57600080fd5b50612f4786828701612bd1565b9150509250925092565b600060208284031215612f6357600080fd5b813567ffffffffffffffff811115612f7a57600080fd5b8201601f81018413612f8b57600080fd5b611cda84823560208401612c77565b60008060408385031215612fad57600080fd5b8235612fb881612a6b565b915060208301358015158114612fcd57600080fd5b809150509250929050565b60008060408385031215612feb57600080fd5b8235612ff681612a6b565b91506020830135612fcd81612a6b565b6000806000806080858703121561301c57600080fd5b5050823594602084013594506040840135936060013592509050565b600080600080600060a0868803121561305057600080fd5b853561305b81612a6b565b9450602086013561306b81612a6b565b93506040860135925060608601359150608086013567ffffffffffffffff81111561309557600080fd5b612d9688828901612cd5565b6000806000606084860312156130b657600080fd5b83356130c181612a6b565b95602085013595506040909401359392505050565b600181811c908216806130ea57607f821691505b6020821081141561310b57634e487b7160e01b600052602260045260246000fd5b50919050565b60008151613123818560208601612ae6565b9290920192915050565b600080845481600182811c91508083168061314957607f831692505b602080841082141561316957634e487b7160e01b86526022600452602486fd5b81801561317d576001811461318e576131bb565b60ff198616895284890196506131bb565b60008b81526020902060005b868110156131b35781548b82015290850190830161319a565b505084890196505b5050505050506131df6131ce8286613111565b64173539b7b760d91b815260050190565b95945050505050565b634e487b7160e01b600052601160045260246000fd5b60008219821115613211576132116131e8565b500190565b6020808252601390820152724578636565646564206d617820737570706c7960681b604082015260600190565b6020808252601d908201527f73616d7572616963617473206e756d62657220646f6e74206d61746368000000604082015260600190565b6020808252600d908201526c454f53204d696e74204f6e6c7960981b604082015260600190565b6020808252600d908201526c29b0b632902737ba1037b832b760991b604082015260600190565b6000602082840312156132da57600080fd5b5051919050565b60208082526028908201527f6e6f7420656e6f7567682053616d757261694361747320746f20636c61696d2060408201526718481d1a58dad95d60c21b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561335157600080fd5b8151612adf81612a6b565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6000600019821415613394576133946131e8565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261343e5761343e613419565b500490565b600082821015613455576134556131e8565b500390565b60008261346957613469613419565b500690565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6040815260006135586040830185612e8d565b82810360208401526131df8185612e8d565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061362b90830184612b12565b979650505050505050565b60006020828403121561364857600080fd5b8151612adf81612aac565b600060033d111561366c5760046000803e5060005160e01c5b90565b600060443d101561367d5790565b6040516003193d81016004833e81513d67ffffffffffffffff81602484011181841117156136ad57505050505090565b82850191508151818111156136c55750505050505090565b843d87010160208285010111156136df5750505050505090565b6136ee60208286010187612b80565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b0386811682528516602082015260a06040820181905260009061376d90830186612e8d565b828103606084015261377f8186612e8d565b905082810360808401526137938185612b12565b9897505050505050505056fea856840544dc26124927add067d799967eac11be13e14d82cc281ea46fa39759bff4442b8ed600beeb8e26b1279a0f0d14c6edfaec26d968ee13c86f7d4c2ba813da86008ba1c6922daee3e07db95305ef49ebced9f5467a0b8613fcc6b343e3bbc70db1b6c7afd11e79c0fb0051300458f1a3acb8ee9789d9b6b26c61ad9bc7a2646970667358221220fd0f8ff439a10df6dd8d6e0f611ea188a66e6938e5e39c7374c81ad147d323e164736f6c634300080b0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000117469636b657453616d757261694275726e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000354534200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d57426939523634534532534458774e7459677557614e416d63516e7132366161723847716b775a655947666a2f00000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): ticketSamuraiBurn
Arg [1] : symbol_ (string): TSB
Arg [2] : uri_ (string): ipfs://QmWBi9R64SE2SDXwNtYguWaNAmcQnq26aar8GqkwZeYGfj/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [4] : 7469636b657453616d757261694275726e000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 5453420000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d57426939523634534532534458774e7459677557614e41
Arg [9] : 6d63516e7132366161723847716b775a655947666a2f00000000000000000000


Deployed Bytecode Sourcemap

47600:7834:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28680:231;;;;;;:::i;:::-;;:::i;:::-;;;616:25:1;;;604:2;589:18;28680:231:0;;;;;;;;55228:195;;;;;;:::i;:::-;;:::i;:::-;;;1203:14:1;;1196:22;1178:41;;1166:2;1151:18;55228:195:0;1038:187:1;54492:80:0;54557:7;;;;54492:80;;54301:83;;;:::i;:::-;;;;;;;:::i;53996:291::-;;;;;;:::i;:::-;;:::i;51435:858::-;;;;;;:::i;:::-;;:::i;:::-;;48129:72;;;;;-1:-1:-1;;;;;48129:72:0;;;;;;-1:-1:-1;;;;;4008:32:1;;;3990:51;;3978:2;3963:18;48129:72:0;3844:203:1;53446:80:0;;;:::i;30619:442::-;;;;;;:::i;:::-;;:::i;49552:111::-;;;;;;:::i;:::-;;:::i;29077:524::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45011:122::-;;;;;;:::i;:::-;45068:4;44889:16;;;:12;:16;;;;;;-1:-1:-1;;;45011:122:0;54580:235;;;;;;:::i;:::-;;:::i;46906:353::-;;;;;;:::i;:::-;;:::i;7894:103::-;;;:::i;48411:33::-;;;:::i;47888:37::-;;47924:1;47888:37;;52301:840;;;;;;:::i;:::-;;:::i;47932:39::-;;47970:1;47932:39;;48244:44;;;;;;:::i;:::-;;;;;;;;;;;;;;7243:87;7316:6;;-1:-1:-1;;;;;7316:6:0;7243:87;;53817:108;;;;;;:::i;:::-;;:::i;54392:87::-;;;:::i;47978:36::-;;48013:1;47978:36;;29674:155;;;;;;:::i;:::-;;:::i;49671:865::-;;;;;;:::i;:::-;;:::i;44800:113::-;;;;;;:::i;:::-;44862:7;44889:16;;;:12;:16;;;;;;;44800:113;48348:54;;;;;;:::i;:::-;;;;;;;;;;;;;;50544:883;;;;;;:::i;:::-;;:::i;53156:276::-;;;;;;:::i;:::-;;:::i;29901:168::-;;;;;;:::i;:::-;-1:-1:-1;;;;;30024:27:0;;;30000:4;30024:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;29901:168;49236:308;;;;;;:::i;:::-;;:::i;30141:401::-;;;;;;:::i;:::-;;:::i;8152:201::-;;;;;;:::i;:::-;;:::i;53542:261::-;;;;;;:::i;:::-;;:::i;48021:33::-;;48053:1;48021:33;;28680:231;28766:7;-1:-1:-1;;;;;28794:21:0;;28786:77;;;;-1:-1:-1;;;28786:77:0;;12049:2:1;28786:77:0;;;12031:21:1;12088:2;12068:18;;;12061:30;12127:34;12107:18;;;12100:62;-1:-1:-1;;;12178:18:1;;;12171:41;12229:19;;28786:77:0;;;;;;;;;-1:-1:-1;28881:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;28881:22:0;;;;;;;;;;;;28680:231::o;55228:195::-;55350:4;55379:36;55403:11;55379:23;:36::i;:::-;55372:43;55228:195;-1:-1:-1;;55228:195:0:o;54301:83::-;54338:13;54371:5;54364:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54301:83;:::o;53996:291::-;54056:13;54124:19;54145:24;54162:6;54145:16;:24::i;:::-;54107:71;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54082:197;;53996:291;;;:::o;51435:858::-;48013:1;51544:19;;;;44889:12;51544:19;44889:16;;;51515:25;;51539:1;51515:25;:::i;:::-;:48;;51507:80;;;;-1:-1:-1;;;51507:80:0;;;;;;;:::i;:::-;48013:1;51633:29;;:19;:29;;-1:-1:-1;;;;;;;;;;;51633:29:0;51606:23;;:56;51598:98;;;;-1:-1:-1;;;51598:98:0;;;;;;;:::i;:::-;51741:5;;-1:-1:-1;;;;;51741:5:0;51766:9;51779:10;51766:23;51758:49;;;;-1:-1:-1;;;51758:49:0;;;;;;;:::i;:::-;51826:7;;;;:15;;:7;:15;51818:41;;;;-1:-1:-1;;;51818:41:0;;;;;;;:::i;:::-;48013:1;51910:29;;:19;:29;;-1:-1:-1;;;;;;;;;;;51910:29:0;;51879:27;-1:-1:-1;;;51879:27:0;;51895:10;51879:27;;;3990:51:1;-1:-1:-1;;;;;51879:15:0;;;;;3963:18:1;;51879:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:60;;51870:115;;;;-1:-1:-1;;;51870:115:0;;;;;;;:::i;:::-;52002:6;51996:242;48013:1;52019:29;;:19;:29;;-1:-1:-1;;;;;;;;;;;52019:29:0;52015:33;;51996:242;;;52113:10;-1:-1:-1;;;;;52075:48:0;:5;-1:-1:-1;;;;;52075:13:0;;52089:16;52106:1;52089:19;;;;;;;;:::i;:::-;;;;;;;52075:34;;;;;;;;;;;;;616:25:1;;604:2;589:18;;470:177;52075:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;52075:48:0;;52067:84;;;;-1:-1:-1;;;52067:84:0;;17227:2:1;52067:84:0;;;17209:21:1;17266:2;17246:18;;;17239:30;-1:-1:-1;;;17285:18:1;;;17278:53;17348:18;;52067:84:0;17025:347:1;52067:84:0;52162:5;-1:-1:-1;;;;;52162:22:0;;52185:10;52197:7;7316:6;;-1:-1:-1;;;;;7316:6:0;;7243:87;52197:7;52206:16;52223:1;52206:19;;;;;;;;:::i;:::-;;;;;;;52162:64;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52050:3;;;;;:::i;:::-;;;;51996:242;;;-1:-1:-1;52248:37:0;6047:10;48013:1;52279;52248:37;;;;;;;;;;;;:5;:37::i;:::-;51496:797;51435:858;:::o;53446:80::-;7316:6;;-1:-1:-1;;;;;7316:6:0;6047:10;7463:23;7455:68;;;;-1:-1:-1;;;7455:68:0;;;;;;;:::i;:::-;53511:7:::1;::::0;;-1:-1:-1;;53500:18:0;::::1;53511:7;::::0;;::::1;53510:8;53500:18;::::0;;53446:80::o;30619:442::-;-1:-1:-1;;;;;30852:20:0;;6047:10;30852:20;;:60;;-1:-1:-1;30876:36:0;30893:4;6047:10;29901:168;:::i;30876:36::-;30830:160;;;;-1:-1:-1;;;30830:160:0;;18460:2:1;30830:160:0;;;18442:21:1;18499:2;18479:18;;;18472:30;18538:34;18518:18;;;18511:62;-1:-1:-1;;;18589:18:1;;;18582:48;18647:19;;30830:160:0;18258:414:1;30830:160:0;31001:52;31024:4;31030:2;31034:3;31039:7;31048:4;31001:22;:52::i;:::-;30619:442;;;;;:::o;49552:111::-;7316:6;;-1:-1:-1;;;;;7316:6:0;6047:10;7463:23;7455:68;;;;-1:-1:-1;;;7455:68:0;;;;;;;:::i;:::-;49628:12:::1;:27:::0;;-1:-1:-1;;;;;;49628:27:0::1;-1:-1:-1::0;;;;;49628:27:0;;;::::1;::::0;;;::::1;::::0;;49552:111::o;29077:524::-;29233:16;29294:3;:10;29275:8;:15;:29;29267:83;;;;-1:-1:-1;;;29267:83:0;;18879:2:1;29267:83:0;;;18861:21:1;18918:2;18898:18;;;18891:30;18957:34;18937:18;;;18930:62;-1:-1:-1;;;19008:18:1;;;19001:39;19057:19;;29267:83:0;18677:405:1;29267:83:0;29363:30;29410:8;:15;29396:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29396:30:0;;29363:63;;29444:9;29439:122;29463:8;:15;29459:1;:19;29439:122;;;29519:30;29529:8;29538:1;29529:11;;;;;;;;:::i;:::-;;;;;;;29542:3;29546:1;29542:6;;;;;;;;:::i;:::-;;;;;;;29519:9;:30::i;:::-;29500:13;29514:1;29500:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;29480:3;;;:::i;:::-;;;29439:122;;;-1:-1:-1;29580:13:0;29077:524;-1:-1:-1;;;29077:524:0:o;54580:235::-;7316:6;;-1:-1:-1;;;;;7316:6:0;6047:10;7463:23;7455:68;;;;-1:-1:-1;;;7455:68:0;;;;;;;:::i;:::-;54686:1:::1;54662:21;:25;54654:47;;;::::0;-1:-1:-1;;;54654:47:0;;19289:2:1;54654:47:0::1;::::0;::::1;19271:21:1::0;19328:1;19308:18;;;19301:29;-1:-1:-1;;;19346:18:1;;;19339:39;19395:18;;54654:47:0::1;19087:332:1::0;54654:47:0::1;54730:21;54762:45;54788:8:::0;54730:21;54762:17:::1;:45::i;46906:353::-:0;-1:-1:-1;;;;;47071:23:0;;6047:10;47071:23;;:66;;-1:-1:-1;47098:39:0;47115:7;6047:10;29901:168;:::i;47098:39::-;47049:157;;;;-1:-1:-1;;;47049:157:0;;;;;;;:::i;:::-;47219:32;47230:7;47239:3;47244:6;47219:10;:32::i;:::-;46906:353;;;:::o;7894:103::-;7316:6;;-1:-1:-1;;;;;7316:6:0;6047:10;7463:23;7455:68;;;;-1:-1:-1;;;7455:68:0;;;;;;;:::i;:::-;7959:30:::1;7986:1;7959:18;:30::i;:::-;7894:103::o:0;48411:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52301:840::-;48053:1;52407:16;;;;;;;44889;;;;;;52381:22;;52402:1;52381:22;:::i;:::-;:42;;52373:74;;;;-1:-1:-1;;;52373:74:0;;;;;;;:::i;:::-;48053:1;52493:26;;:19;:26;;-1:-1:-1;;;;;;;;;;;52493:26:0;52466:23;;:53;52458:95;;;;-1:-1:-1;;;52458:95:0;;;;;;;:::i;:::-;52598:5;;-1:-1:-1;;;;;52598:5:0;52623:9;52636:10;52623:23;52615:49;;;;-1:-1:-1;;;52615:49:0;;;;;;;:::i;:::-;52683:7;;;;:15;;:7;:15;52675:41;;;;-1:-1:-1;;;52675:41:0;;;;;;;:::i;:::-;48053:1;52767:26;;:19;:26;;-1:-1:-1;;;;;;;;;;;52767:26:0;;52736:27;-1:-1:-1;;;52736:27:0;;52752:10;52736:27;;;3990:51:1;-1:-1:-1;;;;;52736:15:0;;;;;3963:18:1;;52736:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:57;;52727:112;;;;-1:-1:-1;;;52727:112:0;;;;;;;:::i;:::-;52856:6;52850:239;48053:1;52873:26;;:19;:26;;-1:-1:-1;;;;;;;;;;;52873:26:0;52869:30;;52850:239;;;52964:10;-1:-1:-1;;;;;52926:48:0;:5;-1:-1:-1;;;;;52926:13:0;;52940:16;52957:1;52940:19;;;;;;;;:::i;:::-;;;;;;;52926:34;;;;;;;;;;;;;616:25:1;;604:2;589:18;;470:177;52926:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;52926:48:0;;52918:84;;;;-1:-1:-1;;;52918:84:0;;17227:2:1;52918:84:0;;;17209:21:1;17266:2;17246:18;;;17239:30;-1:-1:-1;;;17285:18:1;;;17278:53;17348:18;;52918:84:0;17025:347:1;52918:84:0;53013:5;-1:-1:-1;;;;;53013:22:0;;53036:10;53048:7;7316:6;;-1:-1:-1;;;;;7316:6:0;;7243:87;53048:7;53057:16;53074:1;53057:19;;;;;;;;:::i;:::-;;;;;;;53013:64;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52901:3;;;;;:::i;:::-;;;;52850:239;;;-1:-1:-1;53099:34:0;6047:10;48053:1;53127;53099:34;;;;;;;;;;;;:5;:34::i;53817:108::-;7316:6;;-1:-1:-1;;;;;7316:6:0;6047:10;7463:23;7455:68;;;;-1:-1:-1;;;7455:68:0;;;;;;;:::i;:::-;53891:26;;::::1;::::0;:19:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;54392:87::-:0;54431:13;54464:7;54457:14;;;;;:::i;29674:155::-;29769:52;6047:10;29802:8;29812;29769:18;:52::i;49671:865::-;49785:20;;;;;44889:12;49785:20;44889:16;;;49755:26;;49780:1;49755:26;:::i;:::-;:50;;49747:82;;;;-1:-1:-1;;;49747:82:0;;;;;;;:::i;:::-;49875:30;;;:19;:30;;-1:-1:-1;;;;;;;;;;;49875:30:0;49848:23;;:57;49840:99;;;;-1:-1:-1;;;49840:99:0;;;;;;;:::i;:::-;49984:5;;-1:-1:-1;;;;;49984:5:0;50009:9;50022:10;50009:23;50001:49;;;;-1:-1:-1;;;50001:49:0;;;;;;;:::i;:::-;50069:7;;;;:15;;:7;:15;50061:41;;;;-1:-1:-1;;;50061:41:0;;;;;;;:::i;:::-;50153:30;;;:19;:30;;-1:-1:-1;;;;;;;;;;;50153:30:0;;50122:27;-1:-1:-1;;;50122:27:0;;50138:10;50122:27;;;3990:51:1;-1:-1:-1;;;;;50122:15:0;;;;;3963:18:1;;50122:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:61;;50113:116;;;;-1:-1:-1;;;50113:116:0;;;;;;;:::i;:::-;50246:6;50240:240;50263:30;;;:19;:30;;-1:-1:-1;;;;;;;;;;;50263:30:0;50259:34;;50240:240;;;50358:10;-1:-1:-1;;;;;50320:48:0;:5;-1:-1:-1;;;;;50320:13:0;;50334:16;50351:1;50334:19;;;;;;;;:::i;:::-;;;;;;;50320:34;;;;;;;;;;;;;616:25:1;;604:2;589:18;;470:177;50320:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;50320:48:0;;50312:81;;;;-1:-1:-1;;;50312:81:0;;20036:2:1;50312:81:0;;;20018:21:1;20075:2;20055:18;;;20048:30;-1:-1:-1;;;20094:18:1;;;20087:50;20154:18;;50312:81:0;19834:344:1;50312:81:0;50404:5;-1:-1:-1;;;;;50404:22:0;;50427:10;50439:7;7316:6;;-1:-1:-1;;;;;7316:6:0;;7243:87;50439:7;50448:16;50465:1;50448:19;;;;;;;;:::i;:::-;;;;;;;50404:64;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50295:3;;;;;:::i;:::-;;;;50240:240;;;-1:-1:-1;50490:38:0;6047:10;47924:1;50522;50490:38;;;;;;;;;;;;:5;:38::i;50544:883::-;47970:1;50662:22;;;;44889:12;50662:22;44889:16;;;50630:28;;50657:1;50630:28;:::i;:::-;:54;;50622:86;;;;-1:-1:-1;;;50622:86:0;;;;;;;:::i;:::-;47970:1;50754:32;;:19;:32;;-1:-1:-1;;;;;;;;;;;50754:32:0;50727:23;;:59;50719:101;;;;-1:-1:-1;;;50719:101:0;;;;;;;:::i;:::-;50865:5;;-1:-1:-1;;;;;50865:5:0;50890:9;50903:10;50890:23;50882:49;;;;-1:-1:-1;;;50882:49:0;;;;;;;:::i;:::-;50950:7;;;;:15;;:7;:15;50942:41;;;;-1:-1:-1;;;50942:41:0;;;;;;;:::i;:::-;47970:1;51034:32;;:19;:32;;-1:-1:-1;;;;;;;;;;;51034:32:0;;51003:27;-1:-1:-1;;;51003:27:0;;51019:10;51003:27;;;3990:51:1;-1:-1:-1;;;;;51003:15:0;;;;;3963:18:1;;51003:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:63;;50994:118;;;;-1:-1:-1;;;50994:118:0;;;;;;;:::i;:::-;51129:6;51123:246;47970:1;51146:32;;:19;:32;;-1:-1:-1;;;;;;;;;;;51146:32:0;51142:36;;51123:246;;;51243:10;-1:-1:-1;;;;;51205:48:0;:5;-1:-1:-1;;;;;51205:13:0;;51219:16;51236:1;51219:19;;;;;;;;:::i;:::-;;;;;;;51205:34;;;;;;;;;;;;;616:25:1;;604:2;589:18;;470:177;51205:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;51205:48:0;;51197:85;;;;-1:-1:-1;;;51197:85:0;;20385:2:1;51197:85:0;;;20367:21:1;20424:2;20404:18;;;20397:30;20463:26;20443:18;;;20436:54;20507:18;;51197:85:0;20183:348:1;51197:85:0;51293:5;-1:-1:-1;;;;;51293:22:0;;51316:10;51328:7;7316:6;;-1:-1:-1;;;;;7316:6:0;;7243:87;51328:7;51337:16;51354:1;51337:19;;;;;;;;:::i;:::-;;;;;;;51293:64;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51180:3;;;;;:::i;:::-;;;;51123:246;;;-1:-1:-1;51379:40:0;6047:10;47970:1;51413;51379:40;;;;;;;;;;;;:5;:40::i;53156:276::-;7316:6;;-1:-1:-1;;;;;7316:6:0;6047:10;7463:23;7455:68;;;;-1:-1:-1;;;7455:68:0;;;;;;;:::i;:::-;53262:12:::1;53275:1;53262:15;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;53239:20:::1;::::0;;:9:::1;:20:::0;;;;:38;53313:15;;:12;;53326:1:::1;::::0;53313:15;::::1;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;47970:1:::1;53288:22;::::0;:9:::1;:22:::0;;;;:40;53361:15;;:12;;53374:1:::1;::::0;53361:15;::::1;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;48013:1:::1;53339:19;::::0;:9:::1;:19:::0;;;;:37;53406:15;;:12;;53419:1:::1;::::0;53406:15;::::1;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;48053:1:::1;53387:16;::::0;:9:::1;:16:::0;;;;:34;-1:-1:-1;53156:276:0:o;49236:308::-;7316:6;;-1:-1:-1;;;;;7316:6:0;6047:10;7463:23;7455:68;;;;-1:-1:-1;;;7455:68:0;;;;;;;:::i;:::-;49341:19:::1;:30;::::0;-1:-1:-1;;;;;;;;;;;49341:38:0;;;;-1:-1:-1;;;;;;;;;;;49390:42:0;;;;-1:-1:-1;;;;;;;;;;;49443:38:0;48053:1:::1;49341:30;49492:26:::0;-1:-1:-1;;;;;;;;;;;49492:35:0;49236:308::o;30141:401::-;-1:-1:-1;;;;;30349:20:0;;6047:10;30349:20;;:60;;-1:-1:-1;30373:36:0;30390:4;6047:10;29901:168;:::i;30373:36::-;30327:151;;;;-1:-1:-1;;;30327:151:0;;;;;;;:::i;:::-;30489:45;30507:4;30513:2;30517;30521:6;30529:4;30489:17;:45::i;8152:201::-;7316:6;;-1:-1:-1;;;;;7316:6:0;6047:10;7463:23;7455:68;;;;-1:-1:-1;;;7455:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8241:22:0;::::1;8233:73;;;::::0;-1:-1:-1;;;8233:73:0;;20738:2:1;8233:73:0::1;::::0;::::1;20720:21:1::0;20777:2;20757:18;;;20750:30;20816:34;20796:18;;;20789:62;-1:-1:-1;;;20867:18:1;;;20860:36;20913:19;;8233:73:0::1;20536:402:1::0;8233:73:0::1;8317:28;8336:8;8317:18;:28::i;:::-;8152:201:::0;:::o;53542:261::-;4341:1;4939:7;;:19;;4931:63;;;;-1:-1:-1;;;4931:63:0;;21145:2:1;4931:63:0;;;21127:21:1;21184:2;21164:18;;;21157:30;21223:33;21203:18;;;21196:61;21274:18;;4931:63:0;20943:355:1;4931:63:0;4341:1;5072:7;:18;7316:6;;-1:-1:-1;;;;;7316:6:0;6047:10;7463:23:::1;7455:68;;;;-1:-1:-1::0;;;7455:68:0::1;;;;;;;:::i;:::-;53762:33:::2;53768:10;53780:6;53788;53762:5;:33::i;:::-;-1:-1:-1::0;;4297:1:0;5251:7;:22;-1:-1:-1;53542:261:0:o;27703:310::-;27805:4;-1:-1:-1;;;;;;27842:41:0;;-1:-1:-1;;;27842:41:0;;:110;;-1:-1:-1;;;;;;;27900:52:0;;-1:-1:-1;;;27900:52:0;27842:110;:163;;;-1:-1:-1;;;;;;;;;;19105:40:0;;;27969:36;18996:157;770:723;826:13;1047:10;1043:53;;-1:-1:-1;;1074:10:0;;;;;;;;;;;;-1:-1:-1;;;1074:10:0;;;;;770:723::o;1043:53::-;1121:5;1106:12;1162:78;1169:9;;1162:78;;1195:8;;;;:::i;:::-;;-1:-1:-1;1218:10:0;;-1:-1:-1;1226:2:0;1218:10;;:::i;:::-;;;1162:78;;;1250:19;1282:6;1272:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1272:17:0;;1250:39;;1300:154;1307:10;;1300:154;;1334:11;1344:1;1334:11;;:::i;:::-;;-1:-1:-1;1403:10:0;1411:2;1403:5;:10;:::i;:::-;1390:24;;:2;:24;:::i;:::-;1377:39;;1360:6;1367;1360:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1360:56:0;;;;;;;;-1:-1:-1;1431:11:0;1440:2;1431:11;;:::i;:::-;;;1300:154;;;1478:6;770:723;-1:-1:-1;;;;770:723:0:o;35321:729::-;-1:-1:-1;;;;;35474:16:0;;35466:62;;;;-1:-1:-1;;;35466:62:0;;22009:2:1;35466:62:0;;;21991:21:1;22048:2;22028:18;;;22021:30;22087:34;22067:18;;;22060:62;-1:-1:-1;;;22138:18:1;;;22131:31;22179:19;;35466:62:0;21807:397:1;35466:62:0;6047:10;35541:16;35606:21;35624:2;35606:17;:21::i;:::-;35583:44;;35638:24;35665:25;35683:6;35665:17;:25::i;:::-;35638:52;;35703:66;35724:8;35742:1;35746:2;35750:3;35755:7;35764:4;35703:20;:66::i;:::-;35782:9;:13;;;;;;;;;;;-1:-1:-1;;;;;35782:17:0;;;;;;;;;:27;;35803:6;;35782:9;:27;;35803:6;;35782:27;:::i;:::-;;;;-1:-1:-1;;35825:52:0;;;22383:25:1;;;22439:2;22424:18;;22417:34;;;-1:-1:-1;;;;;35825:52:0;;;;35858:1;;35825:52;;;;;;22356:18:1;35825:52:0;;;;;;;35968:74;35999:8;36017:1;36021:2;36025;36029:6;36037:4;35968:30;:74::i;:::-;35455:595;;;35321:729;;;;:::o;32857:1146::-;33084:7;:14;33070:3;:10;:28;33062:81;;;;-1:-1:-1;;;33062:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33162:16:0;;33154:66;;;;-1:-1:-1;;;33154:66:0;;;;;;;:::i;:::-;6047:10;33277:60;6047:10;33308:4;33314:2;33318:3;33323:7;33332:4;33277:20;:60::i;:::-;33355:9;33350:421;33374:3;:10;33370:1;:14;33350:421;;;33406:10;33419:3;33423:1;33419:6;;;;;;;;:::i;:::-;;;;;;;33406:19;;33440:14;33457:7;33465:1;33457:10;;;;;;;;:::i;:::-;;;;;;;;;;;;33484:19;33506:13;;;;;;;;;;-1:-1:-1;;;;;33506:19:0;;;;;;;;;;;;33457:10;;-1:-1:-1;33548:21:0;;;;33540:76;;;;-1:-1:-1;;;33540:76:0;;;;;;;:::i;:::-;33660:9;:13;;;;;;;;;;;-1:-1:-1;;;;;33660:19:0;;;;;;;;;;33682:20;;;33660:42;;33732:17;;;;;;;:27;;33682:20;;33660:9;33732:27;;33682:20;;33732:27;:::i;:::-;;;;;;;;33391:380;;;33386:3;;;;:::i;:::-;;;33350:421;;;;33818:2;-1:-1:-1;;;;;33788:47:0;33812:4;-1:-1:-1;;;;;33788:47:0;33802:8;-1:-1:-1;;;;;33788:47:0;;33822:3;33827:7;33788:47;;;;;;;:::i;:::-;;;;;;;;33920:75;33956:8;33966:4;33972:2;33976:3;33981:7;33990:4;33920:35;:75::i;:::-;33051:952;32857:1146;;;;;:::o;11205:317::-;11320:6;11295:21;:31;;11287:73;;;;-1:-1:-1;;;11287:73:0;;24360:2:1;11287:73:0;;;24342:21:1;24399:2;24379:18;;;24372:30;24438:31;24418:18;;;24411:59;24487:18;;11287:73:0;24158:353:1;11287:73:0;11374:12;11392:9;-1:-1:-1;;;;;11392:14:0;11414:6;11392:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11373:52;;;11444:7;11436:78;;;;-1:-1:-1;;;11436:78:0;;24928:2:1;11436:78:0;;;24910:21:1;24967:2;24947:18;;;24940:30;25006:34;24986:18;;;24979:62;25077:28;25057:18;;;25050:56;25123:19;;11436:78:0;24726:422:1;38480:969:0;-1:-1:-1;;;;;38632:18:0;;38624:66;;;;-1:-1:-1;;;38624:66:0;;;;;;;:::i;:::-;38723:7;:14;38709:3;:10;:28;38701:81;;;;-1:-1:-1;;;38701:81:0;;;;;;;:::i;:::-;38795:16;6047:10;38795:31;;38839:66;38860:8;38870:4;38884:1;38888:3;38893:7;38839:66;;;;;;;;;;;;:20;:66::i;:::-;38923:9;38918:373;38942:3;:10;38938:1;:14;38918:373;;;38974:10;38987:3;38991:1;38987:6;;;;;;;;:::i;:::-;;;;;;;38974:19;;39008:14;39025:7;39033:1;39025:10;;;;;;;;:::i;:::-;;;;;;;;;;;;39052:19;39074:13;;;;;;;;;;-1:-1:-1;;;;;39074:19:0;;;;;;;;;;;;39025:10;;-1:-1:-1;39116:21:0;;;;39108:70;;;;-1:-1:-1;;;39108:70:0;;;;;;;:::i;:::-;39222:9;:13;;;;;;;;;;;-1:-1:-1;;;;;39222:19:0;;;;;;;;;;39244:20;;39222:42;;38954:3;;;;:::i;:::-;;;;38918:373;;;;39346:1;-1:-1:-1;;;;;39308:55:0;39332:4;-1:-1:-1;;;;;39308:55:0;39322:8;-1:-1:-1;;;;;39308:55:0;;39350:3;39355:7;39308:55;;;;;;;:::i;:::-;;;;;;;;39376:65;;;;;;;;;39420:1;39376:65;;;38613:836;38480:969;;;:::o;8513:191::-;8606:6;;;-1:-1:-1;;;;;8623:17:0;;;-1:-1:-1;;;;;;8623:17:0;;;;;;;8656:40;;8606:6;;;8623:17;8606:6;;8656:40;;8587:16;;8656:40;8576:128;8513:191;:::o;39591:331::-;39746:8;-1:-1:-1;;;;;39737:17:0;:5;-1:-1:-1;;;;;39737:17:0;;;39729:71;;;;-1:-1:-1;;;39729:71:0;;26164:2:1;39729:71:0;;;26146:21:1;26203:2;26183:18;;;26176:30;26242:34;26222:18;;;26215:62;-1:-1:-1;;;26293:18:1;;;26286:39;26342:19;;39729:71:0;25962:405:1;39729:71:0;-1:-1:-1;;;;;39811:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;39811:46:0;;;;;;;;;;39873:41;;1178::1;;;39873::0;;1151:18:1;39873:41:0;;;;;;;39591:331;;;:::o;31525:974::-;-1:-1:-1;;;;;31713:16:0;;31705:66;;;;-1:-1:-1;;;31705:66:0;;;;;;;:::i;:::-;6047:10;31784:16;31849:21;31867:2;31849:17;:21::i;:::-;31826:44;;31881:24;31908:25;31926:6;31908:17;:25::i;:::-;31881:52;;31946:60;31967:8;31977:4;31983:2;31987:3;31992:7;32001:4;31946:20;:60::i;:::-;32019:19;32041:13;;;;;;;;;;;-1:-1:-1;;;;;32041:19:0;;;;;;;;;;32079:21;;;;32071:76;;;;-1:-1:-1;;;32071:76:0;;;;;;;:::i;:::-;32183:9;:13;;;;;;;;;;;-1:-1:-1;;;;;32183:19:0;;;;;;;;;;32205:20;;;32183:42;;32247:17;;;;;;;:27;;32205:20;;32183:9;32247:27;;32205:20;;32247:27;:::i;:::-;;;;-1:-1:-1;;32292:46:0;;;22383:25:1;;;22439:2;22424:18;;22417:34;;;-1:-1:-1;;;;;32292:46:0;;;;;;;;;;;;;;22356:18:1;32292:46:0;;;;;;;32423:68;32454:8;32464:4;32470:2;32474;32478:6;32486:4;32423:30;:68::i;:::-;31694:805;;;;31525:974;;;;;:::o;37469:808::-;-1:-1:-1;;;;;37596:18:0;;37588:66;;;;-1:-1:-1;;;37588:66:0;;;;;;;:::i;:::-;6047:10;37667:16;37732:21;37750:2;37732:17;:21::i;:::-;37709:44;;37764:24;37791:25;37809:6;37791:17;:25::i;:::-;37764:52;;37829:66;37850:8;37860:4;37874:1;37878:3;37883:7;37829:66;;;;;;;;;;;;:20;:66::i;:::-;37908:19;37930:13;;;;;;;;;;;-1:-1:-1;;;;;37930:19:0;;;;;;;;;;37968:21;;;;37960:70;;;;-1:-1:-1;;;37960:70:0;;;;;;;:::i;:::-;38066:9;:13;;;;;;;;;;;-1:-1:-1;;;;;38066:19:0;;;;;;;;;;;;38088:20;;;38066:42;;38137:54;;22383:25:1;;;22424:18;;;22417:34;;;38066:19:0;;38137:54;;;;;;22356:18:1;38137:54:0;;;;;;;38204:65;;;;;;;;;38248:1;38204:65;;;32857:1146;43855:198;43975:16;;;43989:1;43975:16;;;;;;;;;43921;;43950:22;;43975:16;;;;;;;;;;;;-1:-1:-1;43975:16:0;43950:41;;44013:7;44002:5;44008:1;44002:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;44040:5;43855:198;-1:-1:-1;;43855:198:0:o;54891:329::-;55146:66;55173:8;55183:4;55189:2;55193:3;55198:7;55207:4;55146:26;:66::i;42282:744::-;-1:-1:-1;;;;;42497:13:0;;10239:19;:23;42493:526;;42533:72;;-1:-1:-1;;;42533:72:0;;-1:-1:-1;;;;;42533:38:0;;;;;:72;;42572:8;;42582:4;;42588:2;;42592:6;;42600:4;;42533:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42533:72:0;;;;;;;;-1:-1:-1;;42533:72:0;;;;;;;;;;;;:::i;:::-;;;42529:479;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;42881:6;42874:14;;-1:-1:-1;;;42874:14:0;;;;;;;;:::i;42529:479::-;;;42930:62;;-1:-1:-1;;;42930:62:0;;28265:2:1;42930:62:0;;;28247:21:1;28304:2;28284:18;;;28277:30;28343:34;28323:18;;;28316:62;-1:-1:-1;;;28394:18:1;;;28387:50;28454:19;;42930:62:0;28063:416:1;42529:479:0;-1:-1:-1;;;;;;42655:55:0;;-1:-1:-1;;;42655:55:0;42651:154;;42735:50;;-1:-1:-1;;;42735:50:0;;;;;;;:::i;43034:813::-;-1:-1:-1;;;;;43274:13:0;;10239:19;:23;43270:570;;43310:79;;-1:-1:-1;;;43310:79:0;;-1:-1:-1;;;;;43310:43:0;;;;;:79;;43354:8;;43364:4;;43370:3;;43375:7;;43384:4;;43310:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43310:79:0;;;;;;;;-1:-1:-1;;43310:79:0;;;;;;;;;;;;:::i;:::-;;;43306:523;;;;:::i;:::-;-1:-1:-1;;;;;;43471:60:0;;-1:-1:-1;;;43471:60:0;43467:159;;43556:50;;-1:-1:-1;;;43556:50:0;;;;;;;:::i;45208:931::-;-1:-1:-1;;;;;45530:18:0;;45526:160;;45570:9;45565:110;45589:3;:10;45585:1;:14;45565:110;;;45649:7;45657:1;45649:10;;;;;;;;:::i;:::-;;;;;;;45625:12;:20;45638:3;45642:1;45638:6;;;;;;;;:::i;:::-;;;;;;;45625:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;45601:3:0;;-1:-1:-1;45601:3:0;;:::i;:::-;;;45565:110;;;;45526:160;-1:-1:-1;;;;;45702:16:0;;45698:434;;45740:9;45735:386;45759:3;:10;45755:1;:14;45735:386;;;45795:10;45808:3;45812:1;45808:6;;;;;;;;:::i;:::-;;;;;;;45795:19;;45833:14;45850:7;45858:1;45850:10;;;;;;;;:::i;:::-;;;;;;;45833:27;;45879:14;45896:12;:16;45909:2;45896:16;;;;;;;;;;;;45879:33;;45949:6;45939;:16;;45931:69;;;;-1:-1:-1;;;45931:69:0;;29938:2:1;45931:69:0;;;29920:21:1;29977:2;29957:18;;;29950:30;30016:34;29996:18;;;29989:62;-1:-1:-1;;;30067:18:1;;;30060:38;30115:19;;45931:69:0;29736:404:1;45931:69:0;46052:16;;;;:12;:16;;;;;;46071:15;;46052:34;;45771:3;;;:::i;:::-;;;45735:386;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;89:31:1;;79:42;;69:70;;135:1;132;125:12;150:315;218:6;226;279:2;267:9;258:7;254:23;250:32;247:52;;;295:1;292;285:12;247:52;334:9;321:23;353:31;378:5;353:31;:::i;:::-;403:5;455:2;440:18;;;;427:32;;-1:-1:-1;;;150:315:1:o;652:131::-;-1:-1:-1;;;;;;726:32:1;;716:43;;706:71;;773:1;770;763:12;788:245;846:6;899:2;887:9;878:7;874:23;870:32;867:52;;;915:1;912;905:12;867:52;954:9;941:23;973:30;997:5;973:30;:::i;:::-;1022:5;788:245;-1:-1:-1;;;788:245:1:o;1230:258::-;1302:1;1312:113;1326:6;1323:1;1320:13;1312:113;;;1402:11;;;1396:18;1383:11;;;1376:39;1348:2;1341:10;1312:113;;;1443:6;1440:1;1437:13;1434:48;;;-1:-1:-1;;1478:1:1;1460:16;;1453:27;1230:258::o;1493:269::-;1546:3;1584:5;1578:12;1611:6;1606:3;1599:19;1627:63;1683:6;1676:4;1671:3;1667:14;1660:4;1653:5;1649:16;1627:63;:::i;:::-;1744:2;1723:15;-1:-1:-1;;1719:29:1;1710:39;;;;1751:4;1706:50;;1493:269;-1:-1:-1;;1493:269:1:o;1767:231::-;1916:2;1905:9;1898:21;1879:4;1936:56;1988:2;1977:9;1973:18;1965:6;1936:56;:::i;2003:180::-;2062:6;2115:2;2103:9;2094:7;2090:23;2086:32;2083:52;;;2131:1;2128;2121:12;2083:52;-1:-1:-1;2154:23:1;;2003:180;-1:-1:-1;2003:180:1:o;2188:127::-;2249:10;2244:3;2240:20;2237:1;2230:31;2280:4;2277:1;2270:15;2304:4;2301:1;2294:15;2320:249;2430:2;2411:13;;-1:-1:-1;;2407:27:1;2395:40;;2465:18;2450:34;;2486:22;;;2447:62;2444:88;;;2512:18;;:::i;:::-;2548:2;2541:22;-1:-1:-1;;2320:249:1:o;2574:183::-;2634:4;2667:18;2659:6;2656:30;2653:56;;;2689:18;;:::i;:::-;-1:-1:-1;2734:1:1;2730:14;2746:4;2726:25;;2574:183::o;2762:724::-;2816:5;2869:3;2862:4;2854:6;2850:17;2846:27;2836:55;;2887:1;2884;2877:12;2836:55;2923:6;2910:20;2949:4;2972:43;3012:2;2972:43;:::i;:::-;3044:2;3038:9;3056:31;3084:2;3076:6;3056:31;:::i;:::-;3122:18;;;3214:1;3210:10;;;;3198:23;;3194:32;;;3156:15;;;;-1:-1:-1;3238:15:1;;;3235:35;;;3266:1;3263;3256:12;3235:35;3302:2;3294:6;3290:15;3314:142;3330:6;3325:3;3322:15;3314:142;;;3396:17;;3384:30;;3434:12;;;;3347;;3314:142;;;-1:-1:-1;3474:6:1;2762:724;-1:-1:-1;;;;;;2762:724:1:o;3491:348::-;3575:6;3628:2;3616:9;3607:7;3603:23;3599:32;3596:52;;;3644:1;3641;3634:12;3596:52;3684:9;3671:23;3717:18;3709:6;3706:30;3703:50;;;3749:1;3746;3739:12;3703:50;3772:61;3825:7;3816:6;3805:9;3801:22;3772:61;:::i;4052:468::-;4116:5;4150:18;4142:6;4139:30;4136:56;;;4172:18;;:::i;:::-;4221:2;4215:9;4233:69;4290:2;4269:15;;-1:-1:-1;;4265:29:1;4296:4;4261:40;4215:9;4233:69;:::i;:::-;4320:6;4311:15;;4350:6;4342;4335:22;4390:3;4381:6;4376:3;4372:16;4369:25;4366:45;;;4407:1;4404;4397:12;4366:45;4457:6;4452:3;4445:4;4437:6;4433:17;4420:44;4512:1;4505:4;4496:6;4488;4484:19;4480:30;4473:41;;4052:468;;;;;:::o;4525:220::-;4567:5;4620:3;4613:4;4605:6;4601:17;4597:27;4587:55;;4638:1;4635;4628:12;4587:55;4660:79;4735:3;4726:6;4713:20;4706:4;4698:6;4694:17;4660:79;:::i;4750:1071::-;4904:6;4912;4920;4928;4936;4989:3;4977:9;4968:7;4964:23;4960:33;4957:53;;;5006:1;5003;4996:12;4957:53;5045:9;5032:23;5064:31;5089:5;5064:31;:::i;:::-;5114:5;-1:-1:-1;5171:2:1;5156:18;;5143:32;5184:33;5143:32;5184:33;:::i;:::-;5236:7;-1:-1:-1;5294:2:1;5279:18;;5266:32;5317:18;5347:14;;;5344:34;;;5374:1;5371;5364:12;5344:34;5397:61;5450:7;5441:6;5430:9;5426:22;5397:61;:::i;:::-;5387:71;;5511:2;5500:9;5496:18;5483:32;5467:48;;5540:2;5530:8;5527:16;5524:36;;;5556:1;5553;5546:12;5524:36;5579:63;5634:7;5623:8;5612:9;5608:24;5579:63;:::i;:::-;5569:73;;5695:3;5684:9;5680:19;5667:33;5651:49;;5725:2;5715:8;5712:16;5709:36;;;5741:1;5738;5731:12;5709:36;;5764:51;5807:7;5796:8;5785:9;5781:24;5764:51;:::i;:::-;5754:61;;;4750:1071;;;;;;;;:::o;5826:247::-;5885:6;5938:2;5926:9;5917:7;5913:23;5909:32;5906:52;;;5954:1;5951;5944:12;5906:52;5993:9;5980:23;6012:31;6037:5;6012:31;:::i;6078:1277::-;6196:6;6204;6257:2;6245:9;6236:7;6232:23;6228:32;6225:52;;;6273:1;6270;6263:12;6225:52;6313:9;6300:23;6342:18;6383:2;6375:6;6372:14;6369:34;;;6399:1;6396;6389:12;6369:34;6437:6;6426:9;6422:22;6412:32;;6482:7;6475:4;6471:2;6467:13;6463:27;6453:55;;6504:1;6501;6494:12;6453:55;6540:2;6527:16;6562:4;6585:43;6625:2;6585:43;:::i;:::-;6657:2;6651:9;6669:31;6697:2;6689:6;6669:31;:::i;:::-;6735:18;;;6823:1;6819:10;;;;6811:19;;6807:28;;;6769:15;;;;-1:-1:-1;6847:19:1;;;6844:39;;;6879:1;6876;6869:12;6844:39;6903:11;;;;6923:217;6939:6;6934:3;6931:15;6923:217;;;7019:3;7006:17;7036:31;7061:5;7036:31;:::i;:::-;7080:18;;6956:12;;;;7118;;;;6923:217;;;7159:6;-1:-1:-1;;7203:18:1;;7190:32;;-1:-1:-1;;7234:16:1;;;7231:36;;;7263:1;7260;7253:12;7231:36;;7286:63;7341:7;7330:8;7319:9;7315:24;7286:63;:::i;:::-;7276:73;;;6078:1277;;;;;:::o;7360:435::-;7413:3;7451:5;7445:12;7478:6;7473:3;7466:19;7504:4;7533:2;7528:3;7524:12;7517:19;;7570:2;7563:5;7559:14;7591:1;7601:169;7615:6;7612:1;7609:13;7601:169;;;7676:13;;7664:26;;7710:12;;;;7745:15;;;;7637:1;7630:9;7601:169;;;-1:-1:-1;7786:3:1;;7360:435;-1:-1:-1;;;;;7360:435:1:o;7800:261::-;7979:2;7968:9;7961:21;7942:4;7999:56;8051:2;8040:9;8036:18;8028:6;7999:56;:::i;8326:730::-;8453:6;8461;8469;8522:2;8510:9;8501:7;8497:23;8493:32;8490:52;;;8538:1;8535;8528:12;8490:52;8577:9;8564:23;8596:31;8621:5;8596:31;:::i;:::-;8646:5;-1:-1:-1;8702:2:1;8687:18;;8674:32;8725:18;8755:14;;;8752:34;;;8782:1;8779;8772:12;8752:34;8805:61;8858:7;8849:6;8838:9;8834:22;8805:61;:::i;:::-;8795:71;;8919:2;8908:9;8904:18;8891:32;8875:48;;8948:2;8938:8;8935:16;8932:36;;;8964:1;8961;8954:12;8932:36;;8987:63;9042:7;9031:8;9020:9;9016:24;8987:63;:::i;:::-;8977:73;;;8326:730;;;;;:::o;9061:450::-;9130:6;9183:2;9171:9;9162:7;9158:23;9154:32;9151:52;;;9199:1;9196;9189:12;9151:52;9239:9;9226:23;9272:18;9264:6;9261:30;9258:50;;;9304:1;9301;9294:12;9258:50;9327:22;;9380:4;9372:13;;9368:27;-1:-1:-1;9358:55:1;;9409:1;9406;9399:12;9358:55;9432:73;9497:7;9492:2;9479:16;9474:2;9470;9466:11;9432:73;:::i;9516:416::-;9581:6;9589;9642:2;9630:9;9621:7;9617:23;9613:32;9610:52;;;9658:1;9655;9648:12;9610:52;9697:9;9684:23;9716:31;9741:5;9716:31;:::i;:::-;9766:5;-1:-1:-1;9823:2:1;9808:18;;9795:32;9865:15;;9858:23;9846:36;;9836:64;;9896:1;9893;9886:12;9836:64;9919:7;9909:17;;;9516:416;;;;;:::o;9937:388::-;10005:6;10013;10066:2;10054:9;10045:7;10041:23;10037:32;10034:52;;;10082:1;10079;10072:12;10034:52;10121:9;10108:23;10140:31;10165:5;10140:31;:::i;:::-;10190:5;-1:-1:-1;10247:2:1;10232:18;;10219:32;10260:33;10219:32;10260:33;:::i;10330:385::-;10416:6;10424;10432;10440;10493:3;10481:9;10472:7;10468:23;10464:33;10461:53;;;10510:1;10507;10500:12;10461:53;-1:-1:-1;;10533:23:1;;;10603:2;10588:18;;10575:32;;-1:-1:-1;10654:2:1;10639:18;;10626:32;;10705:2;10690:18;10677:32;;-1:-1:-1;10330:385:1;-1:-1:-1;10330:385:1:o;10720:734::-;10824:6;10832;10840;10848;10856;10909:3;10897:9;10888:7;10884:23;10880:33;10877:53;;;10926:1;10923;10916:12;10877:53;10965:9;10952:23;10984:31;11009:5;10984:31;:::i;:::-;11034:5;-1:-1:-1;11091:2:1;11076:18;;11063:32;11104:33;11063:32;11104:33;:::i;:::-;11156:7;-1:-1:-1;11210:2:1;11195:18;;11182:32;;-1:-1:-1;11261:2:1;11246:18;;11233:32;;-1:-1:-1;11316:3:1;11301:19;;11288:33;11344:18;11333:30;;11330:50;;;11376:1;11373;11366:12;11330:50;11399:49;11440:7;11431:6;11420:9;11416:22;11399:49;:::i;11459:383::-;11536:6;11544;11552;11605:2;11593:9;11584:7;11580:23;11576:32;11573:52;;;11621:1;11618;11611:12;11573:52;11660:9;11647:23;11679:31;11704:5;11679:31;:::i;:::-;11729:5;11781:2;11766:18;;11753:32;;-1:-1:-1;11832:2:1;11817:18;;;11804:32;;11459:383;-1:-1:-1;;;11459:383:1:o;12259:380::-;12338:1;12334:12;;;;12381;;;12402:61;;12456:4;12448:6;12444:17;12434:27;;12402:61;12509:2;12501:6;12498:14;12478:18;12475:38;12472:161;;;12555:10;12550:3;12546:20;12543:1;12536:31;12590:4;12587:1;12580:15;12618:4;12615:1;12608:15;12472:161;;12259:380;;;:::o;12770:185::-;12812:3;12850:5;12844:12;12865:52;12910:6;12905:3;12898:4;12891:5;12887:16;12865:52;:::i;:::-;12933:16;;;;;12770:185;-1:-1:-1;;12770:185:1:o;13078:1301::-;13355:3;13384:1;13417:6;13411:13;13447:3;13469:1;13497:9;13493:2;13489:18;13479:28;;13557:2;13546:9;13542:18;13579;13569:61;;13623:4;13615:6;13611:17;13601:27;;13569:61;13649:2;13697;13689:6;13686:14;13666:18;13663:38;13660:165;;;-1:-1:-1;;;13724:33:1;;13780:4;13777:1;13770:15;13810:4;13731:3;13798:17;13660:165;13841:18;13868:104;;;;13986:1;13981:320;;;;13834:467;;13868:104;-1:-1:-1;;13901:24:1;;13889:37;;13946:16;;;;-1:-1:-1;13868:104:1;;13981:320;12717:1;12710:14;;;12754:4;12741:18;;14076:1;14090:165;14104:6;14101:1;14098:13;14090:165;;;14182:14;;14169:11;;;14162:35;14225:16;;;;14119:10;;14090:165;;;14094:3;;14284:6;14279:3;14275:16;14268:23;;13834:467;;;;;;;14317:56;14342:30;14368:3;14360:6;14342:30;:::i;:::-;-1:-1:-1;;;13020:20:1;;13065:1;13056:11;;12960:113;14317:56;14310:63;13078:1301;-1:-1:-1;;;;;13078:1301:1:o;14384:127::-;14445:10;14440:3;14436:20;14433:1;14426:31;14476:4;14473:1;14466:15;14500:4;14497:1;14490:15;14516:128;14556:3;14587:1;14583:6;14580:1;14577:13;14574:39;;;14593:18;;:::i;:::-;-1:-1:-1;14629:9:1;;14516:128::o;14649:343::-;14851:2;14833:21;;;14890:2;14870:18;;;14863:30;-1:-1:-1;;;14924:2:1;14909:18;;14902:49;14983:2;14968:18;;14649:343::o;14997:353::-;15199:2;15181:21;;;15238:2;15218:18;;;15211:30;15277:31;15272:2;15257:18;;15250:59;15341:2;15326:18;;14997:353::o;15355:337::-;15557:2;15539:21;;;15596:2;15576:18;;;15569:30;-1:-1:-1;;;15630:2:1;15615:18;;15608:43;15683:2;15668:18;;15355:337::o;15697:::-;15899:2;15881:21;;;15938:2;15918:18;;;15911:30;-1:-1:-1;;;15972:2:1;15957:18;;15950:43;16025:2;16010:18;;15697:337::o;16039:184::-;16109:6;16162:2;16150:9;16141:7;16137:23;16133:32;16130:52;;;16178:1;16175;16168:12;16130:52;-1:-1:-1;16201:16:1;;16039:184;-1:-1:-1;16039:184:1:o;16228:404::-;16430:2;16412:21;;;16469:2;16449:18;;;16442:30;16508:34;16503:2;16488:18;;16481:62;-1:-1:-1;;;16574:2:1;16559:18;;16552:38;16622:3;16607:19;;16228:404::o;16637:127::-;16698:10;16693:3;16689:20;16686:1;16679:31;16729:4;16726:1;16719:15;16753:4;16750:1;16743:15;16769:251;16839:6;16892:2;16880:9;16871:7;16867:23;16863:32;16860:52;;;16908:1;16905;16898:12;16860:52;16940:9;16934:16;16959:31;16984:5;16959:31;:::i;17377:375::-;-1:-1:-1;;;;;17635:15:1;;;17617:34;;17687:15;;;;17682:2;17667:18;;17660:43;17734:2;17719:18;;17712:34;;;;17567:2;17552:18;;17377:375::o;17757:135::-;17796:3;-1:-1:-1;;17817:17:1;;17814:43;;;17837:18;;:::i;:::-;-1:-1:-1;17884:1:1;17873:13;;17757:135::o;17897:356::-;18099:2;18081:21;;;18118:18;;;18111:30;18177:34;18172:2;18157:18;;18150:62;18244:2;18229:18;;17897:356::o;19424:405::-;19626:2;19608:21;;;19665:2;19645:18;;;19638:30;19704:34;19699:2;19684:18;;19677:62;-1:-1:-1;;;19770:2:1;19755:18;;19748:39;19819:3;19804:19;;19424:405::o;21303:127::-;21364:10;21359:3;21355:20;21352:1;21345:31;21395:4;21392:1;21385:15;21419:4;21416:1;21409:15;21435:120;21475:1;21501;21491:35;;21506:18;;:::i;:::-;-1:-1:-1;21540:9:1;;21435:120::o;21560:125::-;21600:4;21628:1;21625;21622:8;21619:34;;;21633:18;;:::i;:::-;-1:-1:-1;21670:9:1;;21560:125::o;21690:112::-;21722:1;21748;21738:35;;21753:18;;:::i;:::-;-1:-1:-1;21787:9:1;;21690:112::o;22462:404::-;22664:2;22646:21;;;22703:2;22683:18;;;22676:30;22742:34;22737:2;22722:18;;22715:62;-1:-1:-1;;;22808:2:1;22793:18;;22786:38;22856:3;22841:19;;22462:404::o;22871:401::-;23073:2;23055:21;;;23112:2;23092:18;;;23085:30;23151:34;23146:2;23131:18;;23124:62;-1:-1:-1;;;23217:2:1;23202:18;;23195:35;23262:3;23247:19;;22871:401::o;23277:406::-;23479:2;23461:21;;;23518:2;23498:18;;;23491:30;23557:34;23552:2;23537:18;;23530:62;-1:-1:-1;;;23623:2:1;23608:18;;23601:40;23673:3;23658:19;;23277:406::o;23688:465::-;23945:2;23934:9;23927:21;23908:4;23971:56;24023:2;24012:9;24008:18;24000:6;23971:56;:::i;:::-;24075:9;24067:6;24063:22;24058:2;24047:9;24043:18;24036:50;24103:44;24140:6;24132;24103:44;:::i;25153:399::-;25355:2;25337:21;;;25394:2;25374:18;;;25367:30;25433:34;25428:2;25413:18;;25406:62;-1:-1:-1;;;25499:2:1;25484:18;;25477:33;25542:3;25527:19;;25153:399::o;25557:400::-;25759:2;25741:21;;;25798:2;25778:18;;;25771:30;25837:34;25832:2;25817:18;;25810:62;-1:-1:-1;;;25903:2:1;25888:18;;25881:34;25947:3;25932:19;;25557:400::o;26372:572::-;-1:-1:-1;;;;;26669:15:1;;;26651:34;;26721:15;;26716:2;26701:18;;26694:43;26768:2;26753:18;;26746:34;;;26811:2;26796:18;;26789:34;;;26631:3;26854;26839:19;;26832:32;;;26594:4;;26881:57;;26918:19;;26910:6;26881:57;:::i;:::-;26873:65;26372:572;-1:-1:-1;;;;;;;26372:572:1:o;26949:249::-;27018:6;27071:2;27059:9;27050:7;27046:23;27042:32;27039:52;;;27087:1;27084;27077:12;27039:52;27119:9;27113:16;27138:30;27162:5;27138:30;:::i;27203:179::-;27238:3;27280:1;27262:16;27259:23;27256:120;;;27326:1;27323;27320;27305:23;-1:-1:-1;27363:1:1;27357:8;27352:3;27348:18;27256:120;27203:179;:::o;27387:671::-;27426:3;27468:4;27450:16;27447:26;27444:39;;;27387:671;:::o;27444:39::-;27510:2;27504:9;-1:-1:-1;;27575:16:1;27571:25;;27568:1;27504:9;27547:50;27626:4;27620:11;27650:16;27685:18;27756:2;27749:4;27741:6;27737:17;27734:25;27729:2;27721:6;27718:14;27715:45;27712:58;;;27763:5;;;;;27387:671;:::o;27712:58::-;27800:6;27794:4;27790:17;27779:28;;27836:3;27830:10;27863:2;27855:6;27852:14;27849:27;;;27869:5;;;;;;27387:671;:::o;27849:27::-;27953:2;27934:16;27928:4;27924:27;27920:36;27913:4;27904:6;27899:3;27895:16;27891:27;27888:69;27885:82;;;27960:5;;;;;;27387:671;:::o;27885:82::-;27976:57;28027:4;28018:6;28010;28006:19;28002:30;27996:4;27976:57;:::i;:::-;-1:-1:-1;28049:3:1;;27387:671;-1:-1:-1;;;;;27387:671:1:o;28484:404::-;28686:2;28668:21;;;28725:2;28705:18;;;28698:30;28764:34;28759:2;28744:18;;28737:62;-1:-1:-1;;;28830:2:1;28815:18;;28808:38;28878:3;28863:19;;28484:404::o;28893:838::-;-1:-1:-1;;;;;29290:15:1;;;29272:34;;29342:15;;29337:2;29322:18;;29315:43;29252:3;29389:2;29374:18;;29367:31;;;29215:4;;29421:57;;29458:19;;29450:6;29421:57;:::i;:::-;29526:9;29518:6;29514:22;29509:2;29498:9;29494:18;29487:50;29560:44;29597:6;29589;29560:44;:::i;:::-;29546:58;;29653:9;29645:6;29641:22;29635:3;29624:9;29620:19;29613:51;29681:44;29718:6;29710;29681:44;:::i;:::-;29673:52;28893:838;-1:-1:-1;;;;;;;;28893:838:1:o

Swarm Source

ipfs://fd0f8ff439a10df6dd8d6e0f611ea188a66e6938e5e39c7374c81ad147d323e1
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.