ETH Price: $3,081.65 (-6.72%)
Gas: 13 Gwei

Token

Ensan Olive Seed (SEED)
 

Overview

Max Total Supply

555 SEED

Holders

443

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0x403d8A3A7347302ff51a244a7c02676A0031F302
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
EnsanSeed

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 20 : EnsanSeed.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

import "./GsERC1155.sol";
import {DefaultOperatorFilterer} from "https://github.com/ProjectOpenSea/operator-filter-registry/blob/main/src/DefaultOperatorFilterer.sol";

/*
* @title ERC1155 token for ENSAN SEED
*/
contract EnsanSeed is GsERC1155, DefaultOperatorFilterer {

    uint256 public constant maxSupply = 555;
    uint256 public maxPerWallet = 1;

    constructor( 
        string memory _baseURI
    ) GsERC1155("Ensan Olive Seed", "SEED", _baseURI, msg.sender, 1000) DefaultOperatorFilterer() {
        _mint(msg.sender, 1, 70, "");
    } 

     /**
     * @notice Mints the given amount of token id 1 to specified receiver address
     * 
     * @param _receiver the receiving wallet
     * @param _amount the amount of tokens to mint
     */
    function ownerMint(address _receiver, uint256 _amount) external onlyOwner {
        require(totalSupply(1) + _amount <= maxSupply, "Purchase: Max supply reached");

        _mint(_receiver, 1, _amount, "");        
    }      

    /**
    * @notice mint during public sale
    * 
    * @param amount the amount of tokens to mint
    */
    function publicMint(uint256 amount) external payable whenNotPaused whenPublicSaleIsActive{
        require(tx.origin == msg.sender, "No contract minting");
        require(totalSupply(1) + amount <= maxSupply, "Max supply reached");

        uint256 userMintsTotal = balanceOf(msg.sender, 1);
        require(userMintsTotal + amount <= maxPerWallet, "Max mint limit reached");

        _mint(msg.sender, 1, amount, "");
    }   

    /**
    * @notice Open Sea filterer to blacklist Marketplace which are not enforcing Royalty payments
    */
    function safeTransferFrom(address from, address to, uint256 tokenId, uint256 amount, bytes memory data)
        public
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, amount, data);
    }

    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override onlyAllowedOperator(from) {
        super.safeBatchTransferFrom(from, to, ids, amounts, data);
    }
}

File 2 of 20 : DefaultOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

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

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

File 3 of 20 : GsERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.15;

import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol';
import '@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol';
import '@openzeppelin/contracts/security/Pausable.sol';
import '@openzeppelin/contracts/interfaces/IERC2981.sol';
import '@openzeppelin/contracts/utils/Strings.sol';

/*
* @notice this class leverages standard practices to enable a safe and controllable ERC1155 token
*         in the current version, royalties are global for all token IDs
*/
contract GsERC1155 is ERC1155Supply, ERC1155Burnable, Ownable, Pausable, IERC2981 {
    
    string public name_;
    string public symbol_;   
    
    address private _recipient;
    uint256 private _royaltyShare;

    bool public _isPublicSale = false;
    bool public _isBurnable = false;
 
    constructor(string memory _name, string memory _symbol, string memory _baseURI, address recipient, uint256 royaltyShare) ERC1155(_baseURI) {
        name_ = _name;
        symbol_ = _symbol;
        _recipient = recipient;
        _royaltyShare = royaltyShare;
    }

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

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

    modifier whenPublicSaleIsActive() {
        require(
            _isPublicSale, "Public sale is closed"
        );
        _;
    } 
    
    modifier whenBurnIsActive() {
        require(
            _isBurnable, "Token is not burnable"
        );
        _;
    } 

    /*
    * @notice define modifiers
    */
    function setModifier(uint32 _type, bool _value) external onlyOwner {
        if (_type == 1) {
            _isPublicSale = _value;
        } else if (_type == 2) {
            _isBurnable = _value;
        } else {
            revert("Unknown modifier type");
        }
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function setURI(string memory baseURI) external onlyOwner {
        _setURI(baseURI);
    }

    function royaltyInfo(uint256 , uint256 _salePrice) external view override returns (address receiver, uint256 royaltyAmount) {
        return (_recipient, (_salePrice * _royaltyShare) / 10000);
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC1155, IERC165) returns (bool) {
        return (interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId));
    }

    function setRoyalties(address newRecipient, uint256 newShare) external onlyOwner {
        require(newRecipient != address(0), "Royalties: new recipient is the zero address");
        require(newShare > 0 && newShare < 10000, "Royalties: new share should be between 1 and 9999 basis points");
        _recipient = newRecipient;
        _royaltyShare = newShare;
    }

    /** 
    * @notice Override ERC1155Burnable burn method to let the contract define the burnability of tokens
    * 
    * @param account the address to burn from 
    * @param id the id of the token to burn
    * @param amount the amount of tokens to burn
    */
    function burn(address account, uint256 id, uint256 amount) public whenNotPaused whenBurnIsActive override(ERC1155Burnable){
        super.burn(account, id, amount);
    }

    /** 
    * @notice Override ERC1155Burnable burnBatch method to let the contract define the burnability of tokens
    * 
    * @param account the address to burn from 
    * @param ids an array of ids of tokens to burn
    * @param amounts an array of amounts of tokens to burn
    * 
    * ids and amounts must be of the same length
    */
    function burnBatch(address account, uint256[] memory ids, uint256[] memory amounts) public whenNotPaused whenBurnIsActive override(ERC1155Burnable){
        super.burnBatch(account, ids, amounts);
    } 

    /// Allow the owner to withdraw funds from the contract to the owner's wallet
    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool succ,) = payable(msg.sender).call{
            value: balance
        }("");
        require(succ, "transfer failed");
    }       

    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal whenNotPaused virtual override(ERC1155, ERC1155Supply) {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
    } 

    /**
    * @notice returns the metadata uri for a given id
    * 
    * @param _id the card id to return metadata for
    */
    function uri(uint256 _id) public view override returns (string memory) {
            require(exists(_id), "URI: nonexistent token");
            
            return string(abi.encodePacked(super.uri(_id), Strings.toString(_id)));
    } 
}

File 4 of 20 : OperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

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

abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}

File 5 of 20 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";

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

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

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

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

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

File 6 of 20 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 7 of 20 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 8 of 20 : ERC1155Supply.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/extensions/ERC1155Supply.sol)

pragma solidity ^0.8.0;

import "../ERC1155.sol";

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

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

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

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

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

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

File 9 of 20 : ERC1155Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC1155/extensions/ERC1155Burnable.sol)

pragma solidity ^0.8.0;

import "../ERC1155.sol";

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

        _burn(account, id, value);
    }

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

        _burnBatch(account, ids, values);
    }
}

File 10 of 20 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 11 of 20 : IOperatorFilterRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

File 12 of 20 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

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

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

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

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

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

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

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

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

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

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

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 13 of 20 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/ERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

        return array;
    }
}

File 14 of 20 : 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;
    }
}

File 15 of 20 : 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);
}

File 16 of 20 : 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;
    }
}

File 17 of 20 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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 functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

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

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

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

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

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

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

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

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

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

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

File 18 of 20 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;

import "../IERC1155.sol";

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

File 19 of 20 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

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

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

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

