ETH Price: $3,157.38 (-8.76%)
Gas: 3 Gwei

Token

LUX ()
 

Overview

Max Total Supply

43

Holders

32

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
goatwith3horns.eth
0xdb0df63435a64132ddf7c626011cb3bb370150cb
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:
Lux

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 13 of 15: Lux.sol
// SPDX-License-Identifier: MIT

pragma solidity >= 0.8.13;

import "./ERC1155.sol";
import "./IEIP2981.sol";
import "./AdminControl.sol";
import "./Strings.sol";

contract Lux is ERC1155, AdminControl {
    
    uint256 private _royaltyAmount; //in % 
    address payable  private _royalties_recipient;
    string _uri;
    string _name = "LUX";

    
    constructor () ERC1155("") {
        _royalties_recipient = payable(msg.sender);
        _royaltyAmount = 10;

    } 

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

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

    function mint( 
        address to,
        uint256 id,
        uint256 amount
    ) external adminRequired{
        _mint(to, id, amount, "0x0");
    }

    function mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts
    )external adminRequired{
        _mintBatch(to, ids, amounts, "0x0");
    }

    function setURI(
        string calldata updatedURI
    ) external adminRequired{
        _uri = updatedURI;
    }

    function uri(uint256 tokenId) public view virtual override returns (string memory) {
        return string(abi.encodePacked(_uri, Strings.toString(tokenId), ".json"));
    }

    function burn(uint256 tokenId, uint256 quantity) public {
        _burn(msg.sender, tokenId, quantity);
    }

    function burnBatch(
        uint256[] memory ids,
        uint256[] memory amounts
    )external{
        _burnBatch(msg.sender, ids, amounts);
    }

    function setRoyalties(address payable _recipient, uint256 _royaltyPerCent) external adminRequired {
        _royalties_recipient = _recipient;
        _royaltyAmount = _royaltyPerCent;
    }

    function royaltyInfo(uint256 salePrice) external view returns (address, uint256) {
        if(_royalties_recipient != address(0)){
            return (_royalties_recipient, (salePrice * _royaltyAmount) / 100 );
        }
        return (address(0), 0);
    }

    function withdraw(address recipient) external adminRequired {
        payable(recipient).transfer(address(this).balance);
    }

}

File 1 of 15: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 2 of 15: AdminControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/// @author: manifold.xyz

import "./ERC165.sol";
import "./EnumerableSet.sol";
import "./Ownable.sol";
import "./IAdminControl.sol";

abstract contract AdminControl is Ownable, IAdminControl, ERC165 {
    using EnumerableSet for EnumerableSet.AddressSet;

    // Track registered admins
    EnumerableSet.AddressSet private _admins;

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

    /**
     * @dev Only allows approved admins to call the specified function
     */
    modifier adminRequired() {
        require(owner() == msg.sender || _admins.contains(msg.sender), "AdminControl: Must be owner or admin");
        _;
    }   

    /**
     * @dev See {IAdminControl-getAdmins}.
     */
    function getAdmins() external view override returns (address[] memory admins) {
        admins = new address[](_admins.length());
        for (uint i = 0; i < _admins.length(); i++) {
            admins[i] = _admins.at(i);
        }
        return admins;
    }

    /**
     * @dev See {IAdminControl-approveAdmin}.
     */
    function approveAdmin(address admin) external override onlyOwner {
        if (!_admins.contains(admin)) {
            emit AdminApproved(admin, msg.sender);
            _admins.add(admin);
        }
    }

    /**
     * @dev See {IAdminControl-revokeAdmin}.
     */
    function revokeAdmin(address admin) external override onlyOwner {
        if (_admins.contains(admin)) {
            emit AdminRevoked(admin, msg.sender);
            _admins.remove(admin);
        }
    }

    /**
     * @dev See {IAdminControl-isAdmin}.
     */
    function isAdmin(address admin) public override view returns (bool) {
        return (owner() == admin || _admins.contains(admin));
    }

}

File 3 of 15: 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 4 of 15: EnumerableSet.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/structs/EnumerableSet.sol)

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastvalue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastvalue;
                // Update the index for the moved value
                set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        return _values(set._inner);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        assembly {
            result := store
        }

        return result;
    }
}

File 5 of 15: ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./IERC1155MetadataURI.sol";
import "./Address.sol";
import "./Context.sol";
import "./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: balance query for the zero address");
        return _balances[id][account];
    }

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

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

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

        return batchBalances;
    }

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

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

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

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

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

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), 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);

        _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);

        _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();

        _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data);

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        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);
    }

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

        address operator = _msgSender();

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

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

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

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

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

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

    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 6 of 15: 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 7 of 15: IAdminControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/// @author: manifold.xyz

import "./IERC165.sol";

/**
 * @dev Interface for admin control
 */
interface IAdminControl is IERC165 {

    event AdminApproved(address indexed account, address indexed sender);
    event AdminRevoked(address indexed account, address indexed sender);

    /**
     * @dev gets address of all admins
     */
    function getAdmins() external view returns (address[] memory);

    /**
     * @dev add an admin.  Can only be called by contract owner.
     */
    function approveAdmin(address admin) external;

    /**
     * @dev remove an admin.  Can only be called by contract owner.
     */
    function revokeAdmin(address admin) external;

    /**
     * @dev checks whether or not given address is an admin
     * Returns True if they are
     */
    function isAdmin(address admin) external view returns (bool);

}

File 8 of 15: IEIP2981.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * EIP-2981
 */
interface IEIP2981 {
    /**
     * bytes4(keccak256("royaltyInfo(uint256,uint256)")) == 0x2a55205a
     *
     * => 0x2a55205a = 0x2a55205a
     */
    function royaltyInfo(uint256 tokenId, uint256 value) external view returns (address, uint256);
}

File 9 of 15: IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

import "./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 be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

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

File 10 of 15: 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 11 of 15: IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

import "./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.
        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. 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 12 of 15: 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 14 of 15: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

