Address Details
contract

0x5771445e2C919AabBE5BA389fD909D41873bE7a9

Contract Name
CarboToken
Creator
0x8feb29–eb3c66 at 0x44a734–6dbe51
Balance
0 CELO ( )
Locked CELO Balance
0.00 CELO
Voting CELO Balance
0.00 CELO
Pending Unlocked Gold
0.00 CELO
Tokens
Fetching tokens...
Transactions
0 Transactions
Transfers
0 Transfers
Gas Used
Fetching gas used...
Last Balance Update
10722093
This contract has been verified via Sourcify. View contract in Sourcify repository
Contract name:
CarboToken




Optimization enabled
false
Compiler version
v0.8.4+commit.c7e474f2




EVM Version
istanbul




Verified at
2023-03-15T06:13:11.578738Z

contracts/CarboToken.sol

// SPDX-License-Identifier: MIT

//   ▄████▄   ▄▄▄       ██▀███   ▄▄▄▄    ▒█████  
//  ▒██▀ ▀█  ▒████▄    ▓██ ▒ ██▒▓█████▄ ▒██▒  ██▒
//  ▒▓█    ▄ ▒██  ▀█▄  ▓██ ░▄█ ▒▒██▒ ▄██▒██░  ██▒
//  ▒▓▓▄ ▄██▒░██▄▄▄▄██ ▒██▀▀█▄  ▒██░█▀  ▒██   ██░
//  ▒ ▓███▀ ░ ▓█   ▓██▒░██▓ ▒██▒░▓█  ▀█▓░ ████▓▒░
//  ░ ░▒ ▒  ░ ▒▒   ▓▒█░░ ▒▓ ░▒▓░░▒▓███▀▒░ ▒░▒░▒░ 
//    ░  ▒     ▒   ▒▒ ░  ░▒ ░ ▒░▒░▒   ░   ░ ▒ ▒░ 
//  ░          ░   ▒     ░░   ░  ░    ░ ░ ░ ░ ▒  
//  ░ ░            ░  ░   ░      ░          ░ ░  
//  ░                                 ░          
                                                      
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";

contract CarboToken is ERC721URIStorage, ERC721Enumerable, Ownable {

    // Burn Storage
    address public _burnAddress = 0x8d891cFFaEc8Dd6E571B717872db8095541110b2;

    mapping (address => string) _parties;

    struct Product {
        uint256 id;
        string name;
    }
    mapping (uint256 => Product) products;
    uint256 productCount = 0;
    uint256 transactionCount = 0;

    constructor(string memory merchantName, string memory merchantSymbol) ERC721(merchantName, merchantSymbol) {
        require(bytes(merchantName).length != 0, "Merchant name cannot be blank!");
        require(bytes(merchantSymbol).length != 0, "Merchant symbol cannot be blank!");
    }

    function addProducts(string memory productName) public onlyOwner{
        products[productCount] = Product(productCount, productName);
        productCount++;
    }

    function addParty(address _address, string memory _type) public onlyOwner {
        _parties[_address] = _type;
    }

    function changeBurnAddress(address _newAddress) public onlyOwner {
        _burnAddress = _newAddress;
    }


    function createTransaction(address _nextParty, string memory tokenUri) public returns (uint256 tokenID) {
        require(keccak256(bytes(_parties[msg.sender])) == keccak256(bytes("Production")), "Only production can create transaction");
        mint(_nextParty);
        transactionCount++;
        _setTokenURI(transactionCount, tokenUri);
        return transactionCount;
    }

    function holderSign(address _nextParty, uint256 tokenID) public returns (string memory message) {
        uint256 tokenBalance = balanceOf(msg.sender);
        for (uint256 i = 0; i < tokenBalance; i++) {
            if (tokenOfOwnerByIndex(msg.sender, i) == tokenID) {
                safeTransferFrom(msg.sender, _nextParty, tokenID);
                return "Successfully transferred!";
            }
        }
        return "Token not found!";
    }

    function holderBurn(uint256 tokenID) public returns (string memory message) {
        uint256 tokenBalance = balanceOf(msg.sender);
        for (uint256 i = 0; i < tokenBalance; i++) {
            if (tokenOfOwnerByIndex(msg.sender, i) == tokenID) {
                safeTransferFrom(msg.sender, _burnAddress, tokenID);
                return "Successfully burned!";
            }
        }
        return "Token not found!";
    }

    function mint(address _to) public {
        _safeMint(_to, 1);
    }
    
    // Overrides conflicting functions
    function _beforeTokenTransfer(address from, address to, uint256 tokenId)
        internal
        override(ERC721, ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
        super._burn(tokenId);
    }
    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721, ERC721URIStorage)
        returns (string memory)
    {
        return super.tokenURI(tokenId);
    }

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

}
        

/_openzeppelin/contracts/access/Ownable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

/_openzeppelin/contracts/security/ReentrancyGuard.sol

// SPDX-License-Identifier: MIT
// 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;
    }
}
          

/_openzeppelin/contracts/token/ERC721/ERC721.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @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, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}
          

/_openzeppelin/contracts/token/ERC721/IERC721.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

/_openzeppelin/contracts/token/ERC721/IERC721Receiver.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

/_openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}
          

/_openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token");

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

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

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}
          

/_openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

/_openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

/_openzeppelin/contracts/utils/Address.sol

// SPDX-License-Identifier: MIT
// 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);
            }
        }
    }
}
          

/_openzeppelin/contracts/utils/Context.sol

// SPDX-License-Identifier: MIT
// 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;
    }
}
          

/_openzeppelin/contracts/utils/Strings.sol

// SPDX-License-Identifier: MIT
// 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);
    }
}
          

/_openzeppelin/contracts/utils/introspection/ERC165.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * 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;
    }
}
          

/_openzeppelin/contracts/utils/introspection/IERC165.sol