File 20 of 20 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"_isBurnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isPublicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name_","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_type","type":"uint32"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"setModifier","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRecipient","type":"address"},{"internalType":"uint256","name":"newShare","type":"uint256"}],"name":"setRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol_","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600960006101000a81548160ff0219169083151502179055506000600960016101000a81548160ff0219169083151502179055506001600a553480156200004c57600080fd5b506040516200700538038062007005833981810160405281019062000072919062000d7d565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601081526020017f456e73616e204f6c6976652053656564000000000000000000000000000000008152506040518060400160405280600481526020017f534545440000000000000000000000000000000000000000000000000000000081525084336103e8826200010c81620003dc60201b60201c565b506200012d62000121620003f160201b60201c565b620003f960201b60201c565b6000600460146101000a81548160ff021916908315150217905550846005908162000159919062001019565b5083600690816200016b919062001019565b5081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600881905550505050505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003ae57801562000274576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200023a92919062001145565b600060405180830381600087803b1580156200025557600080fd5b505af11580156200026a573d6000803e3d6000fd5b50505050620003ad565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200032e576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002f492919062001145565b600060405180830381600087803b1580156200030f57600080fd5b505af115801562000324573d6000803e3d6000fd5b50505050620003ac565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b815260040162000377919062001172565b600060405180830381600087803b1580156200039257600080fd5b505af1158015620003a7573d6000803e3d6000fd5b505050505b5b5b5050620003d5336001604660405180602001604052806000815250620004bf60201b60201c565b5062001818565b8060029081620003ed919062001019565b5050565b600033905090565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160362000531576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005289062001216565b60405180910390fd5b600062000543620003f160201b60201c565b905060006200055885620006a660201b60201c565b905060006200056d85620006a660201b60201c565b905062000586836000898585896200072760201b60201c565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620005e7919062001267565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62898960405162000667929190620012b3565b60405180910390a462000686836000898585896200075a60201b60201c565b6200069d836000898989896200076260201b60201c565b50505050505050565b60606000600167ffffffffffffffff811115620006c857620006c762000c19565b5b604051908082528060200260200182016040528015620006f75781602001602082028036833780820191505090505b5090508281600081518110620007125762000711620012e0565b5b60200260200101818152505080915050919050565b620007376200095b60201b60201c565b62000752868686868686620009b060201b620018501760201c565b505050505050565b505050505050565b6200078e8473ffffffffffffffffffffffffffffffffffffffff1662000ba860201b62001a201760201c565b1562000953578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401620007d79594939291906200136c565b6020604051808303816000875af19250505080156200081657506040513d601f19601f820116820180604052508101906200081391906200142d565b60015b620008c757620008256200146c565b806308c379a0036200088857506200083c62001491565b806200084957506200088a565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200087f91906200156d565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008be9062001607565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161462000951576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000948906200169f565b60405180910390fd5b505b505050505050565b6200096b62000bcb60201b60201c565b15620009ae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009a59062001711565b60405180910390fd5b565b620009cb86868686868662000be260201b62001a431760201c565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160362000a895760005b835181101562000a875782818151811062000a235762000a22620012e0565b5b60200260200101516003600086848151811062000a455762000a44620012e0565b5b60200260200101518152602001908152602001600020600082825462000a6c919062001267565b925050819055508062000a7f9062001733565b905062000a03565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160362000ba05760005b835181101562000b9e57600084828151811062000ae35762000ae2620012e0565b5b60200260200101519050600084838151811062000b055762000b04620012e0565b5b602002602001015190506000600360008481526020019081526020016000205490508181101562000b6d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b6490620017f6565b60405180910390fd5b81810360036000858152602001908152602001600020819055505050508062000b969062001733565b905062000ac1565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000600460149054906101000a900460ff16905090565b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000c538262000c08565b810181811067ffffffffffffffff8211171562000c755762000c7462000c19565b5b80604052505050565b600062000c8a62000bea565b905062000c98828262000c48565b919050565b600067ffffffffffffffff82111562000cbb5762000cba62000c19565b5b62000cc68262000c08565b9050602081019050919050565b60005b8381101562000cf357808201518184015260208101905062000cd6565b60008484015250505050565b600062000d1662000d108462000c9d565b62000c7e565b90508281526020810184848401111562000d355762000d3462000c03565b5b62000d4284828562000cd3565b509392505050565b600082601f83011262000d625762000d6162000bfe565b5b815162000d7484826020860162000cff565b91505092915050565b60006020828403121562000d965762000d9562000bf4565b5b600082015167ffffffffffffffff81111562000db75762000db662000bf9565b5b62000dc58482850162000d4a565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000e2157607f821691505b60208210810362000e375762000e3662000dd9565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000ea17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000e62565b62000ead868362000e62565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000efa62000ef462000eee8462000ec5565b62000ecf565b62000ec5565b9050919050565b6000819050919050565b62000f168362000ed9565b62000f2e62000f258262000f01565b84845462000e6f565b825550505050565b600090565b62000f4562000f36565b62000f5281848462000f0b565b505050565b5b8181101562000f7a5762000f6e60008262000f3b565b60018101905062000f58565b5050565b601f82111562000fc95762000f938162000e3d565b62000f9e8462000e52565b8101602085101562000fae578190505b62000fc662000fbd8562000e52565b83018262000f57565b50505b505050565b600082821c905092915050565b600062000fee6000198460080262000fce565b1980831691505092915050565b600062001009838362000fdb565b9150826002028217905092915050565b620010248262000dce565b67ffffffffffffffff81111562001040576200103f62000c19565b5b6200104c825462000e08565b6200105982828562000f7e565b600060209050601f8311600181146200109157600084156200107c578287015190505b62001088858262000ffb565b865550620010f8565b601f198416620010a18662000e3d565b60005b82811015620010cb57848901518255600182019150602085019450602081019050620010a4565b86831015620010eb5784890151620010e7601f89168262000fdb565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200112d8262001100565b9050919050565b6200113f8162001120565b82525050565b60006040820190506200115c600083018562001134565b6200116b602083018462001134565b9392505050565b600060208201905062001189600083018462001134565b92915050565b600082825260208201905092915050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000620011fe6021836200118f565b91506200120b82620011a0565b604082019050919050565b600060208201905081810360008301526200123181620011ef565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620012748262000ec5565b9150620012818362000ec5565b92508282019050808211156200129c576200129b62001238565b5b92915050565b620012ad8162000ec5565b82525050565b6000604082019050620012ca6000830185620012a2565b620012d96020830184620012a2565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600062001338826200130f565b6200134481856200131a565b93506200135681856020860162000cd3565b620013618162000c08565b840191505092915050565b600060a08201905062001383600083018862001134565b62001392602083018762001134565b620013a16040830186620012a2565b620013b06060830185620012a2565b8181036080830152620013c481846200132b565b90509695505050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6200140781620013d0565b81146200141357600080fd5b50565b6000815190506200142781620013fc565b92915050565b60006020828403121562001446576200144562000bf4565b5b6000620014568482850162001416565b91505092915050565b60008160e01c9050919050565b600060033d11156200148e5760046000803e6200148b6000516200145f565b90505b90565b600060443d106200152957620014a662000bea565b60043d036004823e80513d602482011167ffffffffffffffff82111715620014d057505062001529565b808201805167ffffffffffffffff811115620014f0575050505062001529565b80602083010160043d0385018111156200150f57505050505062001529565b620015208260200185018662000c48565b82955050505050505b90565b6000620015398262000dce565b6200154581856200118f565b93506200155781856020860162000cd3565b620015628162000c08565b840191505092915050565b600060208201905081810360008301526200158981846200152c565b905092915050565b7f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000620015ef6034836200118f565b9150620015fc8262001591565b604082019050919050565b600060208201905081810360008301526200162281620015e0565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000620016876028836200118f565b9150620016948262001629565b604082019050919050565b60006020820190508181036000830152620016ba8162001678565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000620016f96010836200118f565b91506200170682620016c1565b602082019050919050565b600060208201905081810360008301526200172c81620016ea565b9050919050565b6000620017408262000ec5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820362001775576200177462001238565b5b600182019050919050565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b6000620017de6028836200118f565b9150620017eb8262001780565b604082019050919050565b600060208201905081810360008301526200181181620017cf565b9050919050565b6157dd80620018286000396000f3fe6080604052600436106101ed5760003560e01c80636b20c4541161010d578063a84f4b60116100a0578063e2b9e1861161006f578063e2b9e186146106b8578063e985e9c5146106e3578063f242432a14610720578063f2fde38b14610749578063f5298aca14610772576101ed565b8063a84f4b60146105fc578063af17dea614610625578063bd85b03914610650578063d5abeb011461068d576101ed565b80638da5cb5b116100dc5780638da5cb5b14610552578063959c8ecb1461057d57806395d89b41146105a8578063a22cb465146105d3576101ed565b80636b20c454146104d2578063715018a6146104fb5780638456cb59146105125780638c7ea24b14610529576101ed565b80632eb2c2d611610185578063484b973c11610154578063484b973c146104045780634e1273f41461042d5780634f558e791461046a5780635c975abb146104a7576101ed565b80632eb2c2d6146103825780633ccfd60b146103ab5780633f4ba83a146103c2578063453c2310146103d9576101ed565b80630e89341c116101c15780630e89341c146102c05780630fa87335146102fd5780632a55205a146103285780632db1154414610366576101ed565b8062fdd58e146101f257806301ffc9a71461022f57806302fe53051461026c57806306fdde0314610295575b600080fd5b3480156101fe57600080fd5b5061021960048036038101906102149190613662565b61079b565b60405161022691906136b1565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190613724565b610863565b604051610263919061376c565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e91906138cd565b6108dd565b005b3480156102a157600080fd5b506102aa6108f1565b6040516102b79190613995565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e291906139b7565b610983565b6040516102f49190613995565b60405180910390f35b34801561030957600080fd5b50610312610a06565b60405161031f919061376c565b60405180910390f35b34801561033457600080fd5b5061034f600480360381019061034a91906139e4565b610a19565b60405161035d929190613a33565b60405180910390f35b610380600480360381019061037b91906139b7565b610a65565b005b34801561038e57600080fd5b506103a960048036038101906103a49190613bc5565b610c02565b005b3480156103b757600080fd5b506103c0610dea565b005b3480156103ce57600080fd5b506103d7610ea7565b005b3480156103e557600080fd5b506103ee610eb9565b6040516103fb91906136b1565b60405180910390f35b34801561041057600080fd5b5061042b60048036038101906104269190613662565b610ebf565b005b34801561043957600080fd5b50610454600480360381019061044f9190613d57565b610f40565b6040516104619190613e8d565b60405180910390f35b34801561047657600080fd5b50610491600480360381019061048c91906139b7565b611059565b60405161049e919061376c565b60405180910390f35b3480156104b357600080fd5b506104bc61106d565b6040516104c9919061376c565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f49190613eaf565b611084565b005b34801561050757600080fd5b506105106110eb565b005b34801561051e57600080fd5b506105276110ff565b005b34801561053557600080fd5b50610550600480360381019061054b9190613662565b611111565b005b34801561055e57600080fd5b50610567611224565b6040516105749190613f3a565b60405180910390f35b34801561058957600080fd5b5061059261124e565b60405161059f919061376c565b60405180910390f35b3480156105b457600080fd5b506105bd611261565b6040516105ca9190613995565b60405180910390f35b3480156105df57600080fd5b506105fa60048036038101906105f59190613f81565b6112f3565b005b34801561060857600080fd5b50610623600480360381019061061e9190613ffd565b611309565b005b34801561063157600080fd5b5061063a6113ab565b6040516106479190613995565b60405180910390f35b34801561065c57600080fd5b50610677600480360381019061067291906139b7565b611439565b60405161068491906136b1565b60405180910390f35b34801561069957600080fd5b506106a2611456565b6040516106af91906136b1565b60405180910390f35b3480156106c457600080fd5b506106cd61145c565b6040516106da9190613995565b60405180910390f35b3480156106ef57600080fd5b5061070a6004803603810190610705919061403d565b6114ea565b604051610717919061376c565b60405180910390f35b34801561072c57600080fd5b506107476004803603810190610742919061407d565b61157e565b005b34801561075557600080fd5b50610770600480360381019061076b9190614114565b611766565b005b34801561077e57600080fd5b5061079960048036038101906107949190614141565b6117e9565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361080b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080290614206565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108d657506108d582611a4b565b5b9050919050565b6108e5611b2d565b6108ee81611bab565b50565b60606005805461090090614255565b80601f016020809104026020016040519081016040528092919081815260200182805461092c90614255565b80156109795780601f1061094e57610100808354040283529160200191610979565b820191906000526020600020905b81548152906001019060200180831161095c57829003601f168201915b5050505050905090565b606061098e82611059565b6109cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c4906142d2565b60405180910390fd5b6109d682611bbe565b6109df83611c52565b6040516020016109f092919061432e565b6040516020818303038152906040529050919050565b600960009054906101000a900460ff1681565b600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661271060085485610a509190614381565b610a5a91906143f2565b915091509250929050565b610a6d611d20565b600960009054906101000a900460ff16610abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab39061446f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b21906144db565b60405180910390fd5b61022b81610b386001611439565b610b4291906144fb565b1115610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a9061457b565b60405180910390fd5b6000610b9033600161079b565b9050600a548282610ba191906144fb565b1115610be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd9906145e7565b60405180910390fd5b610bfe3360018460405180602001604052806000815250611d6a565b5050565b8460006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610dd4573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c7657610c718686868686611f1a565b610de2565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610cbf929190614607565b602060405180830381865afa158015610cdc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d009190614645565b8015610d9257506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610d50929190614607565b602060405180830381865afa158015610d6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d919190614645565b5b610dd357336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610dca9190613f3a565b60405180910390fd5b5b610de18686868686611f1a565b5b505050505050565b610df2611b2d565b600047905060003373ffffffffffffffffffffffffffffffffffffffff1682604051610e1d906146a3565b60006040518083038185875af1925050503d8060008114610e5a576040519150601f19603f3d011682016040523d82523d6000602084013e610e5f565b606091505b5050905080610ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9a90614704565b60405180910390fd5b5050565b610eaf611b2d565b610eb7611fbb565b565b600a5481565b610ec7611b2d565b61022b81610ed56001611439565b610edf91906144fb565b1115610f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1790614770565b60405180910390fd5b610f3c8260018360405180602001604052806000815250611d6a565b5050565b60608151835114610f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7d90614802565b60405180910390fd5b6000835167ffffffffffffffff811115610fa357610fa26137a2565b5b604051908082528060200260200182016040528015610fd15781602001602082028036833780820191505090505b50905060005b845181101561104e5761101e858281518110610ff657610ff5614822565b5b602002602001015185838151811061101157611010614822565b5b602002602001015161079b565b82828151811061103157611030614822565b5b6020026020010181815250508061104790614851565b9050610fd7565b508091505092915050565b60008061106583611439565b119050919050565b6000600460149054906101000a900460ff16905090565b61108c611d20565b600960019054906101000a900460ff166110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d2906148e5565b60405180910390fd5b6110e683838361201e565b505050565b6110f3611b2d565b6110fd60006120bb565b565b611107611b2d565b61110f612181565b565b611119611b2d565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117f90614977565b60405180910390fd5b600081118015611199575061271081105b6111d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cf90614a09565b60405180910390fd5b81600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806008819055505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960019054906101000a900460ff1681565b60606006805461127090614255565b80601f016020809104026020016040519081016040528092919081815260200182805461129c90614255565b80156112e95780601f106112be576101008083540402835291602001916112e9565b820191906000526020600020905b8154815290600101906020018083116112cc57829003601f168201915b5050505050905090565b6113056112fe6121e4565b83836121ec565b5050565b611311611b2d565b60018263ffffffff160361133e5780600960006101000a81548160ff0219169083151502179055506113a7565b60028263ffffffff160361136b5780600960016101000a81548160ff0219169083151502179055506113a6565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139d90614a75565b60405180910390fd5b5b5050565b600680546113b890614255565b80601f01602080910402602001604051908101604052809291908181526020018280546113e490614255565b80156114315780601f1061140657610100808354040283529160200191611431565b820191906000526020600020905b81548152906001019060200180831161141457829003601f168201915b505050505081565b600060036000838152602001908152602001600020549050919050565b61022b81565b6005805461146990614255565b80601f016020809104026020016040519081016040528092919081815260200182805461149590614255565b80156114e25780601f106114b7576101008083540402835291602001916114e2565b820191906000526020600020905b8154815290600101906020018083116114c557829003601f168201915b505050505081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8460006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611750573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115f2576115ed8686868686612358565b61175e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161163b929190614607565b602060405180830381865afa158015611658573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061167c9190614645565b801561170e57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016116cc929190614607565b602060405180830381865afa1580156116e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061170d9190614645565b5b61174f57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016117469190613f3a565b60405180910390fd5b5b61175d8686868686612358565b5b505050505050565b61176e611b2d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d490614b07565b60405180910390fd5b6117e6816120bb565b50565b6117f1611d20565b600960019054906101000a900460ff16611840576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611837906148e5565b60405180910390fd5b61184b8383836123f9565b505050565b61185e868686868686611a43565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361190f5760005b835181101561190d578281815181106118b1576118b0614822565b5b6020026020010151600360008684815181106118d0576118cf614822565b5b6020026020010151815260200190815260200160002060008282546118f591906144fb565b925050819055508061190690614851565b9050611895565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611a185760005b8351811015611a1657600084828151811061196457611963614822565b5b60200260200101519050600084838151811061198357611982614822565b5b60200260200101519050600060036000848152602001908152602001600020549050818110156119e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119df90614b99565b60405180910390fd5b818103600360008581526020019081526020016000208190555050505080611a0f90614851565b9050611946565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b1657507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b265750611b2582612496565b5b9050919050565b611b356121e4565b73ffffffffffffffffffffffffffffffffffffffff16611b53611224565b73ffffffffffffffffffffffffffffffffffffffff1614611ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba090614c05565b60405180910390fd5b565b8060029081611bba9190614dd1565b5050565b606060028054611bcd90614255565b80601f0160208091040260200160405190810160405280929190818152602001828054611bf990614255565b8015611c465780601f10611c1b57610100808354040283529160200191611c46565b820191906000526020600020905b815481529060010190602001808311611c2957829003601f168201915b50505050509050919050565b606060006001611c6184612500565b01905060008167ffffffffffffffff811115611c8057611c7f6137a2565b5b6040519080825280601f01601f191660200182016040528015611cb25781602001600182028036833780820191505090505b509050600082602001820190505b600115611d15578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611d0957611d086143c3565b5b04945060008503611cc0575b819350505050919050565b611d2861106d565b15611d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5f90614eef565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd090614f81565b60405180910390fd5b6000611de36121e4565b90506000611df085612653565b90506000611dfd85612653565b9050611e0e836000898585896126cd565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e6d91906144fb565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611eeb929190614fa1565b60405180910390a4611f02836000898585896126eb565b611f11836000898989896126f3565b50505050505050565b611f226121e4565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611f685750611f6785611f626121e4565b6114ea565b5b611fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9e9061503c565b60405180910390fd5b611fb485858585856128ca565b5050505050565b611fc3612beb565b6000600460146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6120076121e4565b6040516120149190613f3a565b60405180910390a1565b6120266121e4565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061206c575061206b836120666121e4565b6114ea565b5b6120ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a29061503c565b60405180910390fd5b6120b6838383612c34565b505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612189611d20565b6001600460146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586121cd6121e4565b6040516121da9190613f3a565b60405180910390a1565b600033905090565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361225a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612251906150ce565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161234b919061376c565b60405180910390a3505050565b6123606121e4565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806123a657506123a5856123a06121e4565b6114ea565b5b6123e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123dc9061503c565b60405180910390fd5b6123f28585858585612f02565b5050505050565b6124016121e4565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806124475750612446836124416121e4565b6114ea565b5b612486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247d9061503c565b60405180910390fd5b61249183838361319d565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061255e577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612554576125536143c3565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061259b576d04ee2d6d415b85acef81000000008381612591576125906143c3565b5b0492506020810190505b662386f26fc1000083106125ca57662386f26fc1000083816125c0576125bf6143c3565b5b0492506010810190505b6305f5e10083106125f3576305f5e10083816125e9576125e86143c3565b5b0492506008810190505b612710831061261857612710838161260e5761260d6143c3565b5b0492506004810190505b6064831061263b5760648381612631576126306143c3565b5b0492506002810190505b600a831061264a576001810190505b80915050919050565b60606000600167ffffffffffffffff811115612672576126716137a2565b5b6040519080825280602002602001820160405280156126a05781602001602082028036833780820191505090505b50905082816000815181106126b8576126b7614822565b5b60200260200101818152505080915050919050565b6126d5611d20565b6126e3868686868686611850565b505050505050565b505050505050565b6127128473ffffffffffffffffffffffffffffffffffffffff16611a20565b156128c2578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612758959493929190615143565b6020604051808303816000875af192505050801561279457506040513d601f19601f8201168201806040525081019061279191906151b2565b60015b612839576127a06151ec565b806308c379a0036127fc57506127b461520e565b806127bf57506127fe565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f39190613995565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283090615310565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146128c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b7906153a2565b60405180910390fd5b505b505050505050565b815183511461290e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290590615434565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361297d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612974906154c6565b60405180910390fd5b60006129876121e4565b90506129978187878787876126cd565b60005b8451811015612b485760008582815181106129b8576129b7614822565b5b6020026020010151905060008583815181106129d7576129d6614822565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6f90615558565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b2d91906144fb565b9250508190555050505080612b4190614851565b905061299a565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612bbf929190615578565b60405180910390a4612bd58187878787876126eb565b612be38187878787876133e3565b505050505050565b612bf361106d565b612c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c29906155fb565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9a9061568d565b60405180910390fd5b8051825114612ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cde90615434565b60405180910390fd5b6000612cf16121e4565b9050612d11818560008686604051806020016040528060008152506126cd565b60005b8351811015612e5e576000848281518110612d3257612d31614822565b5b602002602001015190506000848381518110612d5157612d50614822565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de99061571f565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050508080612e5690614851565b915050612d14565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051612ed6929190615578565b60405180910390a4612efc818560008686604051806020016040528060008152506126eb565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f68906154c6565b60405180910390fd5b6000612f7b6121e4565b90506000612f8885612653565b90506000612f9585612653565b9050612fa58389898585896126cd565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508581101561303c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303390615558565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130f191906144fb565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a60405161316e929190614fa1565b60405180910390a4613184848a8a86868a6126eb565b613192848a8a8a8a8a6126f3565b505050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361320c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132039061568d565b60405180910390fd5b60006132166121e4565b9050600061322384612653565b9050600061323084612653565b9050613250838760008585604051806020016040528060008152506126cd565b600080600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050848110156132e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132de9061571f565b60405180910390fd5b84810360008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516133b4929190614fa1565b60405180910390a46133da848860008686604051806020016040528060008152506126eb565b50505050505050565b6134028473ffffffffffffffffffffffffffffffffffffffff16611a20565b156135b2578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161344895949392919061573f565b6020604051808303816000875af192505050801561348457506040513d601f19601f8201168201806040525081019061348191906151b2565b60015b613529576134906151ec565b806308c379a0036134ec57506134a461520e565b806134af57506134ee565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134e39190613995565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161352090615310565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146135b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135a7906153a2565b60405180910390fd5b505b505050505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006135f9826135ce565b9050919050565b613609816135ee565b811461361457600080fd5b50565b60008135905061362681613600565b92915050565b6000819050919050565b61363f8161362c565b811461364a57600080fd5b50565b60008135905061365c81613636565b92915050565b60008060408385031215613679576136786135c4565b5b600061368785828601613617565b92505060206136988582860161364d565b9150509250929050565b6136ab8161362c565b82525050565b60006020820190506136c660008301846136a2565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613701816136cc565b811461370c57600080fd5b50565b60008135905061371e816136f8565b92915050565b60006020828403121561373a576137396135c4565b5b60006137488482850161370f565b91505092915050565b60008115159050919050565b61376681613751565b82525050565b6000602082019050613781600083018461375d565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6137da82613791565b810181811067ffffffffffffffff821117156137f9576137f86137a2565b5b80604052505050565b600061380c6135ba565b905061381882826137d1565b919050565b600067ffffffffffffffff821115613838576138376137a2565b5b61384182613791565b9050602081019050919050565b82818337600083830152505050565b600061387061386b8461381d565b613802565b90508281526020810184848401111561388c5761388b61378c565b5b61389784828561384e565b509392505050565b600082601f8301126138b4576138b3613787565b5b81356138c484826020860161385d565b91505092915050565b6000602082840312156138e3576138e26135c4565b5b600082013567ffffffffffffffff811115613901576139006135c9565b5b61390d8482850161389f565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613950578082015181840152602081019050613935565b60008484015250505050565b600061396782613916565b6139718185613921565b9350613981818560208601613932565b61398a81613791565b840191505092915050565b600060208201905081810360008301526139af818461395c565b905092915050565b6000602082840312156139cd576139cc6135c4565b5b60006139db8482850161364d565b91505092915050565b600080604083850312156139fb576139fa6135c4565b5b6000613a098582860161364d565b9250506020613a1a8582860161364d565b9150509250929050565b613a2d816135ee565b82525050565b6000604082019050613a486000830185613a24565b613a5560208301846136a2565b9392505050565b600067ffffffffffffffff821115613a7757613a766137a2565b5b602082029050602081019050919050565b600080fd5b6000613aa0613a9b84613a5c565b613802565b90508083825260208201905060208402830185811115613ac357613ac2613a88565b5b835b81811015613aec5780613ad8888261364d565b845260208401935050602081019050613ac5565b5050509392505050565b600082601f830112613b0b57613b0a613787565b5b8135613b1b848260208601613a8d565b91505092915050565b600067ffffffffffffffff821115613b3f57613b3e6137a2565b5b613b4882613791565b9050602081019050919050565b6000613b68613b6384613b24565b613802565b905082815260208101848484011115613b8457613b8361378c565b5b613b8f84828561384e565b509392505050565b600082601f830112613bac57613bab613787565b5b8135613bbc848260208601613b55565b91505092915050565b600080600080600060a08688031215613be157613be06135c4565b5b6000613bef88828901613617565b9550506020613c0088828901613617565b945050604086013567ffffffffffffffff811115613c2157613c206135c9565b5b613c2d88828901613af6565b935050606086013567ffffffffffffffff811115613c4e57613c4d6135c9565b5b613c5a88828901613af6565b925050608086013567ffffffffffffffff811115613c7b57613c7a6135c9565b5b613c8788828901613b97565b9150509295509295909350565b600067ffffffffffffffff821115613caf57613cae6137a2565b5b602082029050602081019050919050565b6000613cd3613cce84613c94565b613802565b90508083825260208201905060208402830185811115613cf657613cf5613a88565b5b835b81811015613d1f5780613d0b8882613617565b845260208401935050602081019050613cf8565b5050509392505050565b600082601f830112613d3e57613d3d613787565b5b8135613d4e848260208601613cc0565b91505092915050565b60008060408385031215613d6e57613d6d6135c4565b5b600083013567ffffffffffffffff811115613d8c57613d8b6135c9565b5b613d9885828601613d29565b925050602083013567ffffffffffffffff811115613db957613db86135c9565b5b613dc585828601613af6565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613e048161362c565b82525050565b6000613e168383613dfb565b60208301905092915050565b6000602082019050919050565b6000613e3a82613dcf565b613e448185613dda565b9350613e4f83613deb565b8060005b83811015613e80578151613e678882613e0a565b9750613e7283613e22565b925050600181019050613e53565b5085935050505092915050565b60006020820190508181036000830152613ea78184613e2f565b905092915050565b600080600060608486031215613ec857613ec76135c4565b5b6000613ed686828701613617565b935050602084013567ffffffffffffffff811115613ef757613ef66135c9565b5b613f0386828701613af6565b925050604084013567ffffffffffffffff811115613f2457613f236135c9565b5b613f3086828701613af6565b9150509250925092565b6000602082019050613f4f6000830184613a24565b92915050565b613f5e81613751565b8114613f6957600080fd5b50565b600081359050613f7b81613f55565b92915050565b60008060408385031215613f9857613f976135c4565b5b6000613fa685828601613617565b9250506020613fb785828601613f6c565b9150509250929050565b600063ffffffff82169050919050565b613fda81613fc1565b8114613fe557600080fd5b50565b600081359050613ff781613fd1565b92915050565b60008060408385031215614014576140136135c4565b5b600061402285828601613fe8565b925050602061403385828601613f6c565b9150509250929050565b60008060408385031215614054576140536135c4565b5b600061406285828601613617565b925050602061407385828601613617565b9150509250929050565b600080600080600060a08688031215614099576140986135c4565b5b60006140a788828901613617565b95505060206140b888828901613617565b94505060406140c98882890161364d565b93505060606140da8882890161364d565b925050608086013567ffffffffffffffff8111156140fb576140fa6135c9565b5b61410788828901613b97565b9150509295509295909350565b60006020828403121561412a576141296135c4565b5b600061413884828501613617565b91505092915050565b60008060006060848603121561415a576141596135c4565b5b600061416886828701613617565b93505060206141798682870161364d565b925050604061418a8682870161364d565b9150509250925092565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b60006141f0602a83613921565b91506141fb82614194565b604082019050919050565b6000602082019050818103600083015261421f816141e3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061426d57607f821691505b6020821081036142805761427f614226565b5b50919050565b7f5552493a206e6f6e6578697374656e7420746f6b656e00000000000000000000600082015250565b60006142bc601683613921565b91506142c782614286565b602082019050919050565b600060208201905081810360008301526142eb816142af565b9050919050565b600081905092915050565b600061430882613916565b61431281856142f2565b9350614322818560208601613932565b80840191505092915050565b600061433a82856142fd565b915061434682846142fd565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061438c8261362c565b91506143978361362c565b92508282026143a58161362c565b915082820484148315176143bc576143bb614352565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143fd8261362c565b91506144088361362c565b925082614418576144176143c3565b5b828204905092915050565b7f5075626c69632073616c6520697320636c6f7365640000000000000000000000600082015250565b6000614459601583613921565b915061446482614423565b602082019050919050565b600060208201905081810360008301526144888161444c565b9050919050565b7f4e6f20636f6e7472616374206d696e74696e6700000000000000000000000000600082015250565b60006144c5601383613921565b91506144d08261448f565b602082019050919050565b600060208201905081810360008301526144f4816144b8565b9050919050565b60006145068261362c565b91506145118361362c565b925082820190508082111561452957614528614352565b5b92915050565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b6000614565601283613921565b91506145708261452f565b602082019050919050565b6000602082019050818103600083015261459481614558565b9050919050565b7f4d6178206d696e74206c696d6974207265616368656400000000000000000000600082015250565b60006145d1601683613921565b91506145dc8261459b565b602082019050919050565b60006020820190508181036000830152614600816145c4565b9050919050565b600060408201905061461c6000830185613a24565b6146296020830184613a24565b9392505050565b60008151905061463f81613f55565b92915050565b60006020828403121561465b5761465a6135c4565b5b600061466984828501614630565b91505092915050565b600081905092915050565b50565b600061468d600083614672565b91506146988261467d565b600082019050919050565b60006146ae82614680565b9150819050919050565b7f7472616e73666572206661696c65640000000000000000000000000000000000600082015250565b60006146ee600f83613921565b91506146f9826146b8565b602082019050919050565b6000602082019050818103600083015261471d816146e1565b9050919050565b7f50757263686173653a204d617820737570706c79207265616368656400000000600082015250565b600061475a601c83613921565b915061476582614724565b602082019050919050565b600060208201905081810360008301526147898161474d565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b60006147ec602983613921565b91506147f782614790565b604082019050919050565b6000602082019050818103600083015261481b816147df565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061485c8261362c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361488e5761488d614352565b5b600182019050919050565b7f546f6b656e206973206e6f74206275726e61626c650000000000000000000000600082015250565b60006148cf601583613921565b91506148da82614899565b602082019050919050565b600060208201905081810360008301526148fe816148c2565b9050919050565b7f526f79616c746965733a206e657720726563697069656e74206973207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b6000614961602c83613921565b915061496c82614905565b604082019050919050565b6000602082019050818103600083015261499081614954565b9050919050565b7f526f79616c746965733a206e65772073686172652073686f756c64206265206260008201527f65747765656e203120616e64203939393920626173697320706f696e74730000602082015250565b60006149f3603e83613921565b91506149fe82614997565b604082019050919050565b60006020820190508181036000830152614a22816149e6565b9050919050565b7f556e6b6e6f776e206d6f64696669657220747970650000000000000000000000600082015250565b6000614a5f601583613921565b9150614a6a82614a29565b602082019050919050565b60006020820190508181036000830152614a8e81614a52565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614af1602683613921565b9150614afc82614a95565b604082019050919050565b60006020820190508181036000830152614b2081614ae4565b9050919050565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b6000614b83602883613921565b9150614b8e82614b27565b604082019050919050565b60006020820190508181036000830152614bb281614b76565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614bef602083613921565b9150614bfa82614bb9565b602082019050919050565b60006020820190508181036000830152614c1e81614be2565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614c877fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614c4a565b614c918683614c4a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000614cce614cc9614cc48461362c565b614ca9565b61362c565b9050919050565b6000819050919050565b614ce883614cb3565b614cfc614cf482614cd5565b848454614c57565b825550505050565b600090565b614d11614d04565b614d1c818484614cdf565b505050565b5b81811015614d4057614d35600082614d09565b600181019050614d22565b5050565b601f821115614d8557614d5681614c25565b614d5f84614c3a565b81016020851015614d6e578190505b614d82614d7a85614c3a565b830182614d21565b50505b505050565b600082821c905092915050565b6000614da860001984600802614d8a565b1980831691505092915050565b6000614dc18383614d97565b9150826002028217905092915050565b614dda82613916565b67ffffffffffffffff811115614df357614df26137a2565b5b614dfd8254614255565b614e08828285614d44565b600060209050601f831160018114614e3b5760008415614e29578287015190505b614e338582614db5565b865550614e9b565b601f198416614e4986614c25565b60005b82811015614e7157848901518255600182019150602085019450602081019050614e4c565b86831015614e8e5784890151614e8a601f891682614d97565b8355505b6001600288020188555050505b505050505050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000614ed9601083613921565b9150614ee482614ea3565b602082019050919050565b60006020820190508181036000830152614f0881614ecc565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614f6b602183613921565b9150614f7682614f0f565b604082019050919050565b60006020820190508181036000830152614f9a81614f5e565b9050919050565b6000604082019050614fb660008301856136a2565b614fc360208301846136a2565b9392505050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206f7220617070726f766564000000000000000000000000000000000000602082015250565b6000615026602e83613921565b915061503182614fca565b604082019050919050565b6000602082019050818103600083015261505581615019565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006150b8602983613921565b91506150c38261505c565b604082019050919050565b600060208201905081810360008301526150e7816150ab565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615115826150ee565b61511f81856150f9565b935061512f818560208601613932565b61513881613791565b840191505092915050565b600060a0820190506151586000830188613a24565b6151656020830187613a24565b61517260408301866136a2565b61517f60608301856136a2565b8181036080830152615191818461510a565b90509695505050505050565b6000815190506151ac816136f8565b92915050565b6000602082840312156151c8576151c76135c4565b5b60006151d68482850161519d565b91505092915050565b60008160e01c9050919050565b600060033d111561520b5760046000803e6152086000516151df565b90505b90565b600060443d1061529b576152206135ba565b60043d036004823e80513d602482011167ffffffffffffffff8211171561524857505061529b565b808201805167ffffffffffffffff811115615266575050505061529b565b80602083010160043d03850181111561528357505050505061529b565b615292826020018501866137d1565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b60006152fa603483613921565b91506153058261529e565b604082019050919050565b60006020820190508181036000830152615329816152ed565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b600061538c602883613921565b915061539782615330565b604082019050919050565b600060208201905081810360008301526153bb8161537f565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b600061541e602883613921565b9150615429826153c2565b604082019050919050565b6000602082019050818103600083015261544d81615411565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006154b0602583613921565b91506154bb82615454565b604082019050919050565b600060208201905081810360008301526154df816154a3565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000615542602a83613921565b915061554d826154e6565b604082019050919050565b6000602082019050818103600083015261557181615535565b9050919050565b600060408201905081810360008301526155928185613e2f565b905081810360208301526155a68184613e2f565b90509392505050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006155e5601483613921565b91506155f0826155af565b602082019050919050565b60006020820190508181036000830152615614816155d8565b9050919050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000615677602383613921565b91506156828261561b565b604082019050919050565b600060208201905081810360008301526156a68161566a565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000615709602483613921565b9150615714826156ad565b604082019050919050565b60006020820190508181036000830152615738816156fc565b9050919050565b600060a0820190506157546000830188613a24565b6157616020830187613a24565b81810360408301526157738186613e2f565b905081810360608301526157878185613e2f565b9050818103608083015261579b818461510a565b9050969550505050505056fea26469706673582212200797ea25be03138c397dd860de73f6c27c313e08e371772723864c33b1ed495564736f6c634300081100330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f6261667962656961786c73346b767165676f79666f6964746f6c75726c6b72697a703263696b613568727876376970696a746b6e686f37367835752e697066732e6e667473746f726167652e6c696e6b2f00000000000000