File 15 of 15: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"AdminApproved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"AdminRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"name":"approveAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAdmins","outputs":[{"internalType":"address[]","name":"admins","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"name":"isAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"name":"revokeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","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":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_royaltyPerCent","type":"uint256"}],"name":"setRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"updatedURI","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526003608081905262098aab60eb1b60a0908152620000269160099190620000e1565b503480156200003457600080fd5b506040805160208101909152600081526200004f3362000078565b6200005a81620000c8565b50600780546001600160a01b03191633179055600a600655620001c3565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8051620000dd906003906020840190620000e1565b5050565b828054620000ef9062000187565b90600052602060002090601f0160209004810192826200011357600085556200015e565b82601f106200012e57805160ff19168380011785556200015e565b828001600101855582156200015e579182015b828111156200015e57825182559160200191906001019062000141565b506200016c92915062000170565b5090565b5b808211156200016c576000815560010162000171565b600181811c908216806200019c57607f821691505b602082108103620001bd57634e487b7160e01b600052602260045260246000fd5b50919050565b61289380620001d36000396000f3fe608060405234801561001057600080fd5b50600436106101575760003560e01c80636d73e669116100c3578063b390c0ab1161007c578063b390c0ab146102e5578063cef6d368146102f8578063d81d0a151461032a578063e985e9c51461033d578063f242432a14610379578063f2fde38b1461038c57600080fd5b80636d73e66914610276578063715018a61461028957806383ca4b6f146102915780638c7ea24b146102a45780638da5cb5b146102b7578063a22cb465146102d257600080fd5b806324d7806c1161011557806324d7806c146101f55780632d345670146102085780632eb2c2d61461021b57806331ae450b1461022e5780634e1273f41461024357806351cff8d91461026357600080fd5b8062fdd58e1461015c57806301ffc9a71461018257806302fe5305146101a557806306fdde03146101ba5780630e89341c146101cf578063156e29f6146101e2575b600080fd5b61016f61016a366004611bbe565b61039f565b6040519081526020015b60405180910390f35b610195610190366004611c00565b61043b565b6040519015158152602001610179565b6101b86101b3366004611c1d565b61047f565b005b6101c26104da565b6040516101799190611cea565b6101c26101dd366004611cfd565b61056c565b6101b86101f0366004611d16565b6105a0565b610195610203366004611d4b565b610611565b6101b8610216366004611d4b565b61064a565b6101b8610229366004611eb1565b6106ca565b610236610761565b6040516101799190611f5e565b610256610251366004611fab565b61080f565b60405161017991906120b2565b6101b8610271366004611d4b565b610938565b6101b8610284366004611d4b565b6109b7565b6101b8610a31565b6101b861029f3660046120c5565b610a67565b6101b86102b2366004611bbe565b610a72565b6000546040516001600160a01b039091168152602001610179565b6101b86102e0366004612111565b610ae2565b6101b86102f336600461214f565b610aed565b61030b610306366004611cfd565b610af8565b604080516001600160a01b039093168352602083019190915201610179565b6101b8610338366004612171565b610b4b565b61019561034b3660046121e6565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b6101b8610387366004612214565b610bbc565b6101b861039a366004611d4b565b610c43565b60006001600160a01b0383166104105760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b5060008181526001602090815260408083206001600160a01b03861684529091529020545b92915050565b600061044682610cdb565b80610455575061045582610cfc565b8061047057506001600160e01b0319821663152a902d60e11b145b80610435575061043582610cdb565b336104926000546001600160a01b031690565b6001600160a01b031614806104ad57506104ad600433610d4c565b6104c95760405162461bcd60e51b81526004016104079061227c565b6104d560088383611b19565b505050565b6060600980546104e9906122c0565b80601f0160208091040260200160405190810160405280929190818152602001828054610515906122c0565b80156105625780601f1061053757610100808354040283529160200191610562565b820191906000526020600020905b81548152906001019060200180831161054557829003601f168201915b5050505050905090565b6060600861057983610d71565b60405160200161058a929190612316565b6040516020818303038152906040529050919050565b336105b36000546001600160a01b031690565b6001600160a01b031614806105ce57506105ce600433610d4c565b6105ea5760405162461bcd60e51b81526004016104079061227c565b6104d58383836040518060400160405280600381526020016203078360ec1b815250610e79565b6000816001600160a01b031661062f6000546001600160a01b031690565b6001600160a01b031614806104355750610435600483610d4c565b6000546001600160a01b031633146106745760405162461bcd60e51b8152600401610407906123d0565b61067f600482610d4c565b156106c75760405133906001600160a01b038316907f7c0c3c84c67c85fcac635147348bfe374c24a1a93d0366d1cfe9d8853cbf89d590600090a36106c5600482610f4b565b505b50565b6001600160a01b0385163314806106e657506106e6853361034b565b61074d5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610407565b61075a8585858585610f60565b5050505050565b606061076d60046110ff565b6001600160401b0381111561078457610784611d68565b6040519080825280602002602001820160405280156107ad578160200160208202803683370190505b50905060005b6107bd60046110ff565b81101561080b576107cf600482611109565b8282815181106107e1576107e1612405565b6001600160a01b03909216602092830291909101909101528061080381612431565b9150506107b3565b5090565b606081518351146108745760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610407565b600083516001600160401b0381111561088f5761088f611d68565b6040519080825280602002602001820160405280156108b8578160200160208202803683370190505b50905060005b8451811015610930576109038582815181106108dc576108dc612405565b60200260200101518583815181106108f6576108f6612405565b602002602001015161039f565b82828151811061091557610915612405565b602090810291909101015261092981612431565b90506108be565b509392505050565b3361094b6000546001600160a01b031690565b6001600160a01b031614806109665750610966600433610d4c565b6109825760405162461bcd60e51b81526004016104079061227c565b6040516001600160a01b038216904780156108fc02916000818181858888f193505050501580156106c5573d6000803e3d6000fd5b6000546001600160a01b031633146109e15760405162461bcd60e51b8152600401610407906123d0565b6109ec600482610d4c565b6106c75760405133906001600160a01b038316907f7e1a1a08d52e4ba0e21554733d66165fd5151f99460116223d9e3a608eec5cb190600090a36106c5600482611115565b6000546001600160a01b03163314610a5b5760405162461bcd60e51b8152600401610407906123d0565b610a65600061112a565b565b6106c533838361117a565b33610a856000546001600160a01b031690565b6001600160a01b03161480610aa05750610aa0600433610d4c565b610abc5760405162461bcd60e51b81526004016104079061227c565b600780546001600160a01b0319166001600160a01b039390931692909217909155600655565b6106c53383836112f9565b6106c53383836113d9565b60075460009081906001600160a01b031615610b40576007546006546001600160a01b0390911690606490610b2d908661244a565b610b37919061247f565b91509150915091565b506000928392509050565b33610b5e6000546001600160a01b031690565b6001600160a01b03161480610b795750610b79600433610d4c565b610b955760405162461bcd60e51b81526004016104079061227c565b6104d58383836040518060400160405280600381526020016203078360ec1b8152506114df565b6001600160a01b038516331480610bd85750610bd8853361034b565b610c365760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610407565b61075a858585858561162b565b6000546001600160a01b03163314610c6d5760405162461bcd60e51b8152600401610407906123d0565b6001600160a01b038116610cd25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610407565b6106c78161112a565b60006001600160e01b03198216632a9f3abf60e11b14806104355750610435825b60006001600160e01b03198216636cdb3d1360e11b1480610d2d57506001600160e01b031982166303a24d0760e21b145b8061043557506301ffc9a760e01b6001600160e01b0319831614610435565b6001600160a01b038116600090815260018301602052604081205415155b9392505050565b606081600003610d985750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610dc25780610dac81612431565b9150610dbb9050600a8361247f565b9150610d9c565b6000816001600160401b03811115610ddc57610ddc611d68565b6040519080825280601f01601f191660200182016040528015610e06576020820181803683370190505b5090505b8415610e7157610e1b600183612493565b9150610e28600a866124aa565b610e339060306124be565b60f81b818381518110610e4857610e48612405565b60200101906001600160f81b031916908160001a905350610e6a600a8661247f565b9450610e0a565b949350505050565b6001600160a01b038416610e9f5760405162461bcd60e51b8152600401610407906124d6565b33610eb981600087610eb08861174c565b61075a8861174c565b60008481526001602090815260408083206001600160a01b038916845290915281208054859290610eeb9084906124be565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461075a81600087878787611797565b6000610d6a836001600160a01b0384166118f2565b8151835114610f815760405162461bcd60e51b815260040161040790612517565b6001600160a01b038416610fa75760405162461bcd60e51b81526004016104079061255f565b3360005b8451811015611091576000858281518110610fc857610fc8612405565b602002602001015190506000858381518110610fe657610fe6612405565b60209081029190910181015160008481526001835260408082206001600160a01b038e1683529093529190912054909150818110156110375760405162461bcd60e51b8152600401610407906125a4565b60008381526001602090815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906110769084906124be565b925050819055505050508061108a90612431565b9050610fab565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516110e19291906125ee565b60405180910390a46110f78187878787876119e5565b505050505050565b6000610435825490565b6000610d6a8383611aa0565b6000610d6a836001600160a01b038416611aca565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383166111a05760405162461bcd60e51b815260040161040790612613565b80518251146111c15760405162461bcd60e51b815260040161040790612517565b604080516020810190915260009081905233905b835181101561129a5760008482815181106111f2576111f2612405565b60200260200101519050600084838151811061121057611210612405565b60209081029190910181015160008481526001835260408082206001600160a01b038c1683529093529190912054909150818110156112615760405162461bcd60e51b815260040161040790612656565b60009283526001602090815260408085206001600160a01b038b168652909152909220910390558061129281612431565b9150506111d5565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516112eb9291906125ee565b60405180910390a450505050565b816001600160a01b0316836001600160a01b03160361136c5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610407565b6001600160a01b03838116600081815260026020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0383166113ff5760405162461bcd60e51b815260040161040790612613565b3361142f818560006114108761174c565b6114198761174c565b5050604080516020810190915260009052505050565b60008381526001602090815260408083206001600160a01b0388168452909152902054828110156114725760405162461bcd60e51b815260040161040790612656565b60008481526001602090815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b6001600160a01b0384166115055760405162461bcd60e51b8152600401610407906124d6565b81518351146115265760405162461bcd60e51b815260040161040790612517565b3360005b84518110156115c35783818151811061154557611545612405565b60200260200101516001600087848151811061156357611563612405565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b0316815260200190815260200160002060008282546115ab91906124be565b909155508190506115bb81612431565b91505061152a565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516116149291906125ee565b60405180910390a461075a816000878787876119e5565b6001600160a01b0384166116515760405162461bcd60e51b81526004016104079061255f565b33611661818787610eb08861174c565b60008481526001602090815260408083206001600160a01b038a168452909152902054838110156116a45760405162461bcd60e51b8152600401610407906125a4565b60008581526001602090815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906116e39084906124be565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611743828888888888611797565b50505050505050565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061178657611786612405565b602090810291909101015292915050565b6001600160a01b0384163b156110f75760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906117db908990899088908890889060040161269a565b6020604051808303816000875af1925050508015611816575060408051601f3d908101601f19168201909252611813918101906126df565b60015b6118c2576118226126fc565b806308c379a00361185b5750611836612718565b80611841575061185d565b8060405162461bcd60e51b81526004016104079190611cea565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610407565b6001600160e01b0319811663f23a6e6160e01b146117435760405162461bcd60e51b8152600401610407906127a1565b600081815260018301602052604081205480156119db576000611916600183612493565b855490915060009061192a90600190612493565b905081811461198f57600086600001828154811061194a5761194a612405565b906000526020600020015490508087600001848154811061196d5761196d612405565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806119a0576119a06127e9565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610435565b6000915050610435565b6001600160a01b0384163b156110f75760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611a2990899089908890889088906004016127ff565b6020604051808303816000875af1925050508015611a64575060408051601f3d908101601f19168201909252611a61918101906126df565b60015b611a70576118226126fc565b6001600160e01b0319811663bc197c8160e01b146117435760405162461bcd60e51b8152600401610407906127a1565b6000826000018281548110611ab757611ab7612405565b9060005260206000200154905092915050565b6000818152600183016020526040812054611b1157508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610435565b506000610435565b828054611b25906122c0565b90600052602060002090601f016020900481019282611b475760008555611b8d565b82601f10611b605782800160ff19823516178555611b8d565b82800160010185558215611b8d579182015b82811115611b8d578235825591602001919060010190611b72565b5061080b9291505b8082111561080b5760008155600101611b95565b6001600160a01b03811681146106c757600080fd5b60008060408385031215611bd157600080fd5b8235611bdc81611ba9565b946020939093013593505050565b6001600160e01b0319811681146106c757600080fd5b600060208284031215611c1257600080fd5b8135610d6a81611bea565b60008060208385031215611c3057600080fd5b82356001600160401b0380821115611c4757600080fd5b818501915085601f830112611c5b57600080fd5b813581811115611c6a57600080fd5b866020828501011115611c7c57600080fd5b60209290920196919550909350505050565b60005b83811015611ca9578181015183820152602001611c91565b83811115611cb8576000848401525b50505050565b60008151808452611cd6816020860160208601611c8e565b601f01601f19169290920160200192915050565b602081526000610d6a6020830184611cbe565b600060208284031215611d0f57600080fd5b5035919050565b600080600060608486031215611d2b57600080fd5b8335611d3681611ba9565b95602085013595506040909401359392505050565b600060208284031215611d5d57600080fd5b8135610d6a81611ba9565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b0381118282101715611da357611da3611d68565b6040525050565b60006001600160401b03821115611dc357611dc3611d68565b5060051b60200190565b600082601f830112611dde57600080fd5b81356020611deb82611daa565b604051611df88282611d7e565b83815260059390931b8501820192828101915086841115611e1857600080fd5b8286015b84811015611e335780358352918301918301611e1c565b509695505050505050565b600082601f830112611e4f57600080fd5b81356001600160401b03811115611e6857611e68611d68565b604051611e7f601f8301601f191660200182611d7e565b818152846020838601011115611e9457600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a08688031215611ec957600080fd5b8535611ed481611ba9565b94506020860135611ee481611ba9565b935060408601356001600160401b0380821115611f0057600080fd5b611f0c89838a01611dcd565b94506060880135915080821115611f2257600080fd5b611f2e89838a01611dcd565b93506080880135915080821115611f4457600080fd5b50611f5188828901611e3e565b9150509295509295909350565b6020808252825182820181905260009190848201906040850190845b81811015611f9f5783516001600160a01b031683529284019291840191600101611f7a565b50909695505050505050565b60008060408385031215611fbe57600080fd5b82356001600160401b0380821115611fd557600080fd5b818501915085601f830112611fe957600080fd5b81356020611ff682611daa565b6040516120038282611d7e565b83815260059390931b850182019282810191508984111561202357600080fd5b948201945b8386101561204a57853561203b81611ba9565b82529482019490820190612028565b9650508601359250508082111561206057600080fd5b5061206d85828601611dcd565b9150509250929050565b600081518084526020808501945080840160005b838110156120a75781518752958201959082019060010161208b565b509495945050505050565b602081526000610d6a6020830184612077565b600080604083850312156120d857600080fd5b82356001600160401b03808211156120ef57600080fd5b6120fb86838701611dcd565b9350602085013591508082111561206057600080fd5b6000806040838503121561212457600080fd5b823561212f81611ba9565b91506020830135801515811461214457600080fd5b809150509250929050565b6000806040838503121561216257600080fd5b50508035926020909101359150565b60008060006060848603121561218657600080fd5b833561219181611ba9565b925060208401356001600160401b03808211156121ad57600080fd5b6121b987838801611dcd565b935060408601359150808211156121cf57600080fd5b506121dc86828701611dcd565b9150509250925092565b600080604083850312156121f957600080fd5b823561220481611ba9565b9150602083013561214481611ba9565b600080600080600060a0868803121561222c57600080fd5b853561223781611ba9565b9450602086013561224781611ba9565b9350604086013592506060860135915060808601356001600160401b0381111561227057600080fd5b611f5188828901611e3e565b60208082526024908201527f41646d696e436f6e74726f6c3a204d757374206265206f776e6572206f7220616040820152633236b4b760e11b606082015260800190565b600181811c908216806122d457607f821691505b6020821081036122f457634e487b7160e01b600052602260045260246000fd5b50919050565b6000815161230c818560208601611c8e565b9290920192915050565b600080845481600182811c91508083168061233257607f831692505b6020808410820361235157634e487b7160e01b86526022600452602486fd5b8180156123655760018114612376576123a3565b60ff198616895284890196506123a3565b60008b81526020902060005b8681101561239b5781548b820152908501908301612382565b505084890196505b5050505050506123c76123b682866122fa565b64173539b7b760d91b815260050190565b95945050505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016124435761244361241b565b5060010190565b60008160001904831182151516156124645761246461241b565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261248e5761248e612469565b500490565b6000828210156124a5576124a561241b565b500390565b6000826124b9576124b9612469565b500690565b600082198211156124d1576124d161241b565b500190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6040815260006126016040830185612077565b82810360208401526123c78185612077565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906126d490830184611cbe565b979650505050505050565b6000602082840312156126f157600080fd5b8151610d6a81611bea565b600060033d11156127155760046000803e5060005160e01c5b90565b600060443d10156127265790565b6040516003193d81016004833e81513d6001600160401b03816024840111818411171561275557505050505090565b828501915081518181111561276d5750505050505090565b843d87010160208285010111156127875750505050505090565b61279660208286010187611d7e565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b0386811682528516602082015260a06040820181905260009061282b90830186612077565b828103606084015261283d8186612077565b905082810360808401526128518185611cbe565b9897505050505050505056fea2646970667358221220308e78855afb51d9f5c14a5617bf1cda4fe0168b0952a0bff9bb0dc1cb395f0c64736f6c634300080d0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101575760003560e01c80636d73e669116100c3578063b390c0ab1161007c578063b390c0ab146102e5578063cef6d368146102f8578063d81d0a151461032a578063e985e9c51461033d578063f242432a14610379578063f2fde38b1461038c57600080fd5b80636d73e66914610276578063715018a61461028957806383ca4b6f146102915780638c7ea24b146102a45780638da5cb5b146102b7578063a22cb465146102d257600080fd5b806324d7806c1161011557806324d7806c146101f55780632d345670146102085780632eb2c2d61461021b57806331ae450b1461022e5780634e1273f41461024357806351cff8d91461026357600080fd5b8062fdd58e1461015c57806301ffc9a71461018257806302fe5305146101a557806306fdde03146101ba5780630e89341c146101cf578063156e29f6146101e2575b600080fd5b61016f61016a366004611bbe565b61039f565b6040519081526020015b60405180910390f35b610195610190366004611c00565b61043b565b6040519015158152602001610179565b6101b86101b3366004611c1d565b61047f565b005b6101c26104da565b6040516101799190611cea565b6101c26101dd366004611cfd565b61056c565b6101b86101f0366004611d16565b6105a0565b610195610203366004611d4b565b610611565b6101b8610216366004611d4b565b61064a565b6101b8610229366004611eb1565b6106ca565b610236610761565b6040516101799190611f5e565b610256610251366004611fab565b61080f565b60405161017991906120b2565b6101b8610271366004611d4b565b610938565b6101b8610284366004611d4b565b6109b7565b6101b8610a31565b6101b861029f3660046120c5565b610a67565b6101b86102b2366004611bbe565b610a72565b6000546040516001600160a01b039091168152602001610179565b6101b86102e0366004612111565b610ae2565b6101b86102f336600461214f565b610aed565b61030b610306366004611cfd565b610af8565b604080516001600160a01b039093168352602083019190915201610179565b6101b8610338366004612171565b610b4b565b61019561034b3660046121e6565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b6101b8610387366004612214565b610bbc565b6101b861039a366004611d4b565b610c43565b60006001600160a01b0383166104105760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b5060008181526001602090815260408083206001600160a01b03861684529091529020545b92915050565b600061044682610cdb565b80610455575061045582610cfc565b8061047057506001600160e01b0319821663152a902d60e11b145b80610435575061043582610cdb565b336104926000546001600160a01b031690565b6001600160a01b031614806104ad57506104ad600433610d4c565b6104c95760405162461bcd60e51b81526004016104079061227c565b6104d560088383611b19565b505050565b6060600980546104e9906122c0565b80601f0160208091040260200160405190810160405280929190818152602001828054610515906122c0565b80156105625780601f1061053757610100808354040283529160200191610562565b820191906000526020600020905b81548152906001019060200180831161054557829003601f168201915b5050505050905090565b6060600861057983610d71565b60405160200161058a929190612316565b6040516020818303038152906040529050919050565b336105b36000546001600160a01b031690565b6001600160a01b031614806105ce57506105ce600433610d4c565b6105ea5760405162461bcd60e51b81526004016104079061227c565b6104d58383836040518060400160405280600381526020016203078360ec1b815250610e79565b6000816001600160a01b031661062f6000546001600160a01b031690565b6001600160a01b031614806104355750610435600483610d4c565b6000546001600160a01b031633146106745760405162461bcd60e51b8152600401610407906123d0565b61067f600482610d4c565b156106c75760405133906001600160a01b038316907f7c0c3c84c67c85fcac635147348bfe374c24a1a93d0366d1cfe9d8853cbf89d590600090a36106c5600482610f4b565b505b50565b6001600160a01b0385163314806106e657506106e6853361034b565b61074d5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610407565b61075a8585858585610f60565b5050505050565b606061076d60046110ff565b6001600160401b0381111561078457610784611d68565b6040519080825280602002602001820160405280156107ad578160200160208202803683370190505b50905060005b6107bd60046110ff565b81101561080b576107cf600482611109565b8282815181106107e1576107e1612405565b6001600160a01b03909216602092830291909101909101528061080381612431565b9150506107b3565b5090565b606081518351146108745760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610407565b600083516001600160401b0381111561088f5761088f611d68565b6040519080825280602002602001820160405280156108b8578160200160208202803683370190505b50905060005b8451811015610930576109038582815181106108dc576108dc612405565b60200260200101518583815181106108f6576108f6612405565b602002602001015161039f565b82828151811061091557610915612405565b602090810291909101015261092981612431565b90506108be565b509392505050565b3361094b6000546001600160a01b031690565b6001600160a01b031614806109665750610966600433610d4c565b6109825760405162461bcd60e51b81526004016104079061227c565b6040516001600160a01b038216904780156108fc02916000818181858888f193505050501580156106c5573d6000803e3d6000fd5b6000546001600160a01b031633146109e15760405162461bcd60e51b8152600401610407906123d0565b6109ec600482610d4c565b6106c75760405133906001600160a01b038316907f7e1a1a08d52e4ba0e21554733d66165fd5151f99460116223d9e3a608eec5cb190600090a36106c5600482611115565b6000546001600160a01b03163314610a5b5760405162461bcd60e51b8152600401610407906123d0565b610a65600061112a565b565b6106c533838361117a565b33610a856000546001600160a01b031690565b6001600160a01b03161480610aa05750610aa0600433610d4c565b610abc5760405162461bcd60e51b81526004016104079061227c565b600780546001600160a01b0319166001600160a01b039390931692909217909155600655565b6106c53383836112f9565b6106c53383836113d9565b60075460009081906001600160a01b031615610b40576007546006546001600160a01b0390911690606490610b2d908661244a565b610b37919061247f565b91509150915091565b506000928392509050565b33610b5e6000546001600160a01b031690565b6001600160a01b03161480610b795750610b79600433610d4c565b610b955760405162461bcd60e51b81526004016104079061227c565b6104d58383836040518060400160405280600381526020016203078360ec1b8152506114df565b6001600160a01b038516331480610bd85750610bd8853361034b565b610c365760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610407565b61075a858585858561162b565b6000546001600160a01b03163314610c6d5760405162461bcd60e51b8152600401610407906123d0565b6001600160a01b038116610cd25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610407565b6106c78161112a565b60006001600160e01b03198216632a9f3abf60e11b14806104355750610435825b60006001600160e01b03198216636cdb3d1360e11b1480610d2d57506001600160e01b031982166303a24d0760e21b145b8061043557506301ffc9a760e01b6001600160e01b0319831614610435565b6001600160a01b038116600090815260018301602052604081205415155b9392505050565b606081600003610d985750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610dc25780610dac81612431565b9150610dbb9050600a8361247f565b9150610d9c565b6000816001600160401b03811115610ddc57610ddc611d68565b6040519080825280601f01601f191660200182016040528015610e06576020820181803683370190505b5090505b8415610e7157610e1b600183612493565b9150610e28600a866124aa565b610e339060306124be565b60f81b818381518110610e4857610e48612405565b60200101906001600160f81b031916908160001a905350610e6a600a8661247f565b9450610e0a565b949350505050565b6001600160a01b038416610e9f5760405162461bcd60e51b8152600401610407906124d6565b33610eb981600087610eb08861174c565b61075a8861174c565b60008481526001602090815260408083206001600160a01b038916845290915281208054859290610eeb9084906124be565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461075a81600087878787611797565b6000610d6a836001600160a01b0384166118f2565b8151835114610f815760405162461bcd60e51b815260040161040790612517565b6001600160a01b038416610fa75760405162461bcd60e51b81526004016104079061255f565b3360005b8451811015611091576000858281518110610fc857610fc8612405565b602002602001015190506000858381518110610fe657610fe6612405565b60209081029190910181015160008481526001835260408082206001600160a01b038e1683529093529190912054909150818110156110375760405162461bcd60e51b8152600401610407906125a4565b60008381526001602090815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906110769084906124be565b925050819055505050508061108a90612431565b9050610fab565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516110e19291906125ee565b60405180910390a46110f78187878787876119e5565b505050505050565b6000610435825490565b6000610d6a8383611aa0565b6000610d6a836001600160a01b038416611aca565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383166111a05760405162461bcd60e51b815260040161040790612613565b80518251146111c15760405162461bcd60e51b815260040161040790612517565b604080516020810190915260009081905233905b835181101561129a5760008482815181106111f2576111f2612405565b60200260200101519050600084838151811061121057611210612405565b60209081029190910181015160008481526001835260408082206001600160a01b038c1683529093529190912054909150818110156112615760405162461bcd60e51b815260040161040790612656565b60009283526001602090815260408085206001600160a01b038b168652909152909220910390558061129281612431565b9150506111d5565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516112eb9291906125ee565b60405180910390a450505050565b816001600160a01b0316836001600160a01b03160361136c5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610407565b6001600160a01b03838116600081815260026020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0383166113ff5760405162461bcd60e51b815260040161040790612613565b3361142f818560006114108761174c565b6114198761174c565b5050604080516020810190915260009052505050565b60008381526001602090815260408083206001600160a01b0388168452909152902054828110156114725760405162461bcd60e51b815260040161040790612656565b60008481526001602090815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b6001600160a01b0384166115055760405162461bcd60e51b8152600401610407906124d6565b81518351146115265760405162461bcd60e51b815260040161040790612517565b3360005b84518110156115c35783818151811061154557611545612405565b60200260200101516001600087848151811061156357611563612405565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b0316815260200190815260200160002060008282546115ab91906124be565b909155508190506115bb81612431565b91505061152a565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516116149291906125ee565b60405180910390a461075a816000878787876119e5565b6001600160a01b0384166116515760405162461bcd60e51b81526004016104079061255f565b33611661818787610eb08861174c565b60008481526001602090815260408083206001600160a01b038a168452909152902054838110156116a45760405162461bcd60e51b8152600401610407906125a4565b60008581526001602090815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906116e39084906124be565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611743828888888888611797565b50505050505050565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061178657611786612405565b602090810291909101015292915050565b6001600160a01b0384163b156110f75760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906117db908990899088908890889060040161269a565b6020604051808303816000875af1925050508015611816575060408051601f3d908101601f19168201909252611813918101906126df565b60015b6118c2576118226126fc565b806308c379a00361185b5750611836612718565b80611841575061185d565b8060405162461bcd60e51b81526004016104079190611cea565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610407565b6001600160e01b0319811663f23a6e6160e01b146117435760405162461bcd60e51b8152600401610407906127a1565b600081815260018301602052604081205480156119db576000611916600183612493565b855490915060009061192a90600190612493565b905081811461198f57600086600001828154811061194a5761194a612405565b906000526020600020015490508087600001848154811061196d5761196d612405565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806119a0576119a06127e9565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610435565b6000915050610435565b6001600160a01b0384163b156110f75760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611a2990899089908890889088906004016127ff565b6020604051808303816000875af1925050508015611a64575060408051601f3d908101601f19168201909252611a61918101906126df565b60015b611a70576118226126fc565b6001600160e01b0319811663bc197c8160e01b146117435760405162461bcd60e51b8152600401610407906127a1565b6000826000018281548110611ab757611ab7612405565b9060005260206000200154905092915050565b6000818152600183016020526040812054611b1157508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610435565b506000610435565b828054611b25906122c0565b90600052602060002090601f016020900481019282611b475760008555611b8d565b82601f10611b605782800160ff19823516178555611b8d565b82800160010185558215611b8d579182015b82811115611b8d578235825591602001919060010190611b72565b5061080b9291505b8082111561080b5760008155600101611b95565b6001600160a01b03811681146106c757600080fd5b60008060408385031215611bd157600080fd5b8235611bdc81611ba9565b946020939093013593505050565b6001600160e01b0319811681146106c757600080fd5b600060208284031215611c1257600080fd5b8135610d6a81611bea565b60008060208385031215611c3057600080fd5b82356001600160401b0380821115611c4757600080fd5b818501915085601f830112611c5b57600080fd5b813581811115611c6a57600080fd5b866020828501011115611c7c57600080fd5b60209290920196919550909350505050565b60005b83811015611ca9578181015183820152602001611c91565b83811115611cb8576000848401525b50505050565b60008151808452611cd6816020860160208601611c8e565b601f01601f19169290920160200192915050565b602081526000610d6a6020830184611cbe565b600060208284031215611d0f57600080fd5b5035919050565b600080600060608486031215611d2b57600080fd5b8335611d3681611ba9565b95602085013595506040909401359392505050565b600060208284031215611d5d57600080fd5b8135610d6a81611ba9565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b0381118282101715611da357611da3611d68565b6040525050565b60006001600160401b03821115611dc357611dc3611d68565b5060051b60200190565b600082601f830112611dde57600080fd5b81356020611deb82611daa565b604051611df88282611d7e565b83815260059390931b8501820192828101915086841115611e1857600080fd5b8286015b84811015611e335780358352918301918301611e1c565b509695505050505050565b600082601f830112611e4f57600080fd5b81356001600160401b03811115611e6857611e68611d68565b604051611e7f601f8301601f191660200182611d7e565b818152846020838601011115611e9457600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a08688031215611ec957600080fd5b8535611ed481611ba9565b94506020860135611ee481611ba9565b935060408601356001600160401b0380821115611f0057600080fd5b611f0c89838a01611dcd565b94506060880135915080821115611f2257600080fd5b611f2e89838a01611dcd565b93506080880135915080821115611f4457600080fd5b50611f5188828901611e3e565b9150509295509295909350565b6020808252825182820181905260009190848201906040850190845b81811015611f9f5783516001600160a01b031683529284019291840191600101611f7a565b50909695505050505050565b60008060408385031215611fbe57600080fd5b82356001600160401b0380821115611fd557600080fd5b818501915085601f830112611fe957600080fd5b81356020611ff682611daa565b6040516120038282611d7e565b83815260059390931b850182019282810191508984111561202357600080fd5b948201945b8386101561204a57853561203b81611ba9565b82529482019490820190612028565b9650508601359250508082111561206057600080fd5b5061206d85828601611dcd565b9150509250929050565b600081518084526020808501945080840160005b838110156120a75781518752958201959082019060010161208b565b509495945050505050565b602081526000610d6a6020830184612077565b600080604083850312156120d857600080fd5b82356001600160401b03808211156120ef57600080fd5b6120fb86838701611dcd565b9350602085013591508082111561206057600080fd5b6000806040838503121561212457600080fd5b823561212f81611ba9565b91506020830135801515811461214457600080fd5b809150509250929050565b6000806040838503121561216257600080fd5b50508035926020909101359150565b60008060006060848603121561218657600080fd5b833561219181611ba9565b925060208401356001600160401b03808211156121ad57600080fd5b6121b987838801611dcd565b935060408601359150808211156121cf57600080fd5b506121dc86828701611dcd565b9150509250925092565b600080604083850312156121f957600080fd5b823561220481611ba9565b9150602083013561214481611ba9565b600080600080600060a0868803121561222c57600080fd5b853561223781611ba9565b9450602086013561224781611ba9565b9350604086013592506060860135915060808601356001600160401b0381111561227057600080fd5b611f5188828901611e3e565b60208082526024908201527f41646d696e436f6e74726f6c3a204d757374206265206f776e6572206f7220616040820152633236b4b760e11b606082015260800190565b600181811c908216806122d457607f821691505b6020821081036122f457634e487b7160e01b600052602260045260246000fd5b50919050565b6000815161230c818560208601611c8e565b9290920192915050565b600080845481600182811c91508083168061233257607f831692505b6020808410820361235157634e487b7160e01b86526022600452602486fd5b8180156123655760018114612376576123a3565b60ff198616895284890196506123a3565b60008b81526020902060005b8681101561239b5781548b820152908501908301612382565b505084890196505b5050505050506123c76123b682866122fa565b64173539b7b760d91b815260050190565b95945050505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016124435761244361241b565b5060010190565b60008160001904831182151516156124645761246461241b565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261248e5761248e612469565b500490565b6000828210156124a5576124a561241b565b500390565b6000826124b9576124b9612469565b500690565b600082198211156124d1576124d161241b565b500190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6040815260006126016040830185612077565b82810360208401526123c78185612077565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906126d490830184611cbe565b979650505050505050565b6000602082840312156126f157600080fd5b8151610d6a81611bea565b600060033d11156127155760046000803e5060005160e01c5b90565b600060443d10156127265790565b6040516003193d81016004833e81513d6001600160401b03816024840111818411171561275557505050505090565b828501915081518181111561276d5750505050505090565b843d87010160208285010111156127875750505050505090565b61279660208286010187611d7e565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b0386811682528516602082015260a06040820181905260009061282b90830186612077565b828103606084015261283d8186612077565b905082810360808401526128518185611cbe565b9897505050505050505056fea2646970667358221220308e78855afb51d9f5c14a5617bf1cda4fe0168b0952a0bff9bb0dc1cb395f0c64736f6c634300080d0033

Deployed Bytecode Sourcemap

164:2298:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2115:228:3;;;;;;:::i;:::-;;:::i;:::-;;;616:25:15;;;604:2;589:18;2115:228:3;;;;;;;;480:384:12;;;;;;:::i;:::-;;:::i;:::-;;;1203:14:15;;1196:22;1178:41;;1166:2;1151:18;480:384:12;1038:187:15;1303:114:12;;;;;;:::i;:::-;;:::i;:::-;;870:81;;;:::i;:::-;;;;;;;:::i;1423:173::-;;;;;;:::i;:::-;;:::i;957:152::-;;;;;;:::i;:::-;;:::i;1873:137:1:-;;;;;;:::i;:::-;;:::i;1605:205::-;;;;;;:::i;:::-;;:::i;3990:430:3:-;;;;;;:::i;:::-;;:::i;1004:261:1:-;;;:::i;:::-;;;;;;;:::i;2500:508:3:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2332:127:12:-;;;;;;:::i;:::-;;:::i;1333:205:1:-;;;;;;:::i;:::-;;:::i;1661:101:13:-;;;:::i;1717:149:12:-;;;;;;:::i;:::-;;:::i;1872:190::-;;;;;;:::i;:::-;;:::i;1029:85:13:-;1075:7;1101:6;1029:85;;-1:-1:-1;;;;;1101:6:13;;;10089:51:15;;10077:2;10062:18;1029:85:13;9943:203:15;3076:153:3;;;;;;:::i;:::-;;:::i;1602:109:12:-;;;;;;:::i;:::-;;:::i;2068:258::-;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;11017:32:15;;;10999:51;;11081:2;11066:18;;11059:34;;;;10972:18;2068:258:12;10825:274:15;1115:182:12;;;;;;:::i;:::-;;:::i;3296:166:3:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3418:27:3;;;3395:4;3418:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;3296:166;3529:389;;;;;;:::i;:::-;;:::i;1911:198:13:-;;;;;;:::i;:::-;;:::i;2115:228:3:-;2201:7;-1:-1:-1;;;;;2228:21:3;;2220:77;;;;-1:-1:-1;;;2220:77:3;;13173:2:15;2220:77:3;;;13155:21:15;13212:2;13192:18;;;13185:30;13251:34;13231:18;;;13224:62;-1:-1:-1;;;13302:18:15;;;13295:41;13353:19;;2220:77:3;;;;;;;;;-1:-1:-1;2314:13:3;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;2314:22:3;;;;;;;;;;2115:228;;;;;:::o;480:384:12:-;628:4;663:43;694:11;663:30;:43::i;:::-;:93;;;;718:38;744:11;718:25;:38::i;:::-;663:146;;;-1:-1:-1;;;;;;;768:41:12;;-1:-1:-1;;;768:41:12;663:146;:194;;;;821:36;845:11;821:23;:36::i;1303:114::-;835:10:1;824:7;1075::13;1101:6;-1:-1:-1;;;;;1101:6:13;;1029:85;824:7:1;-1:-1:-1;;;;;824:21:1;;:53;;;-1:-1:-1;849:28:1;:7;866:10;849:16;:28::i;:::-;816:102;;;;-1:-1:-1;;;816:102:1;;;;;;;:::i;:::-;1393:17:12::1;:4;1400:10:::0;;1393:17:::1;:::i;:::-;;1303:114:::0;;:::o;870:81::-;907:13;939:5;932:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;870:81;:::o;1423:173::-;1491:13;1547:4;1553:25;1570:7;1553:16;:25::i;:::-;1530:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1516:73;;1423:173;;;:::o;957:152::-;835:10:1;824:7;1075::13;1101:6;-1:-1:-1;;;;;1101:6:13;;1029:85;824:7:1;-1:-1:-1;;;;;824:21:1;;:53;;;-1:-1:-1;849:28:1;:7;866:10;849:16;:28::i;:::-;816:102;;;;-1:-1:-1;;;816:102:1;;;;;;;:::i;:::-;1074:28:12::1;1080:2;1084;1088:6;1074:28;;;;;;;;;;;;;-1:-1:-1::0;;;1074:28:12::1;;::::0;:5:::1;:28::i;1873:137:1:-:0;1935:4;1970:5;-1:-1:-1;;;;;1959:16:1;:7;1075::13;1101:6;-1:-1:-1;;;;;1101:6:13;;1029:85;1959:7:1;-1:-1:-1;;;;;1959:16:1;;:43;;;-1:-1:-1;1979:23:1;:7;1996:5;1979:16;:23::i;1605:205::-;1075:7:13;1101:6;-1:-1:-1;;;;;1101:6:13;719:10:2;1241:23:13;1233:68;;;;-1:-1:-1;;;1233:68:13;;;;;;;:::i;:::-;1683:23:1::1;:7;1700:5:::0;1683:16:::1;:23::i;:::-;1679:125;;;1727:31;::::0;1747:10:::1;::::0;-1:-1:-1;;;;;1727:31:1;::::1;::::0;::::1;::::0;;;::::1;1772:21;:7;1787:5:::0;1772:14:::1;:21::i;:::-;;1679:125;1605:205:::0;:::o;3990:430:3:-;-1:-1:-1;;;;;4215:20:3;;719:10:2;4215:20:3;;:60;;-1:-1:-1;4239:36:3;4256:4;719:10:2;3296:166:3;:::i;4239:36::-;4194:157;;;;-1:-1:-1;;;4194:157:3;;16476:2:15;4194:157:3;;;16458:21:15;16515:2;16495:18;;;16488:30;16554:34;16534:18;;;16527:62;-1:-1:-1;;;16605:18:15;;;16598:48;16663:19;;4194:157:3;16274:414:15;4194:157:3;4361:52;4384:4;4390:2;4394:3;4399:7;4408:4;4361:22;:52::i;:::-;3990:430;;;;;:::o;1004:261:1:-;1057:23;1115:16;:7;:14;:16::i;:::-;-1:-1:-1;;;;;1101:31:1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1101:31:1;;1092:40;;1147:6;1142:94;1163:16;:7;:14;:16::i;:::-;1159:1;:20;1142:94;;;1212:13;:7;1223:1;1212:10;:13::i;:::-;1200:6;1207:1;1200:9;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1200:25:1;;;:9;;;;;;;;;;;:25;1181:3;;;;:::i;:::-;;;;1142:94;;;;1004:261;:::o;2500:508:3:-;2651:16;2710:3;:10;2691:8;:15;:29;2683:83;;;;-1:-1:-1;;;2683:83:3;;17299:2:15;2683:83:3;;;17281:21:15;17338:2;17318:18;;;17311:30;17377:34;17357:18;;;17350:62;-1:-1:-1;;;17428:18:15;;;17421:39;17477:19;;2683:83:3;17097:405:15;2683:83:3;2777:30;2824:8;:15;-1:-1:-1;;;;;2810:30:3;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2810:30:3;;2777:63;;2856:9;2851:120;2875:8;:15;2871:1;:19;2851:120;;;2930:30;2940:8;2949:1;2940:11;;;;;;;;:::i;:::-;;;;;;;2953:3;2957:1;2953:6;;;;;;;;:::i;:::-;;;;;;;2930:9;:30::i;:::-;2911:13;2925:1;2911:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;2892:3;;;:::i;:::-;;;2851:120;;;-1:-1:-1;2988:13:3;2500:508;-1:-1:-1;;;2500:508:3:o;2332:127:12:-;835:10:1;824:7;1075::13;1101:6;-1:-1:-1;;;;;1101:6:13;;1029:85;824:7:1;-1:-1:-1;;;;;824:21:1;;:53;;;-1:-1:-1;849:28:1;:7;866:10;849:16;:28::i;:::-;816:102;;;;-1:-1:-1;;;816:102:1;;;;;;;:::i;:::-;2402:50:12::1;::::0;-1:-1:-1;;;;;2402:27:12;::::1;::::0;2430:21:::1;2402:50:::0;::::1;;;::::0;::::1;::::0;;;2430:21;2402:27;:50;::::1;;;;;;;;;;;;;::::0;::::1;;;;1333:205:1::0;1075:7:13;1101:6;-1:-1:-1;;;;;1101:6:13;719:10:2;1241:23:13;1233:68;;;;-1:-1:-1;;;1233:68:13;;;;;;;:::i;:::-;1413:23:1::1;:7;1430:5:::0;1413:16:::1;:23::i;:::-;1408:124;;1457:32;::::0;1478:10:::1;::::0;-1:-1:-1;;;;;1457:32:1;::::1;::::0;::::1;::::0;;;::::1;1503:18;:7;1515:5:::0;1503:11:::1;:18::i;1661:101:13:-:0;1075:7;1101:6;-1:-1:-1;;;;;1101:6:13;719:10:2;1241:23:13;1233:68;;;;-1:-1:-1;;;1233:68:13;;;;;;;:::i;:::-;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;1717:149:12:-;1823:36;1834:10;1846:3;1851:7;1823:10;:36::i;1872:190::-;835:10:1;824:7;1075::13;1101:6;-1:-1:-1;;;;;1101:6:13;;1029:85;824:7:1;-1:-1:-1;;;;;824:21:1;;:53;;;-1:-1:-1;849:28:1;:7;866:10;849:16;:28::i;:::-;816:102;;;;-1:-1:-1;;;816:102:1;;;;;;;:::i;:::-;1980:20:12::1;:33:::0;;-1:-1:-1;;;;;;1980:33:12::1;-1:-1:-1::0;;;;;1980:33:12;;;::::1;::::0;;;::::1;::::0;;;2023:14:::1;:32:::0;1872:190::o;3076:153:3:-;3170:52;719:10:2;3203:8:3;3213;3170:18;:52::i;1602:109:12:-;1668:36;1674:10;1686:7;1695:8;1668:5;:36::i;2068:258::-;2162:20;;2131:7;;;;-1:-1:-1;;;;;2162:20:12;:34;2159:129;;2219:20;;2254:14;;-1:-1:-1;;;;;2219:20:12;;;;2272:3;;2242:26;;:9;:26;:::i;:::-;2241:34;;;;:::i;:::-;2211:66;;;;2068:258;;;:::o;2159:129::-;-1:-1:-1;2313:1:12;;;;-1:-1:-1;2068:258:12;-1:-1:-1;2068:258:12:o;1115:182::-;835:10:1;824:7;1075::13;1101:6;-1:-1:-1;;;;;1101:6:13;;1029:85;824:7:1;-1:-1:-1;;;;;824:21:1;;:53;;;-1:-1:-1;849:28:1;:7;866:10;849:16;:28::i;:::-;816:102;;;;-1:-1:-1;;;816:102:1;;;;;;;:::i;:::-;1255:35:12::1;1266:2;1270:3;1275:7;1255:35;;;;;;;;;;;;;-1:-1:-1::0;;;1255:35:12::1;;::::0;:10:::1;:35::i;3529:389:3:-:0;-1:-1:-1;;;;;3729:20:3;;719:10:2;3729:20:3;;:60;;-1:-1:-1;3753:36:3;3770:4;719:10:2;3296:166:3;:::i;3753:36::-;3708:148;;;;-1:-1:-1;;;3708:148:3;;18139:2:15;3708:148:3;;;18121:21:15;18178:2;18158:18;;;18151:30;18217:34;18197:18;;;18190:62;-1:-1:-1;;;18268:18:15;;;18261:39;18317:19;;3708:148:3;17937:405:15;3708:148:3;3866:45;3884:4;3890:2;3894;3898:6;3906:4;3866:17;:45::i;1911:198:13:-;1075:7;1101:6;-1:-1:-1;;;;;1101:6:13;719:10:2;1241:23:13;1233:68;;;;-1:-1:-1;;;1233:68:13;;;;;;;:::i;:::-;-1:-1:-1;;;;;1999:22:13;::::1;1991:73;;;::::0;-1:-1:-1;;;1991:73:13;;18549:2:15;1991:73:13::1;::::0;::::1;18531:21:15::0;18588:2;18568:18;;;18561:30;18627:34;18607:18;;;18600:62;-1:-1:-1;;;18678:18:15;;;18671:36;18724:19;;1991:73:13::1;18347:402:15::0;1991:73:13::1;2074:28;2093:8;2074:18;:28::i;458:230:1:-:0;560:4;-1:-1:-1;;;;;;583:46:1;;-1:-1:-1;;;583:46:1;;:98;;;645:36;669:11;1166:305:3;1268:4;-1:-1:-1;;;;;;1303:41:3;;-1:-1:-1;;;1303:41:3;;:109;;-1:-1:-1;;;;;;;1360:52:3;;-1:-1:-1;;;1360:52:3;1303:109;:161;;;-1:-1:-1;;;;;;;;;;937:40:4;;;1428:36:3;829:155:4;8167:165:5;-1:-1:-1;;;;;8300:23:5;;8247:4;3834:19;;;:12;;;:19;;;;;;:24;;8270:55;8263:62;8167:165;-1:-1:-1;;;8167:165:5:o;328:703:14:-;384:13;601:5;610:1;601:10;597:51;;-1:-1:-1;;627:10:14;;;;;;;;;;;;-1:-1:-1;;;627:10:14;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:14;;-1:-1:-1;773:2:14;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;-1:-1:-1;;;;;817:17:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:14;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:14;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:14;;;;;;;;-1:-1:-1;972:11:14;981:2;972:11;;:::i;:::-;;;844:150;;;1017:6;328:703;-1:-1:-1;;;;328:703:14:o;8340:553:3:-;-1:-1:-1;;;;;8487:16:3;;8479:62;;;;-1:-1:-1;;;8479:62:3;;;;;;;:::i;:::-;719:10:2;8594:102:3;719:10:2;8552:16:3;8637:2;8641:21;8659:2;8641:17;:21::i;:::-;8664:25;8682:6;8664:17;:25::i;8594:102::-;8707:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;8707:17:3;;;;;;;;;:27;;8728:6;;8707:13;:27;;8728:6;;8707:27;:::i;:::-;;;;-1:-1:-1;;8749:52:3;;;19710:25:15;;;19766:2;19751:18;;19744:34;;;-1:-1:-1;;;;;8749:52:3;;;;8782:1;;8749:52;;;;;;19683:18:15;8749:52:3;;;;;;;8812:74;8843:8;8861:1;8865:2;8869;8873:6;8881:4;8812:30;:74::i;7930:156:5:-;8003:4;8026:53;8034:3;-1:-1:-1;;;;;8054:23:5;;8026:7;:53::i;6013:1045:3:-;6233:7;:14;6219:3;:10;:28;6211:81;;;;-1:-1:-1;;;6211:81:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;6310:16:3;;6302:66;;;;-1:-1:-1;;;6302:66:3;;;;;;;:::i;:::-;719:10:2;6379:16:3;6492:411;6516:3;:10;6512:1;:14;6492:411;;;6547:10;6560:3;6564:1;6560:6;;;;;;;;:::i;:::-;;;;;;;6547:19;;6580:14;6597:7;6605:1;6597:10;;;;;;;;:::i;:::-;;;;;;;;;;;;6622:19;6644:13;;;:9;:13;;;;;;-1:-1:-1;;;;;6644:19:3;;;;;;;;;;;;6597:10;;-1:-1:-1;6685:21:3;;;;6677:76;;;;-1:-1:-1;;;6677:76:3;;;;;;;:::i;:::-;6795:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;6795:19:3;;;;;;;;;;6817:20;;;6795:42;;6865:17;;;;;;;:27;;6817:20;;6795:13;6865:27;;6817:20;;6865:27;:::i;:::-;;;;;;;;6533:370;;;6528:3;;;;:::i;:::-;;;6492:411;;;;6948:2;-1:-1:-1;;;;;6918:47:3;6942:4;-1:-1:-1;;;;;6918:47:3;6932:8;-1:-1:-1;;;;;6918:47:3;;6952:3;6957:7;6918:47;;;;;;;:::i;:::-;;;;;;;;6976:75;7012:8;7022:4;7028:2;7032:3;7037:7;7046:4;6976:35;:75::i;:::-;6201:857;6013:1045;;;;;:::o;8413:115:5:-;8476:7;8502:19;8510:3;4028:18;;3946:107;8870:156;8944:7;8994:22;8998:3;9010:5;8994:3;:22::i;7612:150::-;7682:4;7705:50;7710:3;-1:-1:-1;;;;;7730:23:5;;7705:4;:50::i;2263:187:13:-;2336:16;2355:6;;-1:-1:-1;;;;;2371:17:13;;;-1:-1:-1;;;;;;2371:17:13;;;;;;2403:40;;2355:6;;;;;;;2403:40;;2336:16;2403:40;2326:124;2263:187;:::o;11017:867:3:-;-1:-1:-1;;;;;11164:18:3;;11156:66;;;;-1:-1:-1;;;11156:66:3;;;;;;;:::i;:::-;11254:7;:14;11240:3;:10;:28;11232:81;;;;-1:-1:-1;;;11232:81:3;;;;;;;:::i;:::-;11366:66;;;;;;;;;11324:16;11366:66;;;;719:10:2;;11443:364:3;11467:3;:10;11463:1;:14;11443:364;;;11498:10;11511:3;11515:1;11511:6;;;;;;;;:::i;:::-;;;;;;;11498:19;;11531:14;11548:7;11556:1;11548:10;;;;;;;;:::i;:::-;;;;;;;;;;;;11573:19;11595:13;;;:9;:13;;;;;;-1:-1:-1;;;;;11595:19:3;;;;;;;;;;;;11548:10;;-1:-1:-1;11636:21:3;;;;11628:70;;;;-1:-1:-1;;;11628:70:3;;;;;;;:::i;:::-;11740:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;11740:19:3;;;;;;;;;;11762:20;;11740:42;;11479:3;;;;:::i;:::-;;;;11443:364;;;;11860:1;-1:-1:-1;;;;;11822:55:3;11846:4;-1:-1:-1;;;;;11822:55:3;11836:8;-1:-1:-1;;;;;11822:55:3;;11864:3;11869:7;11822:55;;;;;;;:::i;:::-;;;;;;;;11146:738;11017:867;;;:::o;12019:323::-;12169:8;-1:-1:-1;;;;;12160:17:3;:5;-1:-1:-1;;;;;12160:17:3;;12152:71;;;;-1:-1:-1;;;12152:71:3;;22496:2:15;12152:71:3;;;22478:21:15;22535:2;22515:18;;;22508:30;22574:34;22554:18;;;22547:62;-1:-1:-1;;;22625:18:15;;;22618:39;22674:19;;12152:71:3;22294:405:15;12152:71:3;-1:-1:-1;;;;;12233:25:3;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;12233:46:3;;;;;;;;;;12294:41;;1178::15;;;12294::3;;1151:18:15;12294:41:3;;;;;;;12019:323;;;:::o;10193:630::-;-1:-1:-1;;;;;10315:18:3;;10307:66;;;;-1:-1:-1;;;10307:66:3;;;;;;;:::i;:::-;719:10:2;10426:102:3;719:10:2;10457:4:3;10384:16;10475:21;10493:2;10475:17;:21::i;:::-;10498:25;10516:6;10498:17;:25::i;:::-;-1:-1:-1;;10426:102:3;;;;;;;;;-1:-1:-1;10426:102:3;;-1:-1:-1;;;6013:1045:3;10426:102;10539:19;10561:13;;;:9;:13;;;;;;;;-1:-1:-1;;;;;10561:19:3;;;;;;;;;;10598:21;;;;10590:70;;;;-1:-1:-1;;;10590:70:3;;;;;;;:::i;:::-;10694:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;10694:19:3;;;;;;;;;;;;10716:20;;;10694:42;;10762:54;;19710:25:15;;;19751:18;;;19744:34;;;10694:19:3;;10762:54;;;;;;19683:18:15;10762:54:3;;;;;;;10297:526;;10193:630;;;:::o;9238:715::-;-1:-1:-1;;;;;9410:16:3;;9402:62;;;;-1:-1:-1;;;9402:62:3;;;;;;;:::i;:::-;9496:7;:14;9482:3;:10;:28;9474:81;;;;-1:-1:-1;;;9474:81:3;;;;;;;:::i;:::-;719:10:2;9566:16:3;9685:101;9709:3;:10;9705:1;:14;9685:101;;;9765:7;9773:1;9765:10;;;;;;;;:::i;:::-;;;;;;;9740:9;:17;9750:3;9754:1;9750:6;;;;;;;;:::i;:::-;;;;;;;9740:17;;;;;;;;;;;:21;9758:2;-1:-1:-1;;;;;9740:21:3;-1:-1:-1;;;;;9740:21:3;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;-1:-1:-1;9721:3:3;;-1:-1:-1;9721:3:3;;;:::i;:::-;;;;9685:101;;;;9837:2;-1:-1:-1;;;;;9801:53:3;9833:1;-1:-1:-1;;;;;9801:53:3;9815:8;-1:-1:-1;;;;;9801:53:3;;9841:3;9846:7;9801:53;;;;;;;:::i;:::-;;;;;;;;9865:81;9901:8;9919:1;9923:2;9927:3;9932:7;9941:4;9865:35;:81::i;4870:797::-;-1:-1:-1;;;;;5051:16:3;;5043:66;;;;-1:-1:-1;;;5043:66:3;;;;;;;:::i;:::-;719:10:2;5162:96:3;719:10:2;5193:4:3;5199:2;5203:21;5221:2;5203:17;:21::i;5162:96::-;5269:19;5291:13;;;:9;:13;;;;;;;;-1:-1:-1;;;;;5291:19:3;;;;;;;;;;5328:21;;;;5320:76;;;;-1:-1:-1;;;5320:76:3;;;;;;;:::i;:::-;5430:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;5430:19:3;;;;;;;;;;5452:20;;;5430:42;;5492:17;;;;;;;:27;;5452:20;;5430:13;5492:27;;5452:20;;5492:27;:::i;:::-;;;;-1:-1:-1;;5535:46:3;;;19710:25:15;;;19766:2;19751:18;;19744:34;;;-1:-1:-1;;;;;5535:46:3;;;;;;;;;;;;;;19683:18:15;5535:46:3;;;;;;;5592:68;5623:8;5633:4;5639:2;5643;5647:6;5655:4;5592:30;:68::i;:::-;5033:634;;4870:797;;;;;:::o;15025:193::-;15144:16;;;15158:1;15144:16;;;;;;;;;15091;;15119:22;;15144:16;;;;;;;;;;;;-1:-1:-1;15144:16:3;15119:41;;15181:7;15170:5;15176:1;15170:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;15206:5;15025:193;-1:-1:-1;;15025:193:3:o;13496:725::-;-1:-1:-1;;;;;13703:13:3;;1087:20:0;1133:8;13699:516:3;;13738:72;;-1:-1:-1;;;13738:72:3;;-1:-1:-1;;;;;13738:38:3;;;;;:72;;13777:8;;13787:4;;13793:2;;13797:6;;13805:4;;13738:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13738:72:3;;;;;;;;-1:-1:-1;;13738:72:3;;;;;;;;;;;;:::i;:::-;;;13734:471;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;14081:6;14074:14;;-1:-1:-1;;;14074:14:3;;;;;;;;:::i;13734:471::-;;;14128:62;;-1:-1:-1;;;14128:62:3;;24597:2:15;14128:62:3;;;24579:21:15;24636:2;24616:18;;;24609:30;24675:34;24655:18;;;24648:62;-1:-1:-1;;;24726:18:15;;;24719:50;24786:19;;14128:62:3;24395:416:15;13734:471:3;-1:-1:-1;;;;;;13859:55:3;;-1:-1:-1;;;13859:55:3;13855:152;;13938:50;;-1:-1:-1;;;13938:50:3;;;;;;;:::i;2269:1388:5:-;2335:4;2472:19;;;:12;;;:19;;;;;;2506:15;;2502:1149;;2875:21;2899:14;2912:1;2899:10;:14;:::i;:::-;2947:18;;2875:38;;-1:-1:-1;2927:17:5;;2947:22;;2968:1;;2947:22;:::i;:::-;2927:42;;3001:13;2988:9;:26;2984:398;;3034:17;3054:3;:11;;3066:9;3054:22;;;;;;;;:::i;:::-;;;;;;;;;3034:42;;3205:9;3176:3;:11;;3188:13;3176:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;;;;3288:23;;;:12;;;:23;;;;;:36;;;2984:398;3460:17;;:3;;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;3552:3;:12;;:19;3565:5;3552:19;;;;;;;;;;;3545:26;;;3593:4;3586:11;;;;;;;2502:1149;3635:5;3628:12;;;;;14227:792:3;-1:-1:-1;;;;;14459:13:3;;1087:20:0;1133:8;14455:558:3;;14494:79;;-1:-1:-1;;;14494:79:3;;-1:-1:-1;;;;;14494:43:3;;;;;:79;;14538:8;;14548:4;;14554:3;;14559:7;;14568:4;;14494:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14494:79:3;;;;;;;;-1:-1:-1;;14494:79:3;;;;;;;;;;;;:::i;:::-;;;14490:513;;;;:::i;:::-;-1:-1:-1;;;;;;14652:60:3;;-1:-1:-1;;;14652:60:3;14648:157;;14736:50;;-1:-1:-1;;;14736:50:3;;;;;;;:::i;4395:118:5:-;4462:7;4488:3;:11;;4500:5;4488:18;;;;;;;;:::i;:::-;;;;;;;;;4481:25;;4395:118;;;;:::o;1697:404::-;1760:4;3834:19;;;:12;;;:19;;;;;;1776:319;;-1:-1:-1;1818:23:5;;;;;;;;:11;:23;;;;;;;;;;;;;1998:18;;1976:19;;;:12;;;:19;;;;;;:40;;;;2030:11;;1776:319;-1:-1:-1;2079:5:5;2072:12;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:15;-1:-1:-1;;;;;89:31:15;;79:42;;69:70;;135:1;132;125:12;150:315;218:6;226;279:2;267:9;258:7;254:23;250:32;247:52;;;295:1;292;285:12;247:52;334:9;321:23;353:31;378:5;353:31;:::i;:::-;403:5;455:2;440:18;;;;427:32;;-1:-1:-1;;;150:315:15:o;652:131::-;-1:-1:-1;;;;;;726:32:15;;716:43;;706:71;;773:1;770;763:12;788:245;846:6;899:2;887:9;878:7;874:23;870:32;867:52;;;915:1;912;905:12;867:52;954:9;941:23;973:30;997:5;973:30;:::i;1230:592::-;1301:6;1309;1362:2;1350:9;1341:7;1337:23;1333:32;1330:52;;;1378:1;1375;1368:12;1330:52;1418:9;1405:23;-1:-1:-1;;;;;1488:2:15;1480:6;1477:14;1474:34;;;1504:1;1501;1494:12;1474:34;1542:6;1531:9;1527:22;1517:32;;1587:7;1580:4;1576:2;1572:13;1568:27;1558:55;;1609:1;1606;1599:12;1558:55;1649:2;1636:16;1675:2;1667:6;1664:14;1661:34;;;1691:1;1688;1681:12;1661:34;1736:7;1731:2;1722:6;1718:2;1714:15;1710:24;1707:37;1704:57;;;1757:1;1754;1747:12;1704:57;1788:2;1780:11;;;;;1810:6;;-1:-1:-1;1230:592:15;;-1:-1:-1;;;;1230:592:15:o;1827:258::-;1899:1;1909:113;1923:6;1920:1;1917:13;1909:113;;;1999:11;;;1993:18;1980:11;;;1973:39;1945:2;1938:10;1909:113;;;2040:6;2037:1;2034:13;2031:48;;;2075:1;2066:6;2061:3;2057:16;2050:27;2031:48;;1827:258;;;:::o;2090:269::-;2143:3;2181:5;2175:12;2208:6;2203:3;2196:19;2224:63;2280:6;2273:4;2268:3;2264:14;2257:4;2250:5;2246:16;2224:63;:::i;:::-;2341:2;2320:15;-1:-1:-1;;2316:29:15;2307:39;;;;2348:4;2303:50;;2090:269;-1:-1:-1;;2090:269:15:o;2364:231::-;2513:2;2502:9;2495:21;2476:4;2533:56;2585:2;2574:9;2570:18;2562:6;2533:56;:::i;2600:180::-;2659:6;2712:2;2700:9;2691:7;2687:23;2683:32;2680:52;;;2728:1;2725;2718:12;2680:52;-1:-1:-1;2751:23:15;;2600:180;-1:-1:-1;2600:180:15:o;2785:383::-;2862:6;2870;2878;2931:2;2919:9;2910:7;2906:23;2902:32;2899:52;;;2947:1;2944;2937:12;2899:52;2986:9;2973:23;3005:31;3030:5;3005:31;:::i;:::-;3055:5;3107:2;3092:18;;3079:32;;-1:-1:-1;3158:2:15;3143:18;;;3130:32;;2785:383;-1:-1:-1;;;2785:383:15:o;3173:247::-;3232:6;3285:2;3273:9;3264:7;3260:23;3256:32;3253:52;;;3301:1;3298;3291:12;3253:52;3340:9;3327:23;3359:31;3384:5;3359:31;:::i;3425:127::-;3486:10;3481:3;3477:20;3474:1;3467:31;3517:4;3514:1;3507:15;3541:4;3538:1;3531:15;3557:249;3667:2;3648:13;;-1:-1:-1;;3644:27:15;3632:40;;-1:-1:-1;;;;;3687:34:15;;3723:22;;;3684:62;3681:88;;;3749:18;;:::i;:::-;3785:2;3778:22;-1:-1:-1;;3557:249:15:o;3811:183::-;3871:4;-1:-1:-1;;;;;3896:6:15;3893:30;3890:56;;;3926:18;;:::i;:::-;-1:-1:-1;3971:1:15;3967:14;3983:4;3963:25;;3811:183::o;3999:724::-;4053:5;4106:3;4099:4;4091:6;4087:17;4083:27;4073:55;;4124:1;4121;4114:12;4073:55;4160:6;4147:20;4186:4;4209:43;4249:2;4209:43;:::i;:::-;4281:2;4275:9;4293:31;4321:2;4313:6;4293:31;:::i;:::-;4359:18;;;4451:1;4447:10;;;;4435:23;;4431:32;;;4393:15;;;;-1:-1:-1;4475:15:15;;;4472:35;;;4503:1;4500;4493:12;4472:35;4539:2;4531:6;4527:15;4551:142;4567:6;4562:3;4559:15;4551:142;;;4633:17;;4621:30;;4671:12;;;;4584;;4551:142;;;-1:-1:-1;4711:6:15;3999:724;-1:-1:-1;;;;;;3999:724:15:o;4728:555::-;4770:5;4823:3;4816:4;4808:6;4804:17;4800:27;4790:55;;4841:1;4838;4831:12;4790:55;4877:6;4864:20;-1:-1:-1;;;;;4899:2:15;4896:26;4893:52;;;4925:18;;:::i;:::-;4974:2;4968:9;4986:67;5041:2;5022:13;;-1:-1:-1;;5018:27:15;5047:4;5014:38;4968:9;4986:67;:::i;:::-;5077:2;5069:6;5062:18;5123:3;5116:4;5111:2;5103:6;5099:15;5095:26;5092:35;5089:55;;;5140:1;5137;5130:12;5089:55;5204:2;5197:4;5189:6;5185:17;5178:4;5170:6;5166:17;5153:54;5251:1;5227:15;;;5244:4;5223:26;5216:37;;;;5231:6;4728:555;-1:-1:-1;;;4728:555:15:o;5288:1071::-;5442:6;5450;5458;5466;5474;5527:3;5515:9;5506:7;5502:23;5498:33;5495:53;;;5544:1;5541;5534:12;5495:53;5583:9;5570:23;5602:31;5627:5;5602:31;:::i;:::-;5652:5;-1:-1:-1;5709:2:15;5694:18;;5681:32;5722:33;5681:32;5722:33;:::i;:::-;5774:7;-1:-1:-1;5832:2:15;5817:18;;5804:32;-1:-1:-1;;;;;5885:14:15;;;5882:34;;;5912:1;5909;5902:12;5882:34;5935:61;5988:7;5979:6;5968:9;5964:22;5935:61;:::i;:::-;5925:71;;6049:2;6038:9;6034:18;6021:32;6005:48;;6078:2;6068:8;6065:16;6062:36;;;6094:1;6091;6084:12;6062:36;6117:63;6172:7;6161:8;6150:9;6146:24;6117:63;:::i;:::-;6107:73;;6233:3;6222:9;6218:19;6205:33;6189:49;;6263:2;6253:8;6250:16;6247:36;;;6279:1;6276;6269:12;6247:36;;6302:51;6345:7;6334:8;6323:9;6319:24;6302:51;:::i;:::-;6292:61;;;5288:1071;;;;;;;;:::o;6364:658::-;6535:2;6587:21;;;6657:13;;6560:18;;;6679:22;;;6506:4;;6535:2;6758:15;;;;6732:2;6717:18;;;6506:4;6801:195;6815:6;6812:1;6809:13;6801:195;;;6880:13;;-1:-1:-1;;;;;6876:39:15;6864:52;;6971:15;;;;6936:12;;;;6912:1;6830:9;6801:195;;;-1:-1:-1;7013:3:15;;6364:658;-1:-1:-1;;;;;;6364:658:15:o;7027:1277::-;7145:6;7153;7206:2;7194:9;7185:7;7181:23;7177:32;7174:52;;;7222:1;7219;7212:12;7174:52;7262:9;7249:23;-1:-1:-1;;;;;7332:2:15;7324:6;7321:14;7318:34;;;7348:1;7345;7338:12;7318:34;7386:6;7375:9;7371:22;7361:32;;7431:7;7424:4;7420:2;7416:13;7412:27;7402:55;;7453:1;7450;7443:12;7402:55;7489:2;7476:16;7511:4;7534:43;7574:2;7534:43;:::i;:::-;7606:2;7600:9;7618:31;7646:2;7638:6;7618:31;:::i;:::-;7684:18;;;7772:1;7768:10;;;;7760:19;;7756:28;;;7718:15;;;;-1:-1:-1;7796:19:15;;;7793:39;;;7828:1;7825;7818:12;7793:39;7852:11;;;;7872:217;7888:6;7883:3;7880:15;7872:217;;;7968:3;7955:17;7985:31;8010:5;7985:31;:::i;:::-;8029:18;;7905:12;;;;8067;;;;7872:217;;;8108:6;-1:-1:-1;;8152:18:15;;8139:32;;-1:-1:-1;;8183:16:15;;;8180:36;;;8212:1;8209;8202:12;8180:36;;8235:63;8290:7;8279:8;8268:9;8264:24;8235:63;:::i;:::-;8225:73;;;7027:1277;;;;;:::o;8309:435::-;8362:3;8400:5;8394:12;8427:6;8422:3;8415:19;8453:4;8482:2;8477:3;8473:12;8466:19;;8519:2;8512:5;8508:14;8540:1;8550:169;8564:6;8561:1;8558:13;8550:169;;;8625:13;;8613:26;;8659:12;;;;8694:15;;;;8586:1;8579:9;8550:169;;;-1:-1:-1;8735:3:15;;8309:435;-1:-1:-1;;;;;8309:435:15:o;8749:261::-;8928:2;8917:9;8910:21;8891:4;8948:56;9000:2;8989:9;8985:18;8977:6;8948:56;:::i;9015:595::-;9133:6;9141;9194:2;9182:9;9173:7;9169:23;9165:32;9162:52;;;9210:1;9207;9200:12;9162:52;9250:9;9237:23;-1:-1:-1;;;;;9320:2:15;9312:6;9309:14;9306:34;;;9336:1;9333;9326:12;9306:34;9359:61;9412:7;9403:6;9392:9;9388:22;9359:61;:::i;:::-;9349:71;;9473:2;9462:9;9458:18;9445:32;9429:48;;9502:2;9492:8;9489:16;9486:36;;;9518:1;9515;9508:12;10151:416;10216:6;10224;10277:2;10265:9;10256:7;10252:23;10248:32;10245:52;;;10293:1;10290;10283:12;10245:52;10332:9;10319:23;10351:31;10376:5;10351:31;:::i;:::-;10401:5;-1:-1:-1;10458:2:15;10443:18;;10430:32;10500:15;;10493:23;10481:36;;10471:64;;10531:1;10528;10521:12;10471:64;10554:7;10544:17;;;10151:416;;;;;:::o;10572:248::-;10640:6;10648;10701:2;10689:9;10680:7;10676:23;10672:32;10669:52;;;10717:1;10714;10707:12;10669:52;-1:-1:-1;;10740:23:15;;;10810:2;10795:18;;;10782:32;;-1:-1:-1;10572:248:15:o;11104:730::-;11231:6;11239;11247;11300:2;11288:9;11279:7;11275:23;11271:32;11268:52;;;11316:1;11313;11306:12;11268:52;11355:9;11342:23;11374:31;11399:5;11374:31;:::i;:::-;11424:5;-1:-1:-1;11480:2:15;11465:18;;11452:32;-1:-1:-1;;;;;11533:14:15;;;11530:34;;;11560:1;11557;11550:12;11530:34;11583:61;11636:7;11627:6;11616:9;11612:22;11583:61;:::i;:::-;11573:71;;11697:2;11686:9;11682:18;11669:32;11653:48;;11726:2;11716:8;11713:16;11710:36;;;11742:1;11739;11732:12;11710:36;;11765:63;11820:7;11809:8;11798:9;11794:24;11765:63;:::i;:::-;11755:73;;;11104:730;;;;;:::o;11839:388::-;11907:6;11915;11968:2;11956:9;11947:7;11943:23;11939:32;11936:52;;;11984:1;11981;11974:12;11936:52;12023:9;12010:23;12042:31;12067:5;12042:31;:::i;:::-;12092:5;-1:-1:-1;12149:2:15;12134:18;;12121:32;12162:33;12121:32;12162:33;:::i;12232:734::-;12336:6;12344;12352;12360;12368;12421:3;12409:9;12400:7;12396:23;12392:33;12389:53;;;12438:1;12435;12428:12;12389:53;12477:9;12464:23;12496:31;12521:5;12496:31;:::i;:::-;12546:5;-1:-1:-1;12603:2:15;12588:18;;12575:32;12616:33;12575:32;12616:33;:::i;:::-;12668:7;-1:-1:-1;12722:2:15;12707:18;;12694:32;;-1:-1:-1;12773:2:15;12758:18;;12745:32;;-1:-1:-1;12828:3:15;12813:19;;12800:33;-1:-1:-1;;;;;12845:30:15;;12842:50;;;12888:1;12885;12878:12;12842:50;12911:49;12952:7;12943:6;12932:9;12928:22;12911:49;:::i;13383:400::-;13585:2;13567:21;;;13624:2;13604:18;;;13597:30;13663:34;13658:2;13643:18;;13636:62;-1:-1:-1;;;13729:2:15;13714:18;;13707:34;13773:3;13758:19;;13383:400::o;13788:380::-;13867:1;13863:12;;;;13910;;;13931:61;;13985:4;13977:6;13973:17;13963:27;;13931:61;14038:2;14030:6;14027:14;14007:18;14004:38;14001:161;;14084:10;14079:3;14075:20;14072:1;14065:31;14119:4;14116:1;14109:15;14147:4;14144:1;14137:15;14001:161;;13788:380;;;:::o;14299:185::-;14341:3;14379:5;14373:12;14394:52;14439:6;14434:3;14427:4;14420:5;14416:16;14394:52;:::i;:::-;14462:16;;;;;14299:185;-1:-1:-1;;14299:185:15:o;14607:1301::-;14884:3;14913:1;14946:6;14940:13;14976:3;14998:1;15026:9;15022:2;15018:18;15008:28;;15086:2;15075:9;15071:18;15108;15098:61;;15152:4;15144:6;15140:17;15130:27;;15098:61;15178:2;15226;15218:6;15215:14;15195:18;15192:38;15189:165;;-1:-1:-1;;;15253:33:15;;15309:4;15306:1;15299:15;15339:4;15260:3;15327:17;15189:165;15370:18;15397:104;;;;15515:1;15510:320;;;;15363:467;;15397:104;-1:-1:-1;;15430:24:15;;15418:37;;15475:16;;;;-1:-1:-1;15397:104:15;;15510:320;14246:1;14239:14;;;14283:4;14270:18;;15605:1;15619:165;15633:6;15630:1;15627:13;15619:165;;;15711:14;;15698:11;;;15691:35;15754:16;;;;15648:10;;15619:165;;;15623:3;;15813:6;15808:3;15804:16;15797:23;;15363:467;;;;;;;15846:56;15871:30;15897:3;15889:6;15871:30;:::i;:::-;-1:-1:-1;;;14549:20:15;;14594:1;14585:11;;14489:113;15846:56;15839:63;14607:1301;-1:-1:-1;;;;;14607:1301:15:o;15913:356::-;16115:2;16097:21;;;16134:18;;;16127:30;16193:34;16188:2;16173:18;;16166:62;16260:2;16245:18;;15913:356::o;16693:127::-;16754:10;16749:3;16745:20;16742:1;16735:31;16785:4;16782:1;16775:15;16809:4;16806:1;16799:15;16825:127;16886:10;16881:3;16877:20;16874:1;16867:31;16917:4;16914:1;16907:15;16941:4;16938:1;16931:15;16957:135;16996:3;17017:17;;;17014:43;;17037:18;;:::i;:::-;-1:-1:-1;17084:1:15;17073:13;;16957:135::o;17507:168::-;17547:7;17613:1;17609;17605:6;17601:14;17598:1;17595:21;17590:1;17583:9;17576:17;17572:45;17569:71;;;17620:18;;:::i;:::-;-1:-1:-1;17660:9:15;;17507:168::o;17680:127::-;17741:10;17736:3;17732:20;17729:1;17722:31;17772:4;17769:1;17762:15;17796:4;17793:1;17786:15;17812:120;17852:1;17878;17868:35;;17883:18;;:::i;:::-;-1:-1:-1;17917:9:15;;17812:120::o;18754:125::-;18794:4;18822:1;18819;18816:8;18813:34;;;18827:18;;:::i;:::-;-1:-1:-1;18864:9:15;;18754:125::o;18884:112::-;18916:1;18942;18932:35;;18947:18;;:::i;:::-;-1:-1:-1;18981:9:15;;18884:112::o;19001:128::-;19041:3;19072:1;19068:6;19065:1;19062:13;19059:39;;;19078:18;;:::i;:::-;-1:-1:-1;19114:9:15;;19001:128::o;19134:397::-;19336:2;19318:21;;;19375:2;19355:18;;;19348:30;19414:34;19409:2;19394:18;;19387:62;-1:-1:-1;;;19480:2:15;19465:18;;19458:31;19521:3;19506:19;;19134:397::o;19789:404::-;19991:2;19973:21;;;20030:2;20010:18;;;20003:30;20069:34;20064:2;20049:18;;20042:62;-1:-1:-1;;;20135:2:15;20120:18;;20113:38;20183:3;20168:19;;19789:404::o;20198:401::-;20400:2;20382:21;;;20439:2;20419:18;;;20412:30;20478:34;20473:2;20458:18;;20451:62;-1:-1:-1;;;20544:2:15;20529:18;;20522:35;20589:3;20574:19;;20198:401::o;20604:406::-;20806:2;20788:21;;;20845:2;20825:18;;;20818:30;20884:34;20879:2;20864:18;;20857:62;-1:-1:-1;;;20950:2:15;20935:18;;20928:40;21000:3;20985:19;;20604:406::o;21015:465::-;21272:2;21261:9;21254:21;21235:4;21298:56;21350:2;21339:9;21335:18;21327:6;21298:56;:::i;:::-;21402:9;21394:6;21390:22;21385:2;21374:9;21370:18;21363:50;21430:44;21467:6;21459;21430:44;:::i;21485:399::-;21687:2;21669:21;;;21726:2;21706:18;;;21699:30;21765:34;21760:2;21745:18;;21738:62;-1:-1:-1;;;21831:2:15;21816:18;;21809:33;21874:3;21859:19;;21485:399::o;21889:400::-;22091:2;22073:21;;;22130:2;22110:18;;;22103:30;22169:34;22164:2;22149:18;;22142:62;-1:-1:-1;;;22235:2:15;22220:18;;22213:34;22279:3;22264:19;;21889:400::o;22704:572::-;-1:-1:-1;;;;;23001:15:15;;;22983:34;;23053:15;;23048:2;23033:18;;23026:43;23100:2;23085:18;;23078:34;;;23143:2;23128:18;;23121:34;;;22963:3;23186;23171:19;;23164:32;;;22926:4;;23213:57;;23250:19;;23242:6;23213:57;:::i;:::-;23205:65;22704:572;-1:-1:-1;;;;;;;22704:572:15:o;23281:249::-;23350:6;23403:2;23391:9;23382:7;23378:23;23374:32;23371:52;;;23419:1;23416;23409:12;23371:52;23451:9;23445:16;23470:30;23494:5;23470:30;:::i;23535:179::-;23570:3;23612:1;23594:16;23591:23;23588:120;;;23658:1;23655;23652;23637:23;-1:-1:-1;23695:1:15;23689:8;23684:3;23680:18;23588:120;23535:179;:::o;23719:671::-;23758:3;23800:4;23782:16;23779:26;23776:39;;;23719:671;:::o;23776:39::-;23842:2;23836:9;-1:-1:-1;;23907:16:15;23903:25;;23900:1;23836:9;23879:50;23958:4;23952:11;23982:16;-1:-1:-1;;;;;24088:2:15;24081:4;24073:6;24069:17;24066:25;24061:2;24053:6;24050:14;24047:45;24044:58;;;24095:5;;;;;23719:671;:::o;24044:58::-;24132:6;24126:4;24122:17;24111:28;;24168:3;24162:10;24195:2;24187:6;24184:14;24181:27;;;24201:5;;;;;;23719:671;:::o;24181:27::-;24285:2;24266:16;24260:4;24256:27;24252:36;24245:4;24236:6;24231:3;24227:16;24223:27;24220:69;24217:82;;;24292:5;;;;;;23719:671;:::o;24217:82::-;24308:57;24359:4;24350:6;24342;24338:19;24334:30;24328:4;24308:57;:::i;:::-;-1:-1:-1;24381:3:15;;23719:671;-1:-1:-1;;;;;23719:671:15:o;24816:404::-;25018:2;25000:21;;;25057:2;25037:18;;;25030:30;25096:34;25091:2;25076:18;;25069:62;-1:-1:-1;;;25162:2:15;25147:18;;25140:38;25210:3;25195:19;;24816:404::o;25225:127::-;25286:10;25281:3;25277:20;25274:1;25267:31;25317:4;25314:1;25307:15;25341:4;25338:1;25331:15;25357:838;-1:-1:-1;;;;;25754:15:15;;;25736:34;;25806:15;;25801:2;25786:18;;25779:43;25716:3;25853:2;25838:18;;25831:31;;;25679:4;;25885:57;;25922:19;;25914:6;25885:57;:::i;:::-;25990:9;25982:6;25978:22;25973:2;25962:9;25958:18;25951:50;26024:44;26061:6;26053;26024:44;:::i;:::-;26010:58;;26117:9;26109:6;26105:22;26099:3;26088:9;26084:19;26077:51;26145:44;26182:6;26174;26145:44;:::i;:::-;26137:52;25357:838;-1:-1:-1;;;;;;;;25357:838:15:o

Swarm Source

ipfs://308e78855afb51d9f5c14a5617bf1cda4fe0168b0952a0bff9bb0dc1cb395f0c
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.