// SPDX-License-Identifier: MIT
// 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);
}
          

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"string","name":"merchantName","internalType":"string"},{"type":"string","name":"merchantSymbol","internalType":"string"}]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"approved","internalType":"address","indexed":true},{"type":"uint256","name":"tokenId","internalType":"uint256","indexed":true}],"anonymous":false},{"type":"event","name":"ApprovalForAll","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"operator","internalType":"address","indexed":true},{"type":"bool","name":"approved","internalType":"bool","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"tokenId","internalType":"uint256","indexed":true}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"_burnAddress","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"addParty","inputs":[{"type":"address","name":"_address","internalType":"address"},{"type":"string","name":"_type","internalType":"string"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"addProducts","inputs":[{"type":"string","name":"productName","internalType":"string"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"approve","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"owner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"changeBurnAddress","inputs":[{"type":"address","name":"_newAddress","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"uint256","name":"tokenID","internalType":"uint256"}],"name":"createTransaction","inputs":[{"type":"address","name":"_nextParty","internalType":"address"},{"type":"string","name":"tokenUri","internalType":"string"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"getApproved","inputs":[{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"string","name":"message","internalType":"string"}],"name":"holderBurn","inputs":[{"type":"uint256","name":"tokenID","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"string","name":"message","internalType":"string"}],"name":"holderSign","inputs":[{"type":"address","name":"_nextParty","internalType":"address"},{"type":"uint256","name":"tokenID","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isApprovedForAll","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"operator","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"mint","inputs":[{"type":"address","name":"_to","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"ownerOf","inputs":[{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"safeTransferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"safeTransferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"},{"type":"bytes","name":"_data","internalType":"bytes"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setApprovalForAll","inputs":[{"type":"address","name":"operator","internalType":"address"},{"type":"bool","name":"approved","internalType":"bool"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"supportsInterface","inputs":[{"type":"bytes4","name":"interfaceId","internalType":"bytes4"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"tokenByIndex","inputs":[{"type":"uint256","name":"index","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"tokenOfOwnerByIndex","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"uint256","name":"index","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"tokenURI","inputs":[{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]}]
              

Contract Creation Code

0x6080604052738d891cffaec8dd6e571b717872db8095541110b2600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600f5560006010553480156200007057600080fd5b506040516200469338038062004693833981810160405281019062000096919062000374565b81818160009080519060200190620000b092919062000252565b508060019080519060200190620000c992919062000252565b505050620000ec620000e06200018460201b60201c565b6200018c60201b60201c565b60008251141562000134576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200012b9062000457565b60405180910390fd5b6000815114156200017c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001739062000435565b60405180910390fd5b50506200064c565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000260906200051f565b90600052602060002090601f016020900481019282620002845760008555620002d0565b82601f106200029f57805160ff1916838001178555620002d0565b82800160010185558215620002d0579182015b82811115620002cf578251825591602001919060010190620002b2565b5b509050620002df9190620002e3565b5090565b5b80821115620002fe576000816000905550600101620002e4565b5090565b6000620003196200031384620004a2565b62000479565b9050828152602081018484840111156200033257600080fd5b6200033f848285620004e9565b509392505050565b600082601f8301126200035957600080fd5b81516200036b84826020860162000302565b91505092915050565b600080604083850312156200038857600080fd5b600083015167ffffffffffffffff811115620003a357600080fd5b620003b18582860162000347565b925050602083015167ffffffffffffffff811115620003cf57600080fd5b620003dd8582860162000347565b9150509250929050565b6000620003f6602083620004d8565b91506200040382620005fa565b602082019050919050565b60006200041d601e83620004d8565b91506200042a8262000623565b602082019050919050565b600060208201905081810360008301526200045081620003e7565b9050919050565b6000602082019050818103600083015262000472816200040e565b9050919050565b60006200048562000498565b905062000493828262000555565b919050565b6000604051905090565b600067ffffffffffffffff821115620004c057620004bf620005ba565b5b620004cb82620005e9565b9050602081019050919050565b600082825260208201905092915050565b60005b8381101562000509578082015181840152602081019050620004ec565b8381111562000519576000848401525b50505050565b600060028204905060018216806200053857607f821691505b602082108114156200054f576200054e6200058b565b5b50919050565b6200056082620005e9565b810181811067ffffffffffffffff82111715620005825762000581620005ba565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4d65726368616e742073796d626f6c2063616e6e6f7420626520626c616e6b21600082015250565b7f4d65726368616e74206e616d652063616e6e6f7420626520626c616e6b210000600082015250565b614037806200065c6000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f9578063bd3900c011610097578063e985e9c511610071578063e985e9c5146104de578063eb2fadf01461050e578063ee3d17061461053e578063f2fde38b1461055a576101a9565b8063bd3900c014610460578063c87b56dd1461047e578063d5b21447146104ae576101a9565b806395d89b41116100d357806395d89b41146103ee578063a22cb4651461040c578063aaf23b2d14610428578063b88d4fde14610444576101a9565b8063715018a6146103965780638da5cb5b146103a05780638e2f2ab7146103be576101a9565b806323b872dd116101665780634f6ccce7116101405780634f6ccce7146102ea5780636352211e1461031a5780636a6278421461034a57806370a0823114610366576101a9565b806323b872dd146102825780632f745c591461029e57806342842e0e146102ce576101a9565b806301ffc9a7146101ae57806306fdde03146101de578063081812fc146101fc578063095ea7b31461022c57806318160ddd1461024857806321405cd114610266575b600080fd5b6101c860048036038101906101c39190612d39565b610576565b6040516101d591906132c5565b60405180910390f35b6101e6610588565b6040516101f391906132e0565b60405180910390f35b61021660048036038101906102119190612dcc565b61061a565b604051610223919061325e565b60405180910390f35b61024660048036038101906102419190612cfd565b61069f565b005b6102506107b7565b60405161025d91906135a2565b60405180910390f35b610280600480360381019061027b9190612ca9565b6107c4565b005b61029c60048036038101906102979190612ba3565b610898565b005b6102b860048036038101906102b39190612cfd565b6108f8565b6040516102c591906135a2565b60405180910390f35b6102e860048036038101906102e39190612ba3565b61099d565b005b61030460048036038101906102ff9190612dcc565b6109bd565b60405161031191906135a2565b60405180910390f35b610334600480360381019061032f9190612dcc565b610a54565b604051610341919061325e565b60405180910390f35b610364600480360381019061035f9190612b3e565b610b06565b005b610380600480360381019061037b9190612b3e565b610b14565b60405161038d91906135a2565b60405180910390f35b61039e610bcc565b005b6103a8610c54565b6040516103b5919061325e565b60405180910390f35b6103d860048036038101906103d39190612dcc565b610c7e565b6040516103e591906132e0565b60405180910390f35b6103f6610d68565b60405161040391906132e0565b60405180910390f35b61042660048036038101906104219190612c6d565b610dfa565b005b610442600480360381019061043d9190612d8b565b610e10565b005b61045e60048036038101906104599190612bf2565b610efd565b005b610468610f5f565b604051610475919061325e565b60405180910390f35b61049860048036038101906104939190612dcc565b610f85565b6040516104a591906132e0565b60405180910390f35b6104c860048036038101906104c39190612cfd565b610f97565b6040516104d591906132e0565b60405180910390f35b6104f860048036038101906104f39190612b67565b611060565b60405161050591906132c5565b60405180910390f35b61052860048036038101906105239190612ca9565b6110f4565b60405161053591906135a2565b60405180910390f35b61055860048036038101906105539190612b3e565b6111ff565b005b610574600480360381019061056f9190612b3e565b6112bf565b005b6000610581826113b7565b9050919050565b60606000805461059790613818565b80601f01602080910402602001604051908101604052809291908181526020018280546105c390613818565b80156106105780601f106105e557610100808354040283529160200191610610565b820191906000526020600020905b8154815290600101906020018083116105f357829003601f168201915b5050505050905090565b600061062582611431565b610664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065b906134e2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106aa82610a54565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561071b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071290613542565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661073a61149d565b73ffffffffffffffffffffffffffffffffffffffff16148061076957506107688161076361149d565b611060565b5b6107a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079f90613402565b60405180910390fd5b6107b283836114a5565b505050565b6000600980549050905090565b6107cc61149d565b73ffffffffffffffffffffffffffffffffffffffff166107ea610c54565b73ffffffffffffffffffffffffffffffffffffffff1614610840576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083790613502565b60405180910390fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209080519060200190610893929190612962565b505050565b6108a96108a361149d565b8261155e565b6108e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108df90613562565b60405180910390fd5b6108f383838361163c565b505050565b600061090383610b14565b8210610944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093b90613302565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6109b883838360405180602001604052806000815250610efd565b505050565b60006109c76107b7565b8210610a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ff90613582565b60405180910390fd5b60098281548110610a42577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af490613462565b60405180910390fd5b80915050919050565b610b118160016118a3565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c90613442565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bd461149d565b73ffffffffffffffffffffffffffffffffffffffff16610bf2610c54565b73ffffffffffffffffffffffffffffffffffffffff1614610c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3f90613502565b60405180910390fd5b610c5260006118c1565b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606000610c8b33610b14565b905060005b81811015610d285783610ca333836108f8565b1415610d1557610cd633600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168661099d565b6040518060400160405280601481526020017f5375636365737366756c6c79206275726e65642100000000000000000000000081525092505050610d63565b8080610d209061387b565b915050610c90565b506040518060400160405280601081526020017f546f6b656e206e6f7420666f756e6421000000000000000000000000000000008152509150505b919050565b606060018054610d7790613818565b80601f0160208091040260200160405190810160405280929190818152602001828054610da390613818565b8015610df05780601f10610dc557610100808354040283529160200191610df0565b820191906000526020600020905b815481529060010190602001808311610dd357829003601f168201915b5050505050905090565b610e0c610e0561149d565b8383611987565b5050565b610e1861149d565b73ffffffffffffffffffffffffffffffffffffffff16610e36610c54565b73ffffffffffffffffffffffffffffffffffffffff1614610e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8390613502565b60405180910390fd5b6040518060400160405280600f54815260200182815250600e6000600f548152602001908152602001600020600082015181600001556020820151816001019080519060200190610ede929190612962565b50905050600f6000815480929190610ef59061387b565b919050555050565b610f0e610f0861149d565b8361155e565b610f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4490613562565b60405180910390fd5b610f5984848484611af4565b50505050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060610f9082611b50565b9050919050565b60606000610fa433610b14565b905060005b8181101561101f5783610fbc33836108f8565b141561100c57610fcd33868661099d565b6040518060400160405280601981526020017f5375636365737366756c6c79207472616e7366657272656421000000000000008152509250505061105a565b80806110179061387b565b915050610fa9565b506040518060400160405280601081526020017f546f6b656e206e6f7420666f756e6421000000000000000000000000000000008152509150505b92915050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60006040518060400160405280600a81526020017f50726f64756374696f6e0000000000000000000000000000000000000000000081525080519060200120600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060405161117f9190613223565b6040518091039020146111c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111be90613422565b60405180910390fd5b6111d083610b06565b601060008154809291906111e39061387b565b91905055506111f460105483611ca2565b601054905092915050565b61120761149d565b73ffffffffffffffffffffffffffffffffffffffff16611225610c54565b73ffffffffffffffffffffffffffffffffffffffff161461127b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127290613502565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6112c761149d565b73ffffffffffffffffffffffffffffffffffffffff166112e5610c54565b73ffffffffffffffffffffffffffffffffffffffff161461133b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133290613502565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a290613342565b60405180910390fd5b6113b4816118c1565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061142a575061142982611d16565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661151883610a54565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061156982611431565b6115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f906133e2565b60405180910390fd5b60006115b383610a54565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061162257508373ffffffffffffffffffffffffffffffffffffffff1661160a8461061a565b73ffffffffffffffffffffffffffffffffffffffff16145b8061163357506116328185611060565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661165c82610a54565b73ffffffffffffffffffffffffffffffffffffffff16146116b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a990613362565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611722576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611719906133a2565b60405180910390fd5b61172d838383611df8565b6117386000826114a5565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611788919061372e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117df91906136a7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461189e838383611e08565b505050565b6118bd828260405180602001604052806000815250611e0d565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156119f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ed906133c2565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ae791906132c5565b60405180910390a3505050565b611aff84848461163c565b611b0b84848484611e68565b611b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4190613322565b60405180910390fd5b50505050565b6060611b5b82611431565b611b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b91906134c2565b60405180910390fd5b6000600660008481526020019081526020016000208054611bba90613818565b80601f0160208091040260200160405190810160405280929190818152602001828054611be690613818565b8015611c335780601f10611c0857610100808354040283529160200191611c33565b820191906000526020600020905b815481529060010190602001808311611c1657829003601f168201915b505050505090506000611c44611fff565b9050600081511415611c5a578192505050611c9d565b600082511115611c8f578082604051602001611c7792919061323a565b60405160208183030381529060405292505050611c9d565b611c9884612016565b925050505b919050565b611cab82611431565b611cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce190613482565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611d11929190612962565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611de157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611df15750611df0826120bd565b5b9050919050565b611e03838383612127565b505050565b505050565b611e17838361223b565b611e246000848484611e68565b611e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5a90613322565b60405180910390fd5b505050565b6000611e898473ffffffffffffffffffffffffffffffffffffffff16612415565b15611ff2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611eb261149d565b8786866040518563ffffffff1660e01b8152600401611ed49493929190613279565b602060405180830381600087803b158015611eee57600080fd5b505af1925050508015611f1f57506040513d601f19601f82011682018060405250810190611f1c9190612d62565b60015b611fa2573d8060008114611f4f576040519150601f19603f3d011682016040523d82523d6000602084013e611f54565b606091505b50600081511415611f9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9190613322565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611ff7565b600190505b949350505050565b606060405180602001604052806000815250905090565b606061202182611431565b612060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205790613522565b60405180910390fd5b600061206a611fff565b9050600081511161208a57604051806020016040528060008152506120b5565b8061209484612438565b6040516020016120a592919061323a565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6121328383836125e5565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561217557612170816125ea565b6121b4565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146121b3576121b28382612633565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121f7576121f2816127a0565b612236565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146122355761223482826128e3565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a2906134a2565b60405180910390fd5b6122b481611431565b156122f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122eb90613382565b60405180910390fd5b61230060008383611df8565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461235091906136a7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461241160008383611e08565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60606000821415612480576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125e0565b600082905060005b600082146124b257808061249b9061387b565b915050600a826124ab91906136fd565b9150612488565b60008167ffffffffffffffff8111156124f4577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156125265781602001600182028036833780820191505090505b5090505b600085146125d95760018261253f919061372e565b9150600a8561254e91906138c4565b603061255a91906136a7565b60f81b818381518110612596577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125d291906136fd565b945061252a565b8093505050505b919050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161264084610b14565b61264a919061372e565b905060006008600084815260200190815260200160002054905081811461272f576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506127b4919061372e565b90506000600a600084815260200190815260200160002054905060006009838154811061280a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060098381548110612852577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a60008581526020019081526020016000206000905560098054806128c7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006128ee83610b14565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b82805461296e90613818565b90600052602060002090601f01602090048101928261299057600085556129d7565b82601f106129a957805160ff19168380011785556129d7565b828001600101855582156129d7579182015b828111156129d65782518255916020019190600101906129bb565b5b5090506129e491906129e8565b5090565b5b80821115612a015760008160009055506001016129e9565b5090565b6000612a18612a13846135e2565b6135bd565b905082815260208101848484011115612a3057600080fd5b612a3b8482856137d6565b509392505050565b6000612a56612a5184613613565b6135bd565b905082815260208101848484011115612a6e57600080fd5b612a798482856137d6565b509392505050565b600081359050612a9081613fa5565b92915050565b600081359050612aa581613fbc565b92915050565b600081359050612aba81613fd3565b92915050565b600081519050612acf81613fd3565b92915050565b600082601f830112612ae657600080fd5b8135612af6848260208601612a05565b91505092915050565b600082601f830112612b1057600080fd5b8135612b20848260208601612a43565b91505092915050565b600081359050612b3881613fea565b92915050565b600060208284031215612b5057600080fd5b6000612b5e84828501612a81565b91505092915050565b60008060408385031215612b7a57600080fd5b6000612b8885828601612a81565b9250506020612b9985828601612a81565b9150509250929050565b600080600060608486031215612bb857600080fd5b6000612bc686828701612a81565b9350506020612bd786828701612a81565b9250506040612be886828701612b29565b9150509250925092565b60008060008060808587031215612c0857600080fd5b6000612c1687828801612a81565b9450506020612c2787828801612a81565b9350506040612c3887828801612b29565b925050606085013567ffffffffffffffff811115612c5557600080fd5b612c6187828801612ad5565b91505092959194509250565b60008060408385031215612c8057600080fd5b6000612c8e85828601612a81565b9250506020612c9f85828601612a96565b9150509250929050565b60008060408385031215612cbc57600080fd5b6000612cca85828601612a81565b925050602083013567ffffffffffffffff811115612ce757600080fd5b612cf385828601612aff565b9150509250929050565b60008060408385031215612d1057600080fd5b6000612d1e85828601612a81565b9250506020612d2f85828601612b29565b9150509250929050565b600060208284031215612d4b57600080fd5b6000612d5984828501612aab565b91505092915050565b600060208284031215612d7457600080fd5b6000612d8284828501612ac0565b91505092915050565b600060208284031215612d9d57600080fd5b600082013567ffffffffffffffff811115612db757600080fd5b612dc384828501612aff565b91505092915050565b600060208284031215612dde57600080fd5b6000612dec84828501612b29565b91505092915050565b612dfe81613762565b82525050565b612e0d81613774565b82525050565b6000612e1e82613659565b612e28818561366f565b9350612e388185602086016137e5565b612e41816139b1565b840191505092915050565b60008154612e5981613818565b612e638186613680565b94506001821660008114612e7e5760018114612e8f57612ec2565b60ff19831686528186019350612ec2565b612e9885613644565b60005b83811015612eba57815481890152600182019150602081019050612e9b565b838801955050505b50505092915050565b6000612ed682613664565b612ee0818561368b565b9350612ef08185602086016137e5565b612ef9816139b1565b840191505092915050565b6000612f0f82613664565b612f19818561369c565b9350612f298185602086016137e5565b80840191505092915050565b6000612f42602b8361368b565b9150612f4d826139c2565b604082019050919050565b6000612f6560328361368b565b9150612f7082613a11565b604082019050919050565b6000612f8860268361368b565b9150612f9382613a60565b604082019050919050565b6000612fab60258361368b565b9150612fb682613aaf565b604082019050919050565b6000612fce601c8361368b565b9150612fd982613afe565b602082019050919050565b6000612ff160248361368b565b9150612ffc82613b27565b604082019050919050565b600061301460198361368b565b915061301f82613b76565b602082019050919050565b6000613037602c8361368b565b915061304282613b9f565b604082019050919050565b600061305a60388361368b565b915061306582613bee565b604082019050919050565b600061307d60268361368b565b915061308882613c3d565b604082019050919050565b60006130a0602a8361368b565b91506130ab82613c8c565b604082019050919050565b60006130c360298361368b565b91506130ce82613cdb565b604082019050919050565b60006130e6602e8361368b565b91506130f182613d2a565b604082019050919050565b600061310960208361368b565b915061311482613d79565b602082019050919050565b600061312c60318361368b565b915061313782613da2565b604082019050919050565b600061314f602c8361368b565b915061315a82613df1565b604082019050919050565b600061317260208361368b565b915061317d82613e40565b602082019050919050565b6000613195602f8361368b565b91506131a082613e69565b604082019050919050565b60006131b860218361368b565b91506131c382613eb8565b604082019050919050565b60006131db60318361368b565b91506131e682613f07565b604082019050919050565b60006131fe602c8361368b565b915061320982613f56565b604082019050919050565b61321d816137cc565b82525050565b600061322f8284612e4c565b915081905092915050565b60006132468285612f04565b91506132528284612f04565b91508190509392505050565b60006020820190506132736000830184612df5565b92915050565b600060808201905061328e6000830187612df5565b61329b6020830186612df5565b6132a86040830185613214565b81810360608301526132ba8184612e13565b905095945050505050565b60006020820190506132da6000830184612e04565b92915050565b600060208201905081810360008301526132fa8184612ecb565b905092915050565b6000602082019050818103600083015261331b81612f35565b9050919050565b6000602082019050818103600083015261333b81612f58565b9050919050565b6000602082019050818103600083015261335b81612f7b565b9050919050565b6000602082019050818103600083015261337b81612f9e565b9050919050565b6000602082019050818103600083015261339b81612fc1565b9050919050565b600060208201905081810360008301526133bb81612fe4565b9050919050565b600060208201905081810360008301526133db81613007565b9050919050565b600060208201905081810360008301526133fb8161302a565b9050919050565b6000602082019050818103600083015261341b8161304d565b9050919050565b6000602082019050818103600083015261343b81613070565b9050919050565b6000602082019050818103600083015261345b81613093565b9050919050565b6000602082019050818103600083015261347b816130b6565b9050919050565b6000602082019050818103600083015261349b816130d9565b9050919050565b600060208201905081810360008301526134bb816130fc565b9050919050565b600060208201905081810360008301526134db8161311f565b9050919050565b600060208201905081810360008301526134fb81613142565b9050919050565b6000602082019050818103600083015261351b81613165565b9050919050565b6000602082019050818103600083015261353b81613188565b9050919050565b6000602082019050818103600083015261355b816131ab565b9050919050565b6000602082019050818103600083015261357b816131ce565b9050919050565b6000602082019050818103600083015261359b816131f1565b9050919050565b60006020820190506135b76000830184613214565b92915050565b60006135c76135d8565b90506135d3828261384a565b919050565b6000604051905090565b600067ffffffffffffffff8211156135fd576135fc613982565b5b613606826139b1565b9050602081019050919050565b600067ffffffffffffffff82111561362e5761362d613982565b5b613637826139b1565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006136b2826137cc565b91506136bd836137cc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136f2576136f16138f5565b5b828201905092915050565b6000613708826137cc565b9150613713836137cc565b92508261372357613722613924565b5b828204905092915050565b6000613739826137cc565b9150613744836137cc565b925082821015613757576137566138f5565b5b828203905092915050565b600061376d826137ac565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138035780820151818401526020810190506137e8565b83811115613812576000848401525b50505050565b6000600282049050600182168061383057607f821691505b6020821081141561384457613843613953565b5b50919050565b613853826139b1565b810181811067ffffffffffffffff8211171561387257613871613982565b5b80604052505050565b6000613886826137cc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138b9576138b86138f5565b5b600182019050919050565b60006138cf826137cc565b91506138da836137cc565b9250826138ea576138e9613924565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4f6e6c792070726f64756374696f6e2063616e20637265617465207472616e7360008201527f616374696f6e0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b613fae81613762565b8114613fb957600080fd5b50565b613fc581613774565b8114613fd057600080fd5b50565b613fdc81613780565b8114613fe757600080fd5b50565b613ff3816137cc565b8114613ffe57600080fd5b5056fea2646970667358221220f8bc6165fb81b421ffeefd7c8a11a61a53b3f431b55cb48104bb03649ef95bde64736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b53757065724d657263617400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055355504552000000000000000000000000000000000000000000000000000000

Deployed ByteCode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f9578063bd3900c011610097578063e985e9c511610071578063e985e9c5146104de578063eb2fadf01461050e578063ee3d17061461053e578063f2fde38b1461055a576101a9565b8063bd3900c014610460578063c87b56dd1461047e578063d5b21447146104ae576101a9565b806395d89b41116100d357806395d89b41146103ee578063a22cb4651461040c578063aaf23b2d14610428578063b88d4fde14610444576101a9565b8063715018a6146103965780638da5cb5b146103a05780638e2f2ab7146103be576101a9565b806323b872dd116101665780634f6ccce7116101405780634f6ccce7146102ea5780636352211e1461031a5780636a6278421461034a57806370a0823114610366576101a9565b806323b872dd146102825780632f745c591461029e57806342842e0e146102ce576101a9565b806301ffc9a7146101ae57806306fdde03146101de578063081812fc146101fc578063095ea7b31461022c57806318160ddd1461024857806321405cd114610266575b600080fd5b6101c860048036038101906101c39190612d39565b610576565b6040516101d591906132c5565b60405180910390f35b6101e6610588565b6040516101f391906132e0565b60405180910390f35b61021660048036038101906102119190612dcc565b61061a565b604051610223919061325e565b60405180910390f35b61024660048036038101906102419190612cfd565b61069f565b005b6102506107b7565b60405161025d91906135a2565b60405180910390f35b610280600480360381019061027b9190612ca9565b6107c4565b005b61029c60048036038101906102979190612ba3565b610898565b005b6102b860048036038101906102b39190612cfd565b6108f8565b6040516102c591906135a2565b60405180910390f35b6102e860048036038101906102e39190612ba3565b61099d565b005b61030460048036038101906102ff9190612dcc565b6109bd565b60405161031191906135a2565b60405180910390f35b610334600480360381019061032f9190612dcc565b610a54565b604051610341919061325e565b60405180910390f35b610364600480360381019061035f9190612b3e565b610b06565b005b610380600480360381019061037b9190612b3e565b610b14565b60405161038d91906135a2565b60405180910390f35b61039e610bcc565b005b6103a8610c54565b6040516103b5919061325e565b60405180910390f35b6103d860048036038101906103d39190612dcc565b610c7e565b6040516103e591906132e0565b60405180910390f35b6103f6610d68565b60405161040391906132e0565b60405180910390f35b61042660048036038101906104219190612c6d565b610dfa565b005b610442600480360381019061043d9190612d8b565b610e10565b005b61045e60048036038101906104599190612bf2565b610efd565b005b610468610f5f565b604051610475919061325e565b60405180910390f35b61049860048036038101906104939190612dcc565b610f85565b6040516104a591906132e0565b60405180910390f35b6104c860048036038101906104c39190612cfd565b610f97565b6040516104d591906132e0565b60405180910390f35b6104f860048036038101906104f39190612b67565b611060565b60405161050591906132c5565b60405180910390f35b61052860048036038101906105239190612ca9565b6110f4565b60405161053591906135a2565b60405180910390f35b61055860048036038101906105539190612b3e565b6111ff565b005b610574600480360381019061056f9190612b3e565b6112bf565b005b6000610581826113b7565b9050919050565b60606000805461059790613818565b80601f01602080910402602001604051908101604052809291908181526020018280546105c390613818565b80156106105780601f106105e557610100808354040283529160200191610610565b820191906000526020600020905b8154815290600101906020018083116105f357829003601f168201915b5050505050905090565b600061062582611431565b610664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065b906134e2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106aa82610a54565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561071b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071290613542565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661073a61149d565b73ffffffffffffffffffffffffffffffffffffffff16148061076957506107688161076361149d565b611060565b5b6107a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079f90613402565b60405180910390fd5b6107b283836114a5565b505050565b6000600980549050905090565b6107cc61149d565b73ffffffffffffffffffffffffffffffffffffffff166107ea610c54565b73ffffffffffffffffffffffffffffffffffffffff1614610840576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083790613502565b60405180910390fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209080519060200190610893929190612962565b505050565b6108a96108a361149d565b8261155e565b6108e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108df90613562565b60405180910390fd5b6108f383838361163c565b505050565b600061090383610b14565b8210610944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093b90613302565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6109b883838360405180602001604052806000815250610efd565b505050565b60006109c76107b7565b8210610a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ff90613582565b60405180910390fd5b60098281548110610a42577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af490613462565b60405180910390fd5b80915050919050565b610b118160016118a3565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c90613442565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bd461149d565b73ffffffffffffffffffffffffffffffffffffffff16610bf2610c54565b73ffffffffffffffffffffffffffffffffffffffff1614610c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3f90613502565b60405180910390fd5b610c5260006118c1565b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606000610c8b33610b14565b905060005b81811015610d285783610ca333836108f8565b1415610d1557610cd633600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168661099d565b6040518060400160405280601481526020017f5375636365737366756c6c79206275726e65642100000000000000000000000081525092505050610d63565b8080610d209061387b565b915050610c90565b506040518060400160405280601081526020017f546f6b656e206e6f7420666f756e6421000000000000000000000000000000008152509150505b919050565b606060018054610d7790613818565b80601f0160208091040260200160405190810160405280929190818152602001828054610da390613818565b8015610df05780601f10610dc557610100808354040283529160200191610df0565b820191906000526020600020905b815481529060010190602001808311610dd357829003601f168201915b5050505050905090565b610e0c610e0561149d565b8383611987565b5050565b610e1861149d565b73ffffffffffffffffffffffffffffffffffffffff16610e36610c54565b73ffffffffffffffffffffffffffffffffffffffff1614610e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8390613502565b60405180910390fd5b6040518060400160405280600f54815260200182815250600e6000600f548152602001908152602001600020600082015181600001556020820151816001019080519060200190610ede929190612962565b50905050600f6000815480929190610ef59061387b565b919050555050565b610f0e610f0861149d565b8361155e565b610f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4490613562565b60405180910390fd5b610f5984848484611af4565b50505050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060610f9082611b50565b9050919050565b60606000610fa433610b14565b905060005b8181101561101f5783610fbc33836108f8565b141561100c57610fcd33868661099d565b6040518060400160405280601981526020017f5375636365737366756c6c79207472616e7366657272656421000000000000008152509250505061105a565b80806110179061387b565b915050610fa9565b506040518060400160405280601081526020017f546f6b656e206e6f7420666f756e6421000000000000000000000000000000008152509150505b92915050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60006040518060400160405280600a81526020017f50726f64756374696f6e0000000000000000000000000000000000000000000081525080519060200120600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060405161117f9190613223565b6040518091039020146111c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111be90613422565b60405180910390fd5b6111d083610b06565b601060008154809291906111e39061387b565b91905055506111f460105483611ca2565b601054905092915050565b61120761149d565b73ffffffffffffffffffffffffffffffffffffffff16611225610c54565b73ffffffffffffffffffffffffffffffffffffffff161461127b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127290613502565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6112c761149d565b73ffffffffffffffffffffffffffffffffffffffff166112e5610c54565b73ffffffffffffffffffffffffffffffffffffffff161461133b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133290613502565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a290613342565b60405180910390fd5b6113b4816118c1565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061142a575061142982611d16565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661151883610a54565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061156982611431565b6115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f906133e2565b60405180910390fd5b60006115b383610a54565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061162257508373ffffffffffffffffffffffffffffffffffffffff1661160a8461061a565b73ffffffffffffffffffffffffffffffffffffffff16145b8061163357506116328185611060565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661165c82610a54565b73ffffffffffffffffffffffffffffffffffffffff16146116b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a990613362565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611722576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611719906133a2565b60405180910390fd5b61172d838383611df8565b6117386000826114a5565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611788919061372e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117df91906136a7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461189e838383611e08565b505050565b6118bd828260405180602001604052806000815250611e0d565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156119f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ed906133c2565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ae791906132c5565b60405180910390a3505050565b611aff84848461163c565b611b0b84848484611e68565b611b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4190613322565b60405180910390fd5b50505050565b6060611b5b82611431565b611b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b91906134c2565b60405180910390fd5b6000600660008481526020019081526020016000208054611bba90613818565b80601f0160208091040260200160405190810160405280929190818152602001828054611be690613818565b8015611c335780601f10611c0857610100808354040283529160200191611c33565b820191906000526020600020905b815481529060010190602001808311611c1657829003601f168201915b505050505090506000611c44611fff565b9050600081511415611c5a578192505050611c9d565b600082511115611c8f578082604051602001611c7792919061323a565b60405160208183030381529060405292505050611c9d565b611c9884612016565b925050505b919050565b611cab82611431565b611cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce190613482565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611d11929190612962565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611de157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611df15750611df0826120bd565b5b9050919050565b611e03838383612127565b505050565b505050565b611e17838361223b565b611e246000848484611e68565b611e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5a90613322565b60405180910390fd5b505050565b6000611e898473ffffffffffffffffffffffffffffffffffffffff16612415565b15611ff2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611eb261149d565b8786866040518563ffffffff1660e01b8152600401611ed49493929190613279565b602060405180830381600087803b158015611eee57600080fd5b505af1925050508015611f1f57506040513d601f19601f82011682018060405250810190611f1c9190612d62565b60015b611fa2573d8060008114611f4f576040519150601f19603f3d011682016040523d82523d6000602084013e611f54565b606091505b50600081511415611f9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9190613322565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611ff7565b600190505b949350505050565b606060405180602001604052806000815250905090565b606061202182611431565b612060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205790613522565b60405180910390fd5b600061206a611fff565b9050600081511161208a57604051806020016040528060008152506120b5565b8061209484612438565b6040516020016120a592919061323a565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6121328383836125e5565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561217557612170816125ea565b6121b4565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146121b3576121b28382612633565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121f7576121f2816127a0565b612236565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146122355761223482826128e3565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a2906134a2565b60405180910390fd5b6122b481611431565b156122f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122eb90613382565b60405180910390fd5b61230060008383611df8565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461235091906136a7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461241160008383611e08565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60606000821415612480576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125e0565b600082905060005b600082146124b257808061249b9061387b565b915050600a826124ab91906136fd565b9150612488565b60008167ffffffffffffffff8111156124f4577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156125265781602001600182028036833780820191505090505b5090505b600085146125d95760018261253f919061372e565b9150600a8561254e91906138c4565b603061255a91906136a7565b60f81b818381518110612596577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125d291906136fd565b945061252a565b8093505050505b919050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161264084610b14565b61264a919061372e565b905060006008600084815260200190815260200160002054905081811461272f576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506127b4919061372e565b90506000600a600084815260200190815260200160002054905060006009838154811061280a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060098381548110612852577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a60008581526020019081526020016000206000905560098054806128c7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006128ee83610b14565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b82805461296e90613818565b90600052602060002090601f01602090048101928261299057600085556129d7565b82601f106129a957805160ff19168380011785556129d7565b828001600101855582156129d7579182015b828111156129d65782518255916020019190600101906129bb565b5b5090506129e491906129e8565b5090565b5b80821115612a015760008160009055506001016129e9565b5090565b6000612a18612a13846135e2565b6135bd565b905082815260208101848484011115612a3057600080fd5b612a3b8482856137d6565b509392505050565b6000612a56612a5184613613565b6135bd565b905082815260208101848484011115612a6e57600080fd5b612a798482856137d6565b509392505050565b600081359050612a9081613fa5565b92915050565b600081359050612aa581613fbc565b92915050565b600081359050612aba81613fd3565b92915050565b600081519050612acf81613fd3565b92915050565b600082601f830112612ae657600080fd5b8135612af6848260208601612a05565b91505092915050565b600082601f830112612b1057600080fd5b8135612b20848260208601612a43565b91505092915050565b600081359050612b3881613fea565b92915050565b600060208284031215612b5057600080fd5b6000612b5e84828501612a81565b91505092915050565b60008060408385031215612b7a57600080fd5b6000612b8885828601612a81565b9250506020612b9985828601612a81565b9150509250929050565b600080600060608486031215612bb857600080fd5b6000612bc686828701612a81565b9350506020612bd786828701612a81565b9250506040612be886828701612b29565b9150509250925092565b60008060008060808587031215612c0857600080fd5b6000612c1687828801612a81565b9450506020612c2787828801612a81565b9350506040612c3887828801612b29565b925050606085013567ffffffffffffffff811115612c5557600080fd5b612c6187828801612ad5565b91505092959194509250565b60008060408385031215612c8057600080fd5b6000612c8e85828601612a81565b9250506020612c9f85828601612a96565b9150509250929050565b60008060408385031215612cbc57600080fd5b6000612cca85828601612a81565b925050602083013567ffffffffffffffff811115612ce757600080fd5b612cf385828601612aff565b9150509250929050565b60008060408385031215612d1057600080fd5b6000612d1e85828601612a81565b9250506020612d2f85828601612b29565b9150509250929050565b600060208284031215612d4b57600080fd5b6000612d5984828501612aab565b91505092915050565b600060208284031215612d7457600080fd5b6000612d8284828501612ac0565b91505092915050565b600060208284031215612d9d57600080fd5b600082013567ffffffffffffffff811115612db757600080fd5b612dc384828501612aff565b91505092915050565b600060208284031215612dde57600080fd5b6000612dec84828501612b29565b91505092915050565b612dfe81613762565b82525050565b612e0d81613774565b82525050565b6000612e1e82613659565b612e28818561366f565b9350612e388185602086016137e5565b612e41816139b1565b840191505092915050565b60008154612e5981613818565b612e638186613680565b94506001821660008114612e7e5760018114612e8f57612ec2565b60ff19831686528186019350612ec2565b612e9885613644565b60005b83811015612eba57815481890152600182019150602081019050612e9b565b838801955050505b50505092915050565b6000612ed682613664565b612ee0818561368b565b9350612ef08185602086016137e5565b612ef9816139b1565b840191505092915050565b6000612f0f82613664565b612f19818561369c565b9350612f298185602086016137e5565b80840191505092915050565b6000612f42602b8361368b565b9150612f4d826139c2565b604082019050919050565b6000612f6560328361368b565b9150612f7082613a11565b604082019050919050565b6000612f8860268361368b565b9150612f9382613a60565b604082019050919050565b6000612fab60258361368b565b9150612fb682613aaf565b604082019050919050565b6000612fce601c8361368b565b9150612fd982613afe565b602082019050919050565b6000612ff160248361368b565b9150612ffc82613b27565b604082019050919050565b600061301460198361368b565b915061301f82613b76565b602082019050919050565b6000613037602c8361368b565b915061304282613b9f565b604082019050919050565b600061305a60388361368b565b915061306582613bee565b604082019050919050565b600061307d60268361368b565b915061308882613c3d565b604082019050919050565b60006130a0602a8361368b565b91506130ab82613c8c565b604082019050919050565b60006130c360298361368b565b91506130ce82613cdb565b604082019050919050565b60006130e6602e8361368b565b91506130f182613d2a565b604082019050919050565b600061310960208361368b565b915061311482613d79565b602082019050919050565b600061312c60318361368b565b915061313782613da2565b604082019050919050565b600061314f602c8361368b565b915061315a82613df1565b604082019050919050565b600061317260208361368b565b915061317d82613e40565b602082019050919050565b6000613195602f8361368b565b91506131a082613e69565b604082019050919050565b60006131b860218361368b565b91506131c382613eb8565b604082019050919050565b60006131db60318361368b565b91506131e682613f07565b604082019050919050565b60006131fe602c8361368b565b915061320982613f56565b604082019050919050565b61321d816137cc565b82525050565b600061322f8284612e4c565b915081905092915050565b60006132468285612f04565b91506132528284612f04565b91508190509392505050565b60006020820190506132736000830184612df5565b92915050565b600060808201905061328e6000830187612df5565b61329b6020830186612df5565b6132a86040830185613214565b81810360608301526132ba8184612e13565b905095945050505050565b60006020820190506132da6000830184612e04565b92915050565b600060208201905081810360008301526132fa8184612ecb565b905092915050565b6000602082019050818103600083015261331b81612f35565b9050919050565b6000602082019050818103600083015261333b81612f58565b9050919050565b6000602082019050818103600083015261335b81612f7b565b9050919050565b6000602082019050818103600083015261337b81612f9e565b9050919050565b6000602082019050818103600083015261339b81612fc1565b9050919050565b600060208201905081810360008301526133bb81612fe4565b9050919050565b600060208201905081810360008301526133db81613007565b9050919050565b600060208201905081810360008301526133fb8161302a565b9050919050565b6000602082019050818103600083015261341b8161304d565b9050919050565b6000602082019050818103600083015261343b81613070565b9050919050565b6000602082019050818103600083015261345b81613093565b9050919050565b6000602082019050818103600083015261347b816130b6565b9050919050565b6000602082019050818103600083015261349b816130d9565b9050919050565b600060208201905081810360008301526134bb816130fc565b9050919050565b600060208201905081810360008301526134db8161311f565b9050919050565b600060208201905081810360008301526134fb81613142565b9050919050565b6000602082019050818103600083015261351b81613165565b9050919050565b6000602082019050818103600083015261353b81613188565b9050919050565b6000602082019050818103600083015261355b816131ab565b9050919050565b6000602082019050818103600083015261357b816131ce565b9050919050565b6000602082019050818103600083015261359b816131f1565b9050919050565b60006020820190506135b76000830184613214565b92915050565b60006135c76135d8565b90506135d3828261384a565b919050565b6000604051905090565b600067ffffffffffffffff8211156135fd576135fc613982565b5b613606826139b1565b9050602081019050919050565b600067ffffffffffffffff82111561362e5761362d613982565b5b613637826139b1565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006136b2826137cc565b91506136bd836137cc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136f2576136f16138f5565b5b828201905092915050565b6000613708826137cc565b9150613713836137cc565b92508261372357613722613924565b5b828204905092915050565b6000613739826137cc565b9150613744836137cc565b925082821015613757576137566138f5565b5b828203905092915050565b600061376d826137ac565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138035780820151818401526020810190506137e8565b83811115613812576000848401525b50505050565b6000600282049050600182168061383057607f821691505b6020821081141561384457613843613953565b5b50919050565b613853826139b1565b810181811067ffffffffffffffff8211171561387257613871613982565b5b80604052505050565b6000613886826137cc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138b9576138b86138f5565b5b600182019050919050565b60006138cf826137cc565b91506138da836137cc565b9250826138ea576138e9613924565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4f6e6c792070726f64756374696f6e2063616e20637265617465207472616e7360008201527f616374696f6e0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b613fae81613762565b8114613fb957600080fd5b50565b613fc581613774565b8114613fd057600080fd5b50565b613fdc81613780565b8114613fe757600080fd5b50565b613ff3816137cc565b8114613ffe57600080fd5b5056fea2646970667358221220f8bc6165fb81b421ffeefd7c8a11a61a53b3f431b55cb48104bb03649ef95bde64736f6c63430008040033