Deployed Bytecode

0x6080604052600436106101ed5760003560e01c80636b20c4541161010d578063a84f4b60116100a0578063e2b9e1861161006f578063e2b9e186146106b8578063e985e9c5146106e3578063f242432a14610720578063f2fde38b14610749578063f5298aca14610772576101ed565b8063a84f4b60146105fc578063af17dea614610625578063bd85b03914610650578063d5abeb011461068d576101ed565b80638da5cb5b116100dc5780638da5cb5b14610552578063959c8ecb1461057d57806395d89b41146105a8578063a22cb465146105d3576101ed565b80636b20c454146104d2578063715018a6146104fb5780638456cb59146105125780638c7ea24b14610529576101ed565b80632eb2c2d611610185578063484b973c11610154578063484b973c146104045780634e1273f41461042d5780634f558e791461046a5780635c975abb146104a7576101ed565b80632eb2c2d6146103825780633ccfd60b146103ab5780633f4ba83a146103c2578063453c2310146103d9576101ed565b80630e89341c116101c15780630e89341c146102c05780630fa87335146102fd5780632a55205a146103285780632db1154414610366576101ed565b8062fdd58e146101f257806301ffc9a71461022f57806302fe53051461026c57806306fdde0314610295575b600080fd5b3480156101fe57600080fd5b5061021960048036038101906102149190613662565b61079b565b60405161022691906136b1565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190613724565b610863565b604051610263919061376c565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e91906138cd565b6108dd565b005b3480156102a157600080fd5b506102aa6108f1565b6040516102b79190613995565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e291906139b7565b610983565b6040516102f49190613995565b60405180910390f35b34801561030957600080fd5b50610312610a06565b60405161031f919061376c565b60405180910390f35b34801561033457600080fd5b5061034f600480360381019061034a91906139e4565b610a19565b60405161035d929190613a33565b60405180910390f35b610380600480360381019061037b91906139b7565b610a65565b005b34801561038e57600080fd5b506103a960048036038101906103a49190613bc5565b610c02565b005b3480156103b757600080fd5b506103c0610dea565b005b3480156103ce57600080fd5b506103d7610ea7565b005b3480156103e557600080fd5b506103ee610eb9565b6040516103fb91906136b1565b60405180910390f35b34801561041057600080fd5b5061042b60048036038101906104269190613662565b610ebf565b005b34801561043957600080fd5b50610454600480360381019061044f9190613d57565b610f40565b6040516104619190613e8d565b60405180910390f35b34801561047657600080fd5b50610491600480360381019061048c91906139b7565b611059565b60405161049e919061376c565b60405180910390f35b3480156104b357600080fd5b506104bc61106d565b6040516104c9919061376c565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f49190613eaf565b611084565b005b34801561050757600080fd5b506105106110eb565b005b34801561051e57600080fd5b506105276110ff565b005b34801561053557600080fd5b50610550600480360381019061054b9190613662565b611111565b005b34801561055e57600080fd5b50610567611224565b6040516105749190613f3a565b60405180910390f35b34801561058957600080fd5b5061059261124e565b60405161059f919061376c565b60405180910390f35b3480156105b457600080fd5b506105bd611261565b6040516105ca9190613995565b60405180910390f35b3480156105df57600080fd5b506105fa60048036038101906105f59190613f81565b6112f3565b005b34801561060857600080fd5b50610623600480360381019061061e9190613ffd565b611309565b005b34801561063157600080fd5b5061063a6113ab565b6040516106479190613995565b60405180910390f35b34801561065c57600080fd5b50610677600480360381019061067291906139b7565b611439565b60405161068491906136b1565b60405180910390f35b34801561069957600080fd5b506106a2611456565b6040516106af91906136b1565b60405180910390f35b3480156106c457600080fd5b506106cd61145c565b6040516106da9190613995565b60405180910390f35b3480156106ef57600080fd5b5061070a6004803603810190610705919061403d565b6114ea565b604051610717919061376c565b60405180910390f35b34801561072c57600080fd5b506107476004803603810190610742919061407d565b61157e565b005b34801561075557600080fd5b50610770600480360381019061076b9190614114565b611766565b005b34801561077e57600080fd5b5061079960048036038101906107949190614141565b6117e9565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361080b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080290614206565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108d657506108d582611a4b565b5b9050919050565b6108e5611b2d565b6108ee81611bab565b50565b60606005805461090090614255565b80601f016020809104026020016040519081016040528092919081815260200182805461092c90614255565b80156109795780601f1061094e57610100808354040283529160200191610979565b820191906000526020600020905b81548152906001019060200180831161095c57829003601f168201915b5050505050905090565b606061098e82611059565b6109cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c4906142d2565b60405180910390fd5b6109d682611bbe565b6109df83611c52565b6040516020016109f092919061432e565b6040516020818303038152906040529050919050565b600960009054906101000a900460ff1681565b600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661271060085485610a509190614381565b610a5a91906143f2565b915091509250929050565b610a6d611d20565b600960009054906101000a900460ff16610abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab39061446f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b21906144db565b60405180910390fd5b61022b81610b386001611439565b610b4291906144fb565b1115610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a9061457b565b60405180910390fd5b6000610b9033600161079b565b9050600a548282610ba191906144fb565b1115610be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd9906145e7565b60405180910390fd5b610bfe3360018460405180602001604052806000815250611d6a565b5050565b8460006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610dd4573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c7657610c718686868686611f1a565b610de2565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610cbf929190614607565b602060405180830381865afa158015610cdc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d009190614645565b8015610d9257506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610d50929190614607565b602060405180830381865afa158015610d6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d919190614645565b5b610dd357336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610dca9190613f3a565b60405180910390fd5b5b610de18686868686611f1a565b5b505050505050565b610df2611b2d565b600047905060003373ffffffffffffffffffffffffffffffffffffffff1682604051610e1d906146a3565b60006040518083038185875af1925050503d8060008114610e5a576040519150601f19603f3d011682016040523d82523d6000602084013e610e5f565b606091505b5050905080610ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9a90614704565b60405180910390fd5b5050565b610eaf611b2d565b610eb7611fbb565b565b600a5481565b610ec7611b2d565b61022b81610ed56001611439565b610edf91906144fb565b1115610f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1790614770565b60405180910390fd5b610f3c8260018360405180602001604052806000815250611d6a565b5050565b60608151835114610f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7d90614802565b60405180910390fd5b6000835167ffffffffffffffff811115610fa357610fa26137a2565b5b604051908082528060200260200182016040528015610fd15781602001602082028036833780820191505090505b50905060005b845181101561104e5761101e858281518110610ff657610ff5614822565b5b602002602001015185838151811061101157611010614822565b5b602002602001015161079b565b82828151811061103157611030614822565b5b6020026020010181815250508061104790614851565b9050610fd7565b508091505092915050565b60008061106583611439565b119050919050565b6000600460149054906101000a900460ff16905090565b61108c611d20565b600960019054906101000a900460ff166110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d2906148e5565b60405180910390fd5b6110e683838361201e565b505050565b6110f3611b2d565b6110fd60006120bb565b565b611107611b2d565b61110f612181565b565b611119611b2d565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117f90614977565b60405180910390fd5b600081118015611199575061271081105b6111d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cf90614a09565b60405180910390fd5b81600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806008819055505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960019054906101000a900460ff1681565b60606006805461127090614255565b80601f016020809104026020016040519081016040528092919081815260200182805461129c90614255565b80156112e95780601f106112be576101008083540402835291602001916112e9565b820191906000526020600020905b8154815290600101906020018083116112cc57829003601f168201915b5050505050905090565b6113056112fe6121e4565b83836121ec565b5050565b611311611b2d565b60018263ffffffff160361133e5780600960006101000a81548160ff0219169083151502179055506113a7565b60028263ffffffff160361136b5780600960016101000a81548160ff0219169083151502179055506113a6565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139d90614a75565b60405180910390fd5b5b5050565b600680546113b890614255565b80601f01602080910402602001604051908101604052809291908181526020018280546113e490614255565b80156114315780601f1061140657610100808354040283529160200191611431565b820191906000526020600020905b81548152906001019060200180831161141457829003601f168201915b505050505081565b600060036000838152602001908152602001600020549050919050565b61022b81565b6005805461146990614255565b80601f016020809104026020016040519081016040528092919081815260200182805461149590614255565b80156114e25780601f106114b7576101008083540402835291602001916114e2565b820191906000526020600020905b8154815290600101906020018083116114c557829003601f168201915b505050505081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8460006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611750573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115f2576115ed8686868686612358565b61175e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161163b929190614607565b602060405180830381865afa158015611658573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061167c9190614645565b801561170e57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016116cc929190614607565b602060405180830381865afa1580156116e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061170d9190614645565b5b61174f57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016117469190613f3a565b60405180910390fd5b5b61175d8686868686612358565b5b505050505050565b61176e611b2d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d490614b07565b60405180910390fd5b6117e6816120bb565b50565b6117f1611d20565b600960019054906101000a900460ff16611840576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611837906148e5565b60405180910390fd5b61184b8383836123f9565b505050565b61185e868686868686611a43565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361190f5760005b835181101561190d578281815181106118b1576118b0614822565b5b6020026020010151600360008684815181106118d0576118cf614822565b5b6020026020010151815260200190815260200160002060008282546118f591906144fb565b925050819055508061190690614851565b9050611895565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611a185760005b8351811015611a1657600084828151811061196457611963614822565b5b60200260200101519050600084838151811061198357611982614822565b5b60200260200101519050600060036000848152602001908152602001600020549050818110156119e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119df90614b99565b60405180910390fd5b818103600360008581526020019081526020016000208190555050505080611a0f90614851565b9050611946565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b1657507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b265750611b2582612496565b5b9050919050565b611b356121e4565b73ffffffffffffffffffffffffffffffffffffffff16611b53611224565b73ffffffffffffffffffffffffffffffffffffffff1614611ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba090614c05565b60405180910390fd5b565b8060029081611bba9190614dd1565b5050565b606060028054611bcd90614255565b80601f0160208091040260200160405190810160405280929190818152602001828054611bf990614255565b8015611c465780601f10611c1b57610100808354040283529160200191611c46565b820191906000526020600020905b815481529060010190602001808311611c2957829003601f168201915b50505050509050919050565b606060006001611c6184612500565b01905060008167ffffffffffffffff811115611c8057611c7f6137a2565b5b6040519080825280601f01601f191660200182016040528015611cb25781602001600182028036833780820191505090505b509050600082602001820190505b600115611d15578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611d0957611d086143c3565b5b04945060008503611cc0575b819350505050919050565b611d2861106d565b15611d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5f90614eef565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd090614f81565b60405180910390fd5b6000611de36121e4565b90506000611df085612653565b90506000611dfd85612653565b9050611e0e836000898585896126cd565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e6d91906144fb565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611eeb929190614fa1565b60405180910390a4611f02836000898585896126eb565b611f11836000898989896126f3565b50505050505050565b611f226121e4565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611f685750611f6785611f626121e4565b6114ea565b5b611fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9e9061503c565b60405180910390fd5b611fb485858585856128ca565b5050505050565b611fc3612beb565b6000600460146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6120076121e4565b6040516120149190613f3a565b60405180910390a1565b6120266121e4565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061206c575061206b836120666121e4565b6114ea565b5b6120ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a29061503c565b60405180910390fd5b6120b6838383612c34565b505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612189611d20565b6001600460146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586121cd6121e4565b6040516121da9190613f3a565b60405180910390a1565b600033905090565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361225a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612251906150ce565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161234b919061376c565b60405180910390a3505050565b6123606121e4565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806123a657506123a5856123a06121e4565b6114ea565b5b6123e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123dc9061503c565b60405180910390fd5b6123f28585858585612f02565b5050505050565b6124016121e4565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806124475750612446836124416121e4565b6114ea565b5b612486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247d9061503c565b60405180910390fd5b61249183838361319d565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061255e577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612554576125536143c3565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061259b576d04ee2d6d415b85acef81000000008381612591576125906143c3565b5b0492506020810190505b662386f26fc1000083106125ca57662386f26fc1000083816125c0576125bf6143c3565b5b0492506010810190505b6305f5e10083106125f3576305f5e10083816125e9576125e86143c3565b5b0492506008810190505b612710831061261857612710838161260e5761260d6143c3565b5b0492506004810190505b6064831061263b5760648381612631576126306143c3565b5b0492506002810190505b600a831061264a576001810190505b80915050919050565b60606000600167ffffffffffffffff811115612672576126716137a2565b5b6040519080825280602002602001820160405280156126a05781602001602082028036833780820191505090505b50905082816000815181106126b8576126b7614822565b5b60200260200101818152505080915050919050565b6126d5611d20565b6126e3868686868686611850565b505050505050565b505050505050565b6127128473ffffffffffffffffffffffffffffffffffffffff16611a20565b156128c2578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612758959493929190615143565b6020604051808303816000875af192505050801561279457506040513d601f19601f8201168201806040525081019061279191906151b2565b60015b612839576127a06151ec565b806308c379a0036127fc57506127b461520e565b806127bf57506127fe565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f39190613995565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283090615310565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146128c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b7906153a2565b60405180910390fd5b505b505050505050565b815183511461290e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290590615434565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361297d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612974906154c6565b60405180910390fd5b60006129876121e4565b90506129978187878787876126cd565b60005b8451811015612b485760008582815181106129b8576129b7614822565b5b6020026020010151905060008583815181106129d7576129d6614822565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6f90615558565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b2d91906144fb565b9250508190555050505080612b4190614851565b905061299a565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612bbf929190615578565b60405180910390a4612bd58187878787876126eb565b612be38187878787876133e3565b505050505050565b612bf361106d565b612c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c29906155fb565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9a9061568d565b60405180910390fd5b8051825114612ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cde90615434565b60405180910390fd5b6000612cf16121e4565b9050612d11818560008686604051806020016040528060008152506126cd565b60005b8351811015612e5e576000848281518110612d3257612d31614822565b5b602002602001015190506000848381518110612d5157612d50614822565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de99061571f565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050508080612e5690614851565b915050612d14565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051612ed6929190615578565b60405180910390a4612efc818560008686604051806020016040528060008152506126eb565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f68906154c6565b60405180910390fd5b6000612f7b6121e4565b90506000612f8885612653565b90506000612f9585612653565b9050612fa58389898585896126cd565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508581101561303c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303390615558565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130f191906144fb565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a60405161316e929190614fa1565b60405180910390a4613184848a8a86868a6126eb565b613192848a8a8a8a8a6126f3565b505050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361320c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132039061568d565b60405180910390fd5b60006132166121e4565b9050600061322384612653565b9050600061323084612653565b9050613250838760008585604051806020016040528060008152506126cd565b600080600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050848110156132e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132de9061571f565b60405180910390fd5b84810360008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516133b4929190614fa1565b60405180910390a46133da848860008686604051806020016040528060008152506126eb565b50505050505050565b6134028473ffffffffffffffffffffffffffffffffffffffff16611a20565b156135b2578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161344895949392919061573f565b6020604051808303816000875af192505050801561348457506040513d601f19601f8201168201806040525081019061348191906151b2565b60015b613529576134906151ec565b806308c379a0036134ec57506134a461520e565b806134af57506134ee565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134e39190613995565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161352090615310565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146135b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135a7906153a2565b60405180910390fd5b505b505050505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006135f9826135ce565b9050919050565b613609816135ee565b811461361457600080fd5b50565b60008135905061362681613600565b92915050565b6000819050919050565b61363f8161362c565b811461364a57600080fd5b50565b60008135905061365c81613636565b92915050565b60008060408385031215613679576136786135c4565b5b600061368785828601613617565b92505060206136988582860161364d565b9150509250929050565b6136ab8161362c565b82525050565b60006020820190506136c660008301846136a2565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613701816136cc565b811461370c57600080fd5b50565b60008135905061371e816136f8565b92915050565b60006020828403121561373a576137396135c4565b5b60006137488482850161370f565b91505092915050565b60008115159050919050565b61376681613751565b82525050565b6000602082019050613781600083018461375d565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6137da82613791565b810181811067ffffffffffffffff821117156137f9576137f86137a2565b5b80604052505050565b600061380c6135ba565b905061381882826137d1565b919050565b600067ffffffffffffffff821115613838576138376137a2565b5b61384182613791565b9050602081019050919050565b82818337600083830152505050565b600061387061386b8461381d565b613802565b90508281526020810184848401111561388c5761388b61378c565b5b61389784828561384e565b509392505050565b600082601f8301126138b4576138b3613787565b5b81356138c484826020860161385d565b91505092915050565b6000602082840312156138e3576138e26135c4565b5b600082013567ffffffffffffffff811115613901576139006135c9565b5b61390d8482850161389f565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613950578082015181840152602081019050613935565b60008484015250505050565b600061396782613916565b6139718185613921565b9350613981818560208601613932565b61398a81613791565b840191505092915050565b600060208201905081810360008301526139af818461395c565b905092915050565b6000602082840312156139cd576139cc6135c4565b5b60006139db8482850161364d565b91505092915050565b600080604083850312156139fb576139fa6135c4565b5b6000613a098582860161364d565b9250506020613a1a8582860161364d565b9150509250929050565b613a2d816135ee565b82525050565b6000604082019050613a486000830185613a24565b613a5560208301846136a2565b9392505050565b600067ffffffffffffffff821115613a7757613a766137a2565b5b602082029050602081019050919050565b600080fd5b6000613aa0613a9b84613a5c565b613802565b90508083825260208201905060208402830185811115613ac357613ac2613a88565b5b835b81811015613aec5780613ad8888261364d565b845260208401935050602081019050613ac5565b5050509392505050565b600082601f830112613b0b57613b0a613787565b5b8135613b1b848260208601613a8d565b91505092915050565b600067ffffffffffffffff821115613b3f57613b3e6137a2565b5b613b4882613791565b9050602081019050919050565b6000613b68613b6384613b24565b613802565b905082815260208101848484011115613b8457613b8361378c565b5b613b8f84828561384e565b509392505050565b600082601f830112613bac57613bab613787565b5b8135613bbc848260208601613b55565b91505092915050565b600080600080600060a08688031215613be157613be06135c4565b5b6000613bef88828901613617565b9550506020613c0088828901613617565b945050604086013567ffffffffffffffff811115613c2157613c206135c9565b5b613c2d88828901613af6565b935050606086013567ffffffffffffffff811115613c4e57613c4d6135c9565b5b613c5a88828901613af6565b925050608086013567ffffffffffffffff811115613c7b57613c7a6135c9565b5b613c8788828901613b97565b9150509295509295909350565b600067ffffffffffffffff821115613caf57613cae6137a2565b5b602082029050602081019050919050565b6000613cd3613cce84613c94565b613802565b90508083825260208201905060208402830185811115613cf657613cf5613a88565b5b835b81811015613d1f5780613d0b8882613617565b845260208401935050602081019050613cf8565b5050509392505050565b600082601f830112613d3e57613d3d613787565b5b8135613d4e848260208601613cc0565b91505092915050565b60008060408385031215613d6e57613d6d6135c4565b5b600083013567ffffffffffffffff811115613d8c57613d8b6135c9565b5b613d9885828601613d29565b925050602083013567ffffffffffffffff811115613db957613db86135c9565b5b613dc585828601613af6565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613e048161362c565b82525050565b6000613e168383613dfb565b60208301905092915050565b6000602082019050919050565b6000613e3a82613dcf565b613e448185613dda565b9350613e4f83613deb565b8060005b83811015613e80578151613e678882613e0a565b9750613e7283613e22565b925050600181019050613e53565b5085935050505092915050565b60006020820190508181036000830152613ea78184613e2f565b905092915050565b600080600060608486031215613ec857613ec76135c4565b5b6000613ed686828701613617565b935050602084013567ffffffffffffffff811115613ef757613ef66135c9565b5b613f0386828701613af6565b925050604084013567ffffffffffffffff811115613f2457613f236135c9565b5b613f3086828701613af6565b9150509250925092565b6000602082019050613f4f6000830184613a24565b92915050565b613f5e81613751565b8114613f6957600080fd5b50565b600081359050613f7b81613f55565b92915050565b60008060408385031215613f9857613f976135c4565b5b6000613fa685828601613617565b9250506020613fb785828601613f6c565b9150509250929050565b600063ffffffff82169050919050565b613fda81613fc1565b8114613fe557600080fd5b50565b600081359050613ff781613fd1565b92915050565b60008060408385031215614014576140136135c4565b5b600061402285828601613fe8565b925050602061403385828601613f6c565b9150509250929050565b60008060408385031215614054576140536135c4565b5b600061406285828601613617565b925050602061407385828601613617565b9150509250929050565b600080600080600060a08688031215614099576140986135c4565b5b60006140a788828901613617565b95505060206140b888828901613617565b94505060406140c98882890161364d565b93505060606140da8882890161364d565b925050608086013567ffffffffffffffff8111156140fb576140fa6135c9565b5b61410788828901613b97565b9150509295509295909350565b60006020828403121561412a576141296135c4565b5b600061413884828501613617565b91505092915050565b60008060006060848603121561415a576141596135c4565b5b600061416886828701613617565b93505060206141798682870161364d565b925050604061418a8682870161364d565b9150509250925092565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b60006141f0602a83613921565b91506141fb82614194565b604082019050919050565b6000602082019050818103600083015261421f816141e3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061426d57607f821691505b6020821081036142805761427f614226565b5b50919050565b7f5552493a206e6f6e6578697374656e7420746f6b656e00000000000000000000600082015250565b60006142bc601683613921565b91506142c782614286565b602082019050919050565b600060208201905081810360008301526142eb816142af565b9050919050565b600081905092915050565b600061430882613916565b61431281856142f2565b9350614322818560208601613932565b80840191505092915050565b600061433a82856142fd565b915061434682846142fd565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061438c8261362c565b91506143978361362c565b92508282026143a58161362c565b915082820484148315176143bc576143bb614352565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143fd8261362c565b91506144088361362c565b925082614418576144176143c3565b5b828204905092915050565b7f5075626c69632073616c6520697320636c6f7365640000000000000000000000600082015250565b6000614459601583613921565b915061446482614423565b602082019050919050565b600060208201905081810360008301526144888161444c565b9050919050565b7f4e6f20636f6e7472616374206d696e74696e6700000000000000000000000000600082015250565b60006144c5601383613921565b91506144d08261448f565b602082019050919050565b600060208201905081810360008301526144f4816144b8565b9050919050565b60006145068261362c565b91506145118361362c565b925082820190508082111561452957614528614352565b5b92915050565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b6000614565601283613921565b91506145708261452f565b602082019050919050565b6000602082019050818103600083015261459481614558565b9050919050565b7f4d6178206d696e74206c696d6974207265616368656400000000000000000000600082015250565b60006145d1601683613921565b91506145dc8261459b565b602082019050919050565b60006020820190508181036000830152614600816145c4565b9050919050565b600060408201905061461c6000830185613a24565b6146296020830184613a24565b9392505050565b60008151905061463f81613f55565b92915050565b60006020828403121561465b5761465a6135c4565b5b600061466984828501614630565b91505092915050565b600081905092915050565b50565b600061468d600083614672565b91506146988261467d565b600082019050919050565b60006146ae82614680565b9150819050919050565b7f7472616e73666572206661696c65640000000000000000000000000000000000600082015250565b60006146ee600f83613921565b91506146f9826146b8565b602082019050919050565b6000602082019050818103600083015261471d816146e1565b9050919050565b7f50757263686173653a204d617820737570706c79207265616368656400000000600082015250565b600061475a601c83613921565b915061476582614724565b602082019050919050565b600060208201905081810360008301526147898161474d565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b60006147ec602983613921565b91506147f782614790565b604082019050919050565b6000602082019050818103600083015261481b816147df565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061485c8261362c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361488e5761488d614352565b5b600182019050919050565b7f546f6b656e206973206e6f74206275726e61626c650000000000000000000000600082015250565b60006148cf601583613921565b91506148da82614899565b602082019050919050565b600060208201905081810360008301526148fe816148c2565b9050919050565b7f526f79616c746965733a206e657720726563697069656e74206973207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b6000614961602c83613921565b915061496c82614905565b604082019050919050565b6000602082019050818103600083015261499081614954565b9050919050565b7f526f79616c746965733a206e65772073686172652073686f756c64206265206260008201527f65747765656e203120616e64203939393920626173697320706f696e74730000602082015250565b60006149f3603e83613921565b91506149fe82614997565b604082019050919050565b60006020820190508181036000830152614a22816149e6565b9050919050565b7f556e6b6e6f776e206d6f64696669657220747970650000000000000000000000600082015250565b6000614a5f601583613921565b9150614a6a82614a29565b602082019050919050565b60006020820190508181036000830152614a8e81614a52565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614af1602683613921565b9150614afc82614a95565b604082019050919050565b60006020820190508181036000830152614b2081614ae4565b9050919050565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b6000614b83602883613921565b9150614b8e82614b27565b604082019050919050565b60006020820190508181036000830152614bb281614b76565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614bef602083613921565b9150614bfa82614bb9565b602082019050919050565b60006020820190508181036000830152614c1e81614be2565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614c877fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614c4a565b614c918683614c4a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000614cce614cc9614cc48461362c565b614ca9565b61362c565b9050919050565b6000819050919050565b614ce883614cb3565b614cfc614cf482614cd5565b848454614c57565b825550505050565b600090565b614d11614d04565b614d1c818484614cdf565b505050565b5b81811015614d4057614d35600082614d09565b600181019050614d22565b5050565b601f821115614d8557614d5681614c25565b614d5f84614c3a565b81016020851015614d6e578190505b614d82614d7a85614c3a565b830182614d21565b50505b505050565b600082821c905092915050565b6000614da860001984600802614d8a565b1980831691505092915050565b6000614dc18383614d97565b9150826002028217905092915050565b614dda82613916565b67ffffffffffffffff811115614df357614df26137a2565b5b614dfd8254614255565b614e08828285614d44565b600060209050601f831160018114614e3b5760008415614e29578287015190505b614e338582614db5565b865550614e9b565b601f198416614e4986614c25565b60005b82811015614e7157848901518255600182019150602085019450602081019050614e4c565b86831015614e8e5784890151614e8a601f891682614d97565b8355505b6001600288020188555050505b505050505050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000614ed9601083613921565b9150614ee482614ea3565b602082019050919050565b60006020820190508181036000830152614f0881614ecc565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614f6b602183613921565b9150614f7682614f0f565b604082019050919050565b60006020820190508181036000830152614f9a81614f5e565b9050919050565b6000604082019050614fb660008301856136a2565b614fc360208301846136a2565b9392505050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206f7220617070726f766564000000000000000000000000000000000000602082015250565b6000615026602e83613921565b915061503182614fca565b604082019050919050565b6000602082019050818103600083015261505581615019565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006150b8602983613921565b91506150c38261505c565b604082019050919050565b600060208201905081810360008301526150e7816150ab565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615115826150ee565b61511f81856150f9565b935061512f818560208601613932565b61513881613791565b840191505092915050565b600060a0820190506151586000830188613a24565b6151656020830187613a24565b61517260408301866136a2565b61517f60608301856136a2565b8181036080830152615191818461510a565b90509695505050505050565b6000815190506151ac816136f8565b92915050565b6000602082840312156151c8576151c76135c4565b5b60006151d68482850161519d565b91505092915050565b60008160e01c9050919050565b600060033d111561520b5760046000803e6152086000516151df565b90505b90565b600060443d1061529b576152206135ba565b60043d036004823e80513d602482011167ffffffffffffffff8211171561524857505061529b565b808201805167ffffffffffffffff811115615266575050505061529b565b80602083010160043d03850181111561528357505050505061529b565b615292826020018501866137d1565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b60006152fa603483613921565b91506153058261529e565b604082019050919050565b60006020820190508181036000830152615329816152ed565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b600061538c602883613921565b915061539782615330565b604082019050919050565b600060208201905081810360008301526153bb8161537f565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b600061541e602883613921565b9150615429826153c2565b604082019050919050565b6000602082019050818103600083015261544d81615411565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006154b0602583613921565b91506154bb82615454565b604082019050919050565b600060208201905081810360008301526154df816154a3565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000615542602a83613921565b915061554d826154e6565b604082019050919050565b6000602082019050818103600083015261557181615535565b9050919050565b600060408201905081810360008301526155928185613e2f565b905081810360208301526155a68184613e2f565b90509392505050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006155e5601483613921565b91506155f0826155af565b602082019050919050565b60006020820190508181036000830152615614816155d8565b9050919050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000615677602383613921565b91506156828261561b565b604082019050919050565b600060208201905081810360008301526156a68161566a565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000615709602483613921565b9150615714826156ad565b604082019050919050565b60006020820190508181036000830152615738816156fc565b9050919050565b600060a0820190506157546000830188613a24565b6157616020830187613a24565b81810360408301526157738186613e2f565b905081810360608301526157878185613e2f565b9050818103608083015261579b818461510a565b9050969550505050505056fea26469706673582212200797ea25be03138c397dd860de73f6c27c313e08e371772723864c33b1ed495564736f6c63430008110033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f6261667962656961786c73346b767165676f79666f6964746f6c75726c6b72697a703263696b613568727876376970696a746b6e686f37367835752e697066732e6e667473746f726167652e6c696e6b2f00000000000000

-----Decoded View---------------
Arg [0] : _baseURI (string): https://bafybeiaxls4kvqegoyfoidtolurlkrizp2cika5hrxv7ipijtknho76x5u.ipfs.nftstorage.link/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000059
Arg [2] : 68747470733a2f2f6261667962656961786c73346b767165676f79666f696474
Arg [3] : 6f6c75726c6b72697a703263696b613568727876376970696a746b6e686f3736
Arg [4] : 7835752e697066732e6e667473746f726167652e6c696e6b2f00000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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