ETH Price: $2,639.85 (-0.73%)
Gas: 3 Gwei

 

Overview

TokenID

0

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

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:
BloodShedBearsMintPass

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-27
*/

// SPDX-License-Identifier: MIT

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

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

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

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

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

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

        address operator = _msgSender();

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

pragma solidity ^0.8.0;

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

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

    bool private _paused;

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

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

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

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

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

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


contract BloodShedBearsMintPass is ERC1155Supply, Ownable, Pausable {

    bool public isSaleActive;
    bool public isPresaleActive;
    bool public isPreSoldClaimActive;

    uint256 public perTxnLimit_ = 5;
    uint256 public maxPresaleMint_ = 3;
    uint256 public teamReserveAvailableMint_ = 20;
    uint256 public cost_ = 0.1 ether;

    uint256 public constant MAX_SUPPLY = 500;
    uint256 public constant BlOOD_SHED_BEARS_PASS = 0;
    string public name_;
    string public symbol_;

    mapping(address => uint256) public presaleWhitelistMints;
    mapping(address => uint256) public preSoldMints;

    bytes32 merkleTreeRoot;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _uri
    ) ERC1155(_uri) {
        name_ = _name;
        symbol_ = _symbol;
        _pause();
    }

    function addPreSoldMints(address[] calldata addresses, uint256[] calldata mints) external onlyOwner {
        require(addresses.length == mints.length, "Invalid input data");
        for (uint16 i = 0; i < addresses.length; ++i) {
            preSoldMints[addresses[i]] = mints[i];
        }
    }

    function setPerTxnLimit(uint256 perTxnLimit) external onlyOwner {
        perTxnLimit_ = perTxnLimit;
    }

    function setTokenPrice(uint256 cost) public onlyOwner {
        cost_ = cost;
    }

    function setMerkleTreeRoot(bytes32 merkleTreeRoot_) external onlyOwner {
        merkleTreeRoot = merkleTreeRoot_;
    }

    function flipPresaleState() external onlyOwner {
        isPresaleActive = !isPresaleActive;
    }

    function flipSaleState() external onlyOwner {
        isSaleActive = !isSaleActive;
    }

    function flipPreSoldState() external onlyOwner {
        isPreSoldClaimActive = !isPreSoldClaimActive;
    }

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

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

    function setUri(string memory uri) external onlyOwner {
        _setURI(uri);
    }

    function _leaf(address account) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(account));
    }

    function _verify(bytes32 _leafNode, bytes32[] memory proof) internal view returns (bool) {
        return MerkleProof.verify(proof, merkleTreeRoot, _leafNode);
    }

    function withdraw() external onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }

    function mint(uint256 _mintAmount) external payable {
        require(isSaleActive, "Sale is not active");
        require(_mintAmount <= perTxnLimit_, "Minted amount exceeds sale limit" );

        uint256 totalSupply = totalSupply(BlOOD_SHED_BEARS_PASS);

        require(totalSupply + _mintAmount <= MAX_SUPPLY, "The requested amount exceeds the remaining supply" );
        require(msg.value >= cost_ * _mintAmount);

        _mint(_msgSender(), BlOOD_SHED_BEARS_PASS, _mintAmount, "");
    }

    function mintPresale(uint256 mintAmount, bytes32[] calldata proof) external payable {
        require(isPresaleActive, "Presale is not active");
        require(_verify(_leaf(msg.sender), proof), "Address not whitelisted");

        uint256 totalSupply = totalSupply(BlOOD_SHED_BEARS_PASS);
        require(maxPresaleMint_ >= presaleWhitelistMints[msg.sender], "Too many mints");

        uint256 availableMints = maxPresaleMint_ - presaleWhitelistMints[msg.sender];

        require(mintAmount <= availableMints, "Too many mints requested");
        require(totalSupply + mintAmount <= MAX_SUPPLY, "The requested amount exceeds the remaining supply");
        require(msg.value >= cost_ * mintAmount , "Wrong amount provided");

        presaleWhitelistMints[msg.sender] += mintAmount;

        _mint(_msgSender(), BlOOD_SHED_BEARS_PASS, mintAmount, "");
    }

    function claimPreSold() external {
        require(isPreSoldClaimActive, "Presold claim is not active");

        uint256 preSoldMintAmounts = preSoldMints[msg.sender];

        require(preSoldMintAmounts > 0, "You have no pre bought mints available");

        uint256 totalSupply = totalSupply(BlOOD_SHED_BEARS_PASS);
        require(totalSupply + preSoldMintAmounts <= MAX_SUPPLY);

        presaleWhitelistMints[msg.sender] += preSoldMintAmounts;
        preSoldMints[msg.sender] -= preSoldMintAmounts;


        _mint(_msgSender(), BlOOD_SHED_BEARS_PASS, preSoldMintAmounts, "");
    }

    function reserve() external onlyOwner {
        _mint(_msgSender(), BlOOD_SHED_BEARS_PASS, teamReserveAvailableMint_, "");
    }

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

        require(!paused(), "ERC1155Pausable: token transfer while paused");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"BlOOD_SHED_BEARS_PASS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"mints","type":"uint256[]"}],"name":"addPreSoldMints","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":[],"name":"claimPreSold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost_","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPreSoldState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPreSoldClaimActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPresaleMint_","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name_","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"perTxnLimit_","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preSoldMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWhitelistMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleTreeRoot_","type":"bytes32"}],"name":"setMerkleTreeRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"perTxnLimit","type":"uint256"}],"name":"setPerTxnLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"cost","type":"uint256"}],"name":"setTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol_","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamReserveAvailableMint_","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600580556003600655601460075567016345785d8a00006008553480156200002b57600080fd5b5060405162002f9e38038062002f9e8339810160408190526200004e9162000342565b806200005a81620000b2565b506200006633620000cb565b6004805460ff60a01b19169055825162000088906009906020860190620001cf565b5081516200009e90600a906020850190620001cf565b50620000a96200011d565b50505062000410565b8051620000c7906002906020840190620001cf565b5050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000131600454600160a01b900460ff1690565b15620001765760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640160405180910390fd5b6004805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620001b23390565b6040516001600160a01b03909116815260200160405180910390a1565b828054620001dd90620003d3565b90600052602060002090601f0160209004810192826200020157600085556200024c565b82601f106200021c57805160ff19168380011785556200024c565b828001600101855582156200024c579182015b828111156200024c5782518255916020019190600101906200022f565b506200025a9291506200025e565b5090565b5b808211156200025a57600081556001016200025f565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200029d57600080fd5b81516001600160401b0380821115620002ba57620002ba62000275565b604051601f8301601f19908116603f01168101908282118183101715620002e557620002e562000275565b816040528381526020925086838588010111156200030257600080fd5b600091505b8382101562000326578582018301518183018401529082019062000307565b83821115620003385760008385830101525b9695505050505050565b6000806000606084860312156200035857600080fd5b83516001600160401b03808211156200037057600080fd5b6200037e878388016200028b565b945060208601519150808211156200039557600080fd5b620003a3878388016200028b565b93506040860151915080821115620003ba57600080fd5b50620003c9868287016200028b565b9150509250925092565b600181811c90821680620003e857607f821691505b602082108114156200040a57634e487b7160e01b600052602260045260246000fd5b50919050565b612b7e80620004206000396000f3fe6080604052600436106102505760003560e01c8063715018a611610139578063cd3293de116100b6578063e985e9c51161007a578063e985e9c51461068c578063ecf654b1146106d5578063f242432a14610702578063f2fde38b14610722578063f549283214610742578063f81227d41461075857600080fd5b8063cd3293de14610617578063d0cf46861461062c578063dc5979fe14610641578063dd46175414610657578063e2b9e1861461067757600080fd5b8063a22cb465116100fd578063a22cb4651461058a578063a5894acd146105aa578063af17dea6146105bf578063bc967902146105d4578063bd85b039146105ea57600080fd5b8063715018a6146105055780638456cb591461051a5780638da5cb5b1461052f5780639b642de114610557578063a0712d681461057757600080fd5b80633ccfd60b116101d257806350dc46561161019657806350dc46561461043757806355105e9e14610457578063564566a8146104845780635c975abb146104a557806360d938dc146104c45780636a61e5fc146104e557600080fd5b80633ccfd60b1461039b5780633f4ba83a146103b0578063493c56b5146103c55780634e1273f4146103db5780634f558e791461040857600080fd5b80632eb2c2d6116102195780632eb2c2d61461031a5780632f6451301461033a578063301e4fcf1461034f57806332cb6b0c1461037057806334918dfd1461038657600080fd5b8062fdd58e1461025557806301ffc9a7146102885780630b2b78c5146102b85780630c0a6b5e146102da5780630e89341c146102ed575b600080fd5b34801561026157600080fd5b50610275610270366004612132565b61076d565b6040519081526020015b60405180910390f35b34801561029457600080fd5b506102a86102a3366004612172565b610804565b604051901515815260200161027f565b3480156102c457600080fd5b506102d86102d33660046121db565b610856565b005b6102d86102e8366004612247565b610950565b3480156102f957600080fd5b5061030d610308366004612293565b610c05565b60405161027f91906122f9565b34801561032657600080fd5b506102d8610335366004612462565b610c99565b34801561034657600080fd5b506102d8610d29565b34801561035b57600080fd5b506004546102a890600160b81b900460ff1681565b34801561037c57600080fd5b506102756101f481565b34801561039257600080fd5b506102d8610e9b565b3480156103a757600080fd5b506102d8610ee6565b3480156103bc57600080fd5b506102d8610f36565b3480156103d157600080fd5b5061027560085481565b3480156103e757600080fd5b506103fb6103f636600461250c565b610f68565b60405161027f9190612612565b34801561041457600080fd5b506102a8610423366004612293565b600090815260036020526040902054151590565b34801561044357600080fd5b506102d8610452366004612293565b611092565b34801561046357600080fd5b50610275610472366004612625565b600b6020526000908152604090205481565b34801561049057600080fd5b506004546102a890600160a81b900460ff1681565b3480156104b157600080fd5b50600454600160a01b900460ff166102a8565b3480156104d057600080fd5b506004546102a890600160b01b900460ff1681565b3480156104f157600080fd5b506102d8610500366004612293565b6110c1565b34801561051157600080fd5b506102d86110f0565b34801561052657600080fd5b506102d8611124565b34801561053b57600080fd5b506004546040516001600160a01b03909116815260200161027f565b34801561056357600080fd5b506102d8610572366004612640565b611156565b6102d8610585366004612293565b61118c565b34801561059657600080fd5b506102d86105a5366004612691565b6112a5565b3480156105b657600080fd5b506102d86112b0565b3480156105cb57600080fd5b5061030d6112fb565b3480156105e057600080fd5b5061027560065481565b3480156105f657600080fd5b50610275610605366004612293565b60009081526003602052604090205490565b34801561062357600080fd5b506102d8611389565b34801561063857600080fd5b50610275600081565b34801561064d57600080fd5b5061027560055481565b34801561066357600080fd5b506102d8610672366004612293565b6113d1565b34801561068357600080fd5b5061030d611400565b34801561069857600080fd5b506102a86106a73660046126cd565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b3480156106e157600080fd5b506102756106f0366004612625565b600c6020526000908152604090205481565b34801561070e57600080fd5b506102d861071d366004612700565b61140d565b34801561072e57600080fd5b506102d861073d366004612625565b611494565b34801561074e57600080fd5b5061027560075481565b34801561076457600080fd5b506102d861152c565b60006001600160a01b0383166107de5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061083557506001600160e01b031982166303a24d0760e21b145b8061085057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6004546001600160a01b031633146108805760405162461bcd60e51b81526004016107d590612765565b8281146108c45760405162461bcd60e51b8152602060048201526012602482015271496e76616c696420696e707574206461746160701b60448201526064016107d5565b60005b61ffff81168411156109495782828261ffff168181106108e9576108e961279a565b90506020020135600c600087878561ffff1681811061090a5761090a61279a565b905060200201602081019061091f9190612625565b6001600160a01b03168152602081019190915260400160002055610942816127c6565b90506108c7565b5050505050565b600454600160b01b900460ff166109a15760405162461bcd60e51b815260206004820152601560248201527450726573616c65206973206e6f742061637469766560581b60448201526064016107d5565b604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120610a159083838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061157792505050565b610a615760405162461bcd60e51b815260206004820152601760248201527f41646472657373206e6f742077686974656c697374656400000000000000000060448201526064016107d5565b7f3617319a054d772f909f7c479a2cebe5066e836a939412e32403c99029b92eff54336000908152600b60205260409020546006541015610ad55760405162461bcd60e51b815260206004820152600e60248201526d546f6f206d616e79206d696e747360901b60448201526064016107d5565b336000908152600b6020526040812054600654610af291906127e8565b905080851115610b445760405162461bcd60e51b815260206004820152601860248201527f546f6f206d616e79206d696e747320726571756573746564000000000000000060448201526064016107d5565b6101f4610b5186846127ff565b1115610b6f5760405162461bcd60e51b81526004016107d590612817565b84600854610b7d9190612868565b341015610bc45760405162461bcd60e51b815260206004820152601560248201527415dc9bdb99c8185b5bdd5b9d081c1c9bdd9a591959605a1b60448201526064016107d5565b336000908152600b602052604081208054879290610be39084906127ff565b909155506109499050336000876040518060200160405280600081525061158d565b606060028054610c1490612887565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4090612887565b8015610c8d5780601f10610c6257610100808354040283529160200191610c8d565b820191906000526020600020905b815481529060010190602001808311610c7057829003601f168201915b50505050509050919050565b6001600160a01b038516331480610cb55750610cb585336106a7565b610d1c5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016107d5565b610949858585858561169d565b600454600160b81b900460ff16610d825760405162461bcd60e51b815260206004820152601b60248201527f507265736f6c6420636c61696d206973206e6f7420616374697665000000000060448201526064016107d5565b336000908152600c602052604090205480610dee5760405162461bcd60e51b815260206004820152602660248201527f596f752068617665206e6f2070726520626f75676874206d696e747320617661604482015265696c61626c6560d01b60648201526084016107d5565b6000805260036020527f3617319a054d772f909f7c479a2cebe5066e836a939412e32403c99029b92eff546101f4610e2683836127ff565b1115610e3157600080fd5b336000908152600b602052604081208054849290610e509084906127ff565b9091555050336000908152600c602052604081208054849290610e749084906127e8565b90915550610e979050335b6000846040518060200160405280600081525061158d565b5050565b6004546001600160a01b03163314610ec55760405162461bcd60e51b81526004016107d590612765565b6004805460ff60a81b198116600160a81b9182900460ff1615909102179055565b6004546001600160a01b03163314610f105760405162461bcd60e51b81526004016107d590612765565b60405133904780156108fc02916000818181858888f19350505050610f3457600080fd5b565b6004546001600160a01b03163314610f605760405162461bcd60e51b81526004016107d590612765565b610f34611888565b60608151835114610fcd5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016107d5565b6000835167ffffffffffffffff811115610fe957610fe961230c565b604051908082528060200260200182016040528015611012578160200160208202803683370190505b50905060005b845181101561108a5761105d8582815181106110365761103661279a565b60200260200101518583815181106110505761105061279a565b602002602001015161076d565b82828151811061106f5761106f61279a565b6020908102919091010152611083816128c2565b9050611018565b509392505050565b6004546001600160a01b031633146110bc5760405162461bcd60e51b81526004016107d590612765565b600d55565b6004546001600160a01b031633146110eb5760405162461bcd60e51b81526004016107d590612765565b600855565b6004546001600160a01b0316331461111a5760405162461bcd60e51b81526004016107d590612765565b610f346000611925565b6004546001600160a01b0316331461114e5760405162461bcd60e51b81526004016107d590612765565b610f34611977565b6004546001600160a01b031633146111805760405162461bcd60e51b81526004016107d590612765565b611189816119ff565b50565b600454600160a81b900460ff166111da5760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b60448201526064016107d5565b60055481111561122c5760405162461bcd60e51b815260206004820181905260248201527f4d696e74656420616d6f756e7420657863656564732073616c65206c696d697460448201526064016107d5565b6000805260036020527f3617319a054d772f909f7c479a2cebe5066e836a939412e32403c99029b92eff546101f461126483836127ff565b11156112825760405162461bcd60e51b81526004016107d590612817565b816008546112909190612868565b34101561129c57600080fd5b610e9733610e7f565b610e97338383611a12565b6004546001600160a01b031633146112da5760405162461bcd60e51b81526004016107d590612765565b6004805460ff60b81b198116600160b81b9182900460ff1615909102179055565b600a805461130890612887565b80601f016020809104026020016040519081016040528092919081815260200182805461133490612887565b80156113815780601f1061135657610100808354040283529160200191611381565b820191906000526020600020905b81548152906001019060200180831161136457829003601f168201915b505050505081565b6004546001600160a01b031633146113b35760405162461bcd60e51b81526004016107d590612765565b610f343360006007546040518060200160405280600081525061158d565b6004546001600160a01b031633146113fb5760405162461bcd60e51b81526004016107d590612765565b600555565b6009805461130890612887565b6001600160a01b038516331480611429575061142985336106a7565b6114875760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b60648201526084016107d5565b6109498585858585611af3565b6004546001600160a01b031633146114be5760405162461bcd60e51b81526004016107d590612765565b6001600160a01b0381166115235760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107d5565b61118981611925565b6004546001600160a01b031633146115565760405162461bcd60e51b81526004016107d590612765565b6004805460ff60b01b198116600160b01b9182900460ff1615909102179055565b600061158682600d5485611c10565b9392505050565b6001600160a01b0384166115ed5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016107d5565b3361160d816000876115fe88611c26565b61160788611c26565b87611c71565b6000848152602081815260408083206001600160a01b03891684529091528120805485929061163d9084906127ff565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461094981600087878787611cee565b81518351146116ff5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b60648201526084016107d5565b6001600160a01b0384166117255760405162461bcd60e51b81526004016107d5906128dd565b33611734818787878787611c71565b60005b845181101561181a5760008582815181106117545761175461279a565b6020026020010151905060008583815181106117725761177261279a565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156117c25760405162461bcd60e51b81526004016107d590612922565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906117ff9084906127ff565b9250508190555050505080611813906128c2565b9050611737565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161186a92919061296c565b60405180910390a4611880818787878787611e4a565b505050505050565b600454600160a01b900460ff166118d85760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016107d5565b6004805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600454600160a01b900460ff16156119c45760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016107d5565b6004805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586119083390565b8051610e9790600290602084019061207d565b816001600160a01b0316836001600160a01b03161415611a865760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016107d5565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038416611b195760405162461bcd60e51b81526004016107d5906128dd565b33611b298187876115fe88611c26565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015611b6a5760405162461bcd60e51b81526004016107d590612922565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611ba79084906127ff565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611c07828888888888611cee565b50505050505050565b600082611c1d8584611f05565b14949350505050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611c6057611c6061279a565b602090810291909101015292915050565b611c7f868686868686611f71565b600454600160a01b900460ff16156118805760405162461bcd60e51b815260206004820152602c60248201527f455243313135355061757361626c653a20746f6b656e207472616e736665722060448201526b1dda1a5b19481c185d5cd95960a21b60648201526084016107d5565b6001600160a01b0384163b156118805760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611d32908990899088908890889060040161299a565b6020604051808303816000875af1925050508015611d6d575060408051601f3d908101601f19168201909252611d6a918101906129df565b60015b611e1a57611d796129fc565b806308c379a01415611db35750611d8e612a18565b80611d995750611db5565b8060405162461bcd60e51b81526004016107d591906122f9565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016107d5565b6001600160e01b0319811663f23a6e6160e01b14611c075760405162461bcd60e51b81526004016107d590612aa2565b6001600160a01b0384163b156118805760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611e8e9089908990889088908890600401612aea565b6020604051808303816000875af1925050508015611ec9575060408051601f3d908101601f19168201909252611ec6918101906129df565b60015b611ed557611d796129fc565b6001600160e01b0319811663bc197c8160e01b14611c075760405162461bcd60e51b81526004016107d590612aa2565b600081815b845181101561108a576000858281518110611f2757611f2761279a565b60200260200101519050808311611f4d5760008381526020829052604090209250611f5e565b600081815260208490526040902092505b5080611f69816128c2565b915050611f0a565b6001600160a01b038516611ff85760005b8351811015611ff657828181518110611f9d57611f9d61279a565b602002602001015160036000868481518110611fbb57611fbb61279a565b602002602001015181526020019081526020016000206000828254611fe091906127ff565b90915550611fef9050816128c2565b9050611f82565b505b6001600160a01b0384166118805760005b8351811015611c07578281815181106120245761202461279a565b6020026020010151600360008684815181106120425761204261279a565b60200260200101518152602001908152602001600020600082825461206791906127e8565b909155506120769050816128c2565b9050612009565b82805461208990612887565b90600052602060002090601f0160209004810192826120ab57600085556120f1565b82601f106120c457805160ff19168380011785556120f1565b828001600101855582156120f1579182015b828111156120f15782518255916020019190600101906120d6565b506120fd929150612101565b5090565b5b808211156120fd5760008155600101612102565b80356001600160a01b038116811461212d57600080fd5b919050565b6000806040838503121561214557600080fd5b61214e83612116565b946020939093013593505050565b6001600160e01b03198116811461118957600080fd5b60006020828403121561218457600080fd5b81356115868161215c565b60008083601f8401126121a157600080fd5b50813567ffffffffffffffff8111156121b957600080fd5b6020830191508360208260051b85010111156121d457600080fd5b9250929050565b600080600080604085870312156121f157600080fd5b843567ffffffffffffffff8082111561220957600080fd5b6122158883890161218f565b9096509450602087013591508082111561222e57600080fd5b5061223b8782880161218f565b95989497509550505050565b60008060006040848603121561225c57600080fd5b83359250602084013567ffffffffffffffff81111561227a57600080fd5b6122868682870161218f565b9497909650939450505050565b6000602082840312156122a557600080fd5b5035919050565b6000815180845260005b818110156122d2576020818501810151868301820152016122b6565b818111156122e4576000602083870101525b50601f01601f19169290920160200192915050565b60208152600061158660208301846122ac565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff811182821017156123485761234861230c565b6040525050565b600067ffffffffffffffff8211156123695761236961230c565b5060051b60200190565b600082601f83011261238457600080fd5b813560206123918261234f565b60405161239e8282612322565b83815260059390931b85018201928281019150868411156123be57600080fd5b8286015b848110156123d957803583529183019183016123c2565b509695505050505050565b600067ffffffffffffffff8311156123fe576123fe61230c565b604051612415601f8501601f191660200182612322565b80915083815284848401111561242a57600080fd5b83836020830137600060208583010152509392505050565b600082601f83011261245357600080fd5b611586838335602085016123e4565b600080600080600060a0868803121561247a57600080fd5b61248386612116565b945061249160208701612116565b9350604086013567ffffffffffffffff808211156124ae57600080fd5b6124ba89838a01612373565b945060608801359150808211156124d057600080fd5b6124dc89838a01612373565b935060808801359150808211156124f257600080fd5b506124ff88828901612442565b9150509295509295909350565b6000806040838503121561251f57600080fd5b823567ffffffffffffffff8082111561253757600080fd5b818501915085601f83011261254b57600080fd5b813560206125588261234f565b6040516125658282612322565b83815260059390931b850182019282810191508984111561258557600080fd5b948201945b838610156125aa5761259b86612116565b8252948201949082019061258a565b965050860135925050808211156125c057600080fd5b506125cd85828601612373565b9150509250929050565b600081518084526020808501945080840160005b83811015612607578151875295820195908201906001016125eb565b509495945050505050565b60208152600061158660208301846125d7565b60006020828403121561263757600080fd5b61158682612116565b60006020828403121561265257600080fd5b813567ffffffffffffffff81111561266957600080fd5b8201601f8101841361267a57600080fd5b612689848235602084016123e4565b949350505050565b600080604083850312156126a457600080fd5b6126ad83612116565b9150602083013580151581146126c257600080fd5b809150509250929050565b600080604083850312156126e057600080fd5b6126e983612116565b91506126f760208401612116565b90509250929050565b600080600080600060a0868803121561271857600080fd5b61272186612116565b945061272f60208701612116565b93506040860135925060608601359150608086013567ffffffffffffffff81111561275957600080fd5b6124ff88828901612442565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600061ffff808316818114156127de576127de6127b0565b6001019392505050565b6000828210156127fa576127fa6127b0565b500390565b60008219821115612812576128126127b0565b500190565b60208082526031908201527f5468652072657175657374656420616d6f756e742065786365656473207468656040820152702072656d61696e696e6720737570706c7960781b606082015260800190565b6000816000190483118215151615612882576128826127b0565b500290565b600181811c9082168061289b57607f821691505b602082108114156128bc57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128d6576128d66127b0565b5060010190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60408152600061297f60408301856125d7565b828103602084015261299181856125d7565b95945050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906129d4908301846122ac565b979650505050505050565b6000602082840312156129f157600080fd5b81516115868161215c565b600060033d1115612a155760046000803e5060005160e01c5b90565b600060443d1015612a265790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715612a5657505050505090565b8285019150815181811115612a6e5750505050505090565b843d8701016020828501011115612a885750505050505090565b612a9760208286010187612322565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b0386811682528516602082015260a060408201819052600090612b16908301866125d7565b8281036060840152612b2881866125d7565b90508281036080840152612b3c81856122ac565b9897505050505050505056fea2646970667358221220d3be947fb2b07a7600f2aaf2f05c1cefb0a8c67de9e85a2434cd7aa9322a8d8164736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000016426c6f6f647368656442656172734d657461506173730000000000000000000000000000000000000000000000000000000000000000000000000000000000034253420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d625350786b6551356d535533534344646a39484a46315a546a555941434d69574b714e4c6b566a7376665a500000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102505760003560e01c8063715018a611610139578063cd3293de116100b6578063e985e9c51161007a578063e985e9c51461068c578063ecf654b1146106d5578063f242432a14610702578063f2fde38b14610722578063f549283214610742578063f81227d41461075857600080fd5b8063cd3293de14610617578063d0cf46861461062c578063dc5979fe14610641578063dd46175414610657578063e2b9e1861461067757600080fd5b8063a22cb465116100fd578063a22cb4651461058a578063a5894acd146105aa578063af17dea6146105bf578063bc967902146105d4578063bd85b039146105ea57600080fd5b8063715018a6146105055780638456cb591461051a5780638da5cb5b1461052f5780639b642de114610557578063a0712d681461057757600080fd5b80633ccfd60b116101d257806350dc46561161019657806350dc46561461043757806355105e9e14610457578063564566a8146104845780635c975abb146104a557806360d938dc146104c45780636a61e5fc146104e557600080fd5b80633ccfd60b1461039b5780633f4ba83a146103b0578063493c56b5146103c55780634e1273f4146103db5780634f558e791461040857600080fd5b80632eb2c2d6116102195780632eb2c2d61461031a5780632f6451301461033a578063301e4fcf1461034f57806332cb6b0c1461037057806334918dfd1461038657600080fd5b8062fdd58e1461025557806301ffc9a7146102885780630b2b78c5146102b85780630c0a6b5e146102da5780630e89341c146102ed575b600080fd5b34801561026157600080fd5b50610275610270366004612132565b61076d565b6040519081526020015b60405180910390f35b34801561029457600080fd5b506102a86102a3366004612172565b610804565b604051901515815260200161027f565b3480156102c457600080fd5b506102d86102d33660046121db565b610856565b005b6102d86102e8366004612247565b610950565b3480156102f957600080fd5b5061030d610308366004612293565b610c05565b60405161027f91906122f9565b34801561032657600080fd5b506102d8610335366004612462565b610c99565b34801561034657600080fd5b506102d8610d29565b34801561035b57600080fd5b506004546102a890600160b81b900460ff1681565b34801561037c57600080fd5b506102756101f481565b34801561039257600080fd5b506102d8610e9b565b3480156103a757600080fd5b506102d8610ee6565b3480156103bc57600080fd5b506102d8610f36565b3480156103d157600080fd5b5061027560085481565b3480156103e757600080fd5b506103fb6103f636600461250c565b610f68565b60405161027f9190612612565b34801561041457600080fd5b506102a8610423366004612293565b600090815260036020526040902054151590565b34801561044357600080fd5b506102d8610452366004612293565b611092565b34801561046357600080fd5b50610275610472366004612625565b600b6020526000908152604090205481565b34801561049057600080fd5b506004546102a890600160a81b900460ff1681565b3480156104b157600080fd5b50600454600160a01b900460ff166102a8565b3480156104d057600080fd5b506004546102a890600160b01b900460ff1681565b3480156104f157600080fd5b506102d8610500366004612293565b6110c1565b34801561051157600080fd5b506102d86110f0565b34801561052657600080fd5b506102d8611124565b34801561053b57600080fd5b506004546040516001600160a01b03909116815260200161027f565b34801561056357600080fd5b506102d8610572366004612640565b611156565b6102d8610585366004612293565b61118c565b34801561059657600080fd5b506102d86105a5366004612691565b6112a5565b3480156105b657600080fd5b506102d86112b0565b3480156105cb57600080fd5b5061030d6112fb565b3480156105e057600080fd5b5061027560065481565b3480156105f657600080fd5b50610275610605366004612293565b60009081526003602052604090205490565b34801561062357600080fd5b506102d8611389565b34801561063857600080fd5b50610275600081565b34801561064d57600080fd5b5061027560055481565b34801561066357600080fd5b506102d8610672366004612293565b6113d1565b34801561068357600080fd5b5061030d611400565b34801561069857600080fd5b506102a86106a73660046126cd565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b3480156106e157600080fd5b506102756106f0366004612625565b600c6020526000908152604090205481565b34801561070e57600080fd5b506102d861071d366004612700565b61140d565b34801561072e57600080fd5b506102d861073d366004612625565b611494565b34801561074e57600080fd5b5061027560075481565b34801561076457600080fd5b506102d861152c565b60006001600160a01b0383166107de5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061083557506001600160e01b031982166303a24d0760e21b145b8061085057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6004546001600160a01b031633146108805760405162461bcd60e51b81526004016107d590612765565b8281146108c45760405162461bcd60e51b8152602060048201526012602482015271496e76616c696420696e707574206461746160701b60448201526064016107d5565b60005b61ffff81168411156109495782828261ffff168181106108e9576108e961279a565b90506020020135600c600087878561ffff1681811061090a5761090a61279a565b905060200201602081019061091f9190612625565b6001600160a01b03168152602081019190915260400160002055610942816127c6565b90506108c7565b5050505050565b600454600160b01b900460ff166109a15760405162461bcd60e51b815260206004820152601560248201527450726573616c65206973206e6f742061637469766560581b60448201526064016107d5565b604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120610a159083838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061157792505050565b610a615760405162461bcd60e51b815260206004820152601760248201527f41646472657373206e6f742077686974656c697374656400000000000000000060448201526064016107d5565b7f3617319a054d772f909f7c479a2cebe5066e836a939412e32403c99029b92eff54336000908152600b60205260409020546006541015610ad55760405162461bcd60e51b815260206004820152600e60248201526d546f6f206d616e79206d696e747360901b60448201526064016107d5565b336000908152600b6020526040812054600654610af291906127e8565b905080851115610b445760405162461bcd60e51b815260206004820152601860248201527f546f6f206d616e79206d696e747320726571756573746564000000000000000060448201526064016107d5565b6101f4610b5186846127ff565b1115610b6f5760405162461bcd60e51b81526004016107d590612817565b84600854610b7d9190612868565b341015610bc45760405162461bcd60e51b815260206004820152601560248201527415dc9bdb99c8185b5bdd5b9d081c1c9bdd9a591959605a1b60448201526064016107d5565b336000908152600b602052604081208054879290610be39084906127ff565b909155506109499050336000876040518060200160405280600081525061158d565b606060028054610c1490612887565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4090612887565b8015610c8d5780601f10610c6257610100808354040283529160200191610c8d565b820191906000526020600020905b815481529060010190602001808311610c7057829003601f168201915b50505050509050919050565b6001600160a01b038516331480610cb55750610cb585336106a7565b610d1c5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016107d5565b610949858585858561169d565b600454600160b81b900460ff16610d825760405162461bcd60e51b815260206004820152601b60248201527f507265736f6c6420636c61696d206973206e6f7420616374697665000000000060448201526064016107d5565b336000908152600c602052604090205480610dee5760405162461bcd60e51b815260206004820152602660248201527f596f752068617665206e6f2070726520626f75676874206d696e747320617661604482015265696c61626c6560d01b60648201526084016107d5565b6000805260036020527f3617319a054d772f909f7c479a2cebe5066e836a939412e32403c99029b92eff546101f4610e2683836127ff565b1115610e3157600080fd5b336000908152600b602052604081208054849290610e509084906127ff565b9091555050336000908152600c602052604081208054849290610e749084906127e8565b90915550610e979050335b6000846040518060200160405280600081525061158d565b5050565b6004546001600160a01b03163314610ec55760405162461bcd60e51b81526004016107d590612765565b6004805460ff60a81b198116600160a81b9182900460ff1615909102179055565b6004546001600160a01b03163314610f105760405162461bcd60e51b81526004016107d590612765565b60405133904780156108fc02916000818181858888f19350505050610f3457600080fd5b565b6004546001600160a01b03163314610f605760405162461bcd60e51b81526004016107d590612765565b610f34611888565b60608151835114610fcd5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016107d5565b6000835167ffffffffffffffff811115610fe957610fe961230c565b604051908082528060200260200182016040528015611012578160200160208202803683370190505b50905060005b845181101561108a5761105d8582815181106110365761103661279a565b60200260200101518583815181106110505761105061279a565b602002602001015161076d565b82828151811061106f5761106f61279a565b6020908102919091010152611083816128c2565b9050611018565b509392505050565b6004546001600160a01b031633146110bc5760405162461bcd60e51b81526004016107d590612765565b600d55565b6004546001600160a01b031633146110eb5760405162461bcd60e51b81526004016107d590612765565b600855565b6004546001600160a01b0316331461111a5760405162461bcd60e51b81526004016107d590612765565b610f346000611925565b6004546001600160a01b0316331461114e5760405162461bcd60e51b81526004016107d590612765565b610f34611977565b6004546001600160a01b031633146111805760405162461bcd60e51b81526004016107d590612765565b611189816119ff565b50565b600454600160a81b900460ff166111da5760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b60448201526064016107d5565b60055481111561122c5760405162461bcd60e51b815260206004820181905260248201527f4d696e74656420616d6f756e7420657863656564732073616c65206c696d697460448201526064016107d5565b6000805260036020527f3617319a054d772f909f7c479a2cebe5066e836a939412e32403c99029b92eff546101f461126483836127ff565b11156112825760405162461bcd60e51b81526004016107d590612817565b816008546112909190612868565b34101561129c57600080fd5b610e9733610e7f565b610e97338383611a12565b6004546001600160a01b031633146112da5760405162461bcd60e51b81526004016107d590612765565b6004805460ff60b81b198116600160b81b9182900460ff1615909102179055565b600a805461130890612887565b80601f016020809104026020016040519081016040528092919081815260200182805461133490612887565b80156113815780601f1061135657610100808354040283529160200191611381565b820191906000526020600020905b81548152906001019060200180831161136457829003601f168201915b505050505081565b6004546001600160a01b031633146113b35760405162461bcd60e51b81526004016107d590612765565b610f343360006007546040518060200160405280600081525061158d565b6004546001600160a01b031633146113fb5760405162461bcd60e51b81526004016107d590612765565b600555565b6009805461130890612887565b6001600160a01b038516331480611429575061142985336106a7565b6114875760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b60648201526084016107d5565b6109498585858585611af3565b6004546001600160a01b031633146114be5760405162461bcd60e51b81526004016107d590612765565b6001600160a01b0381166115235760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107d5565b61118981611925565b6004546001600160a01b031633146115565760405162461bcd60e51b81526004016107d590612765565b6004805460ff60b01b198116600160b01b9182900460ff1615909102179055565b600061158682600d5485611c10565b9392505050565b6001600160a01b0384166115ed5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016107d5565b3361160d816000876115fe88611c26565b61160788611c26565b87611c71565b6000848152602081815260408083206001600160a01b03891684529091528120805485929061163d9084906127ff565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461094981600087878787611cee565b81518351146116ff5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b60648201526084016107d5565b6001600160a01b0384166117255760405162461bcd60e51b81526004016107d5906128dd565b33611734818787878787611c71565b60005b845181101561181a5760008582815181106117545761175461279a565b6020026020010151905060008583815181106117725761177261279a565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156117c25760405162461bcd60e51b81526004016107d590612922565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906117ff9084906127ff565b9250508190555050505080611813906128c2565b9050611737565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161186a92919061296c565b60405180910390a4611880818787878787611e4a565b505050505050565b600454600160a01b900460ff166118d85760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016107d5565b6004805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600454600160a01b900460ff16156119c45760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016107d5565b6004805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586119083390565b8051610e9790600290602084019061207d565b816001600160a01b0316836001600160a01b03161415611a865760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016107d5565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038416611b195760405162461bcd60e51b81526004016107d5906128dd565b33611b298187876115fe88611c26565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015611b6a5760405162461bcd60e51b81526004016107d590612922565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611ba79084906127ff565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611c07828888888888611cee565b50505050505050565b600082611c1d8584611f05565b14949350505050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611c6057611c6061279a565b602090810291909101015292915050565b611c7f868686868686611f71565b600454600160a01b900460ff16156118805760405162461bcd60e51b815260206004820152602c60248201527f455243313135355061757361626c653a20746f6b656e207472616e736665722060448201526b1dda1a5b19481c185d5cd95960a21b60648201526084016107d5565b6001600160a01b0384163b156118805760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611d32908990899088908890889060040161299a565b6020604051808303816000875af1925050508015611d6d575060408051601f3d908101601f19168201909252611d6a918101906129df565b60015b611e1a57611d796129fc565b806308c379a01415611db35750611d8e612a18565b80611d995750611db5565b8060405162461bcd60e51b81526004016107d591906122f9565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016107d5565b6001600160e01b0319811663f23a6e6160e01b14611c075760405162461bcd60e51b81526004016107d590612aa2565b6001600160a01b0384163b156118805760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611e8e9089908990889088908890600401612aea565b6020604051808303816000875af1925050508015611ec9575060408051601f3d908101601f19168201909252611ec6918101906129df565b60015b611ed557611d796129fc565b6001600160e01b0319811663bc197c8160e01b14611c075760405162461bcd60e51b81526004016107d590612aa2565b600081815b845181101561108a576000858281518110611f2757611f2761279a565b60200260200101519050808311611f4d5760008381526020829052604090209250611f5e565b600081815260208490526040902092505b5080611f69816128c2565b915050611f0a565b6001600160a01b038516611ff85760005b8351811015611ff657828181518110611f9d57611f9d61279a565b602002602001015160036000868481518110611fbb57611fbb61279a565b602002602001015181526020019081526020016000206000828254611fe091906127ff565b90915550611fef9050816128c2565b9050611f82565b505b6001600160a01b0384166118805760005b8351811015611c07578281815181106120245761202461279a565b6020026020010151600360008684815181106120425761204261279a565b60200260200101518152602001908152602001600020600082825461206791906127e8565b909155506120769050816128c2565b9050612009565b82805461208990612887565b90600052602060002090601f0160209004810192826120ab57600085556120f1565b82601f106120c457805160ff19168380011785556120f1565b828001600101855582156120f1579182015b828111156120f15782518255916020019190600101906120d6565b506120fd929150612101565b5090565b5b808211156120fd5760008155600101612102565b80356001600160a01b038116811461212d57600080fd5b919050565b6000806040838503121561214557600080fd5b61214e83612116565b946020939093013593505050565b6001600160e01b03198116811461118957600080fd5b60006020828403121561218457600080fd5b81356115868161215c565b60008083601f8401126121a157600080fd5b50813567ffffffffffffffff8111156121b957600080fd5b6020830191508360208260051b85010111156121d457600080fd5b9250929050565b600080600080604085870312156121f157600080fd5b843567ffffffffffffffff8082111561220957600080fd5b6122158883890161218f565b9096509450602087013591508082111561222e57600080fd5b5061223b8782880161218f565b95989497509550505050565b60008060006040848603121561225c57600080fd5b83359250602084013567ffffffffffffffff81111561227a57600080fd5b6122868682870161218f565b9497909650939450505050565b6000602082840312156122a557600080fd5b5035919050565b6000815180845260005b818110156122d2576020818501810151868301820152016122b6565b818111156122e4576000602083870101525b50601f01601f19169290920160200192915050565b60208152600061158660208301846122ac565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff811182821017156123485761234861230c565b6040525050565b600067ffffffffffffffff8211156123695761236961230c565b5060051b60200190565b600082601f83011261238457600080fd5b813560206123918261234f565b60405161239e8282612322565b83815260059390931b85018201928281019150868411156123be57600080fd5b8286015b848110156123d957803583529183019183016123c2565b509695505050505050565b600067ffffffffffffffff8311156123fe576123fe61230c565b604051612415601f8501601f191660200182612322565b80915083815284848401111561242a57600080fd5b83836020830137600060208583010152509392505050565b600082601f83011261245357600080fd5b611586838335602085016123e4565b600080600080600060a0868803121561247a57600080fd5b61248386612116565b945061249160208701612116565b9350604086013567ffffffffffffffff808211156124ae57600080fd5b6124ba89838a01612373565b945060608801359150808211156124d057600080fd5b6124dc89838a01612373565b935060808801359150808211156124f257600080fd5b506124ff88828901612442565b9150509295509295909350565b6000806040838503121561251f57600080fd5b823567ffffffffffffffff8082111561253757600080fd5b818501915085601f83011261254b57600080fd5b813560206125588261234f565b6040516125658282612322565b83815260059390931b850182019282810191508984111561258557600080fd5b948201945b838610156125aa5761259b86612116565b8252948201949082019061258a565b965050860135925050808211156125c057600080fd5b506125cd85828601612373565b9150509250929050565b600081518084526020808501945080840160005b83811015612607578151875295820195908201906001016125eb565b509495945050505050565b60208152600061158660208301846125d7565b60006020828403121561263757600080fd5b61158682612116565b60006020828403121561265257600080fd5b813567ffffffffffffffff81111561266957600080fd5b8201601f8101841361267a57600080fd5b612689848235602084016123e4565b949350505050565b600080604083850312156126a457600080fd5b6126ad83612116565b9150602083013580151581146126c257600080fd5b809150509250929050565b600080604083850312156126e057600080fd5b6126e983612116565b91506126f760208401612116565b90509250929050565b600080600080600060a0868803121561271857600080fd5b61272186612116565b945061272f60208701612116565b93506040860135925060608601359150608086013567ffffffffffffffff81111561275957600080fd5b6124ff88828901612442565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600061ffff808316818114156127de576127de6127b0565b6001019392505050565b6000828210156127fa576127fa6127b0565b500390565b60008219821115612812576128126127b0565b500190565b60208082526031908201527f5468652072657175657374656420616d6f756e742065786365656473207468656040820152702072656d61696e696e6720737570706c7960781b606082015260800190565b6000816000190483118215151615612882576128826127b0565b500290565b600181811c9082168061289b57607f821691505b602082108114156128bc57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128d6576128d66127b0565b5060010190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60408152600061297f60408301856125d7565b828103602084015261299181856125d7565b95945050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906129d4908301846122ac565b979650505050505050565b6000602082840312156129f157600080fd5b81516115868161215c565b600060033d1115612a155760046000803e5060005160e01c5b90565b600060443d1015612a265790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715612a5657505050505090565b8285019150815181811115612a6e5750505050505090565b843d8701016020828501011115612a885750505050505090565b612a9760208286010187612322565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b0386811682528516602082015260a060408201819052600090612b16908301866125d7565b8281036060840152612b2881866125d7565b90508281036080840152612b3c81856122ac565b9897505050505050505056fea2646970667358221220d3be947fb2b07a7600f2aaf2f05c1cefb0a8c67de9e85a2434cd7aa9322a8d8164736f6c634300080a0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000016426c6f6f647368656442656172734d657461506173730000000000000000000000000000000000000000000000000000000000000000000000000000000000034253420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d625350786b6551356d535533534344646a39484a46315a546a555941434d69574b714e4c6b566a7376665a500000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): BloodshedBearsMetaPass
Arg [1] : _symbol (string): BSB
Arg [2] : _uri (string): https://ipfs.io/ipfs/QmbSPxkeQ5mSU3SCDdj9HJF1ZTjUYACMiWKqNLkVjsvfZP

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000016
Arg [4] : 426c6f6f647368656442656172734d6574615061737300000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4253420000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [8] : 68747470733a2f2f697066732e696f2f697066732f516d625350786b6551356d
Arg [9] : 535533534344646a39484a46315a546a555941434d69574b714e4c6b566a7376
Arg [10] : 665a500000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

41100:5213:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19391:231;;;;;;;;;;-1:-1:-1;19391:231:0;;;;;:::i;:::-;;:::i;:::-;;;597:25:1;;;585:2;570:18;19391:231:0;;;;;;;;18426:298;;;;;;;;;;-1:-1:-1;18426:298:0;;;;;:::i;:::-;;:::i;:::-;;;1184:14:1;;1177:22;1159:41;;1147:2;1132:18;18426:298:0;1019:187:1;41975:302:0;;;;;;;;;;-1:-1:-1;41975:302:0;;;;;:::i;:::-;;:::i;:::-;;44134:877;;;;;;:::i;:::-;;:::i;19135:105::-;;;;;;;;;;-1:-1:-1;19135:105:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;21310:442::-;;;;;;;;;;-1:-1:-1;21310:442:0;;;;;:::i;:::-;;:::i;45019:605::-;;;;;;;;;;;;;:::i;41242:32::-;;;;;;;;;;-1:-1:-1;41242:32:0;;;;-1:-1:-1;;;41242:32:0;;;;;;41455:40;;;;;;;;;;;;41492:3;41455:40;;42733:91;;;;;;;;;;;;;:::i;43498:114::-;;;;;;;;;;;;;:::i;43021:67::-;;;;;;;;;;;;;:::i;41414:32::-;;;;;;;;;;;;;;;;19788:504;;;;;;;;;;-1:-1:-1;19788:504:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;33598:122::-;;;;;;;;;;-1:-1:-1;33598:122:0;;;;;:::i;:::-;33655:4;33476:16;;;:12;:16;;;;;;-1:-1:-1;;;33598:122:0;42495;;;;;;;;;;-1:-1:-1;42495:122:0;;;;;:::i;:::-;;:::i;41614:56::-;;;;;;;;;;-1:-1:-1;41614:56:0;;;;;:::i;:::-;;;;;;;;;;;;;;41177:24;;;;;;;;;;-1:-1:-1;41177:24:0;;;;-1:-1:-1;;;41177:24:0;;;;;;39912:86;;;;;;;;;;-1:-1:-1;39983:7:0;;-1:-1:-1;;;39983:7:0;;;;39912:86;;41208:27;;;;;;;;;;-1:-1:-1;41208:27:0;;;;-1:-1:-1;;;41208:27:0;;;;;;42402:85;;;;;;;;;;-1:-1:-1;42402:85:0;;;;;:::i;:::-;;:::i;36045:94::-;;;;;;;;;;;;;:::i;42950:63::-;;;;;;;;;;;;;:::i;35394:87::-;;;;;;;;;;-1:-1:-1;35467:6:0;;35394:87;;-1:-1:-1;;;;;35467:6:0;;;9148:51:1;;9136:2;9121:18;35394:87:0;9002:203:1;43096:85:0;;;;;;;;;;-1:-1:-1;43096:85:0;;;;;:::i;:::-;;:::i;43620:506::-;;;;;;:::i;:::-;;:::i;20365:155::-;;;;;;;;;;-1:-1:-1;20365:155:0;;;;;:::i;:::-;;:::i;42832:110::-;;;;;;;;;;;;;:::i;41584:21::-;;;;;;;;;;;;;:::i;41321:34::-;;;;;;;;;;;;;;;;33387:113;;;;;;;;;;-1:-1:-1;33387:113:0;;;;;:::i;:::-;33449:7;33476:16;;;:12;:16;;;;;;;33387:113;45632:130;;;;;;;;;;;;;:::i;41502:49::-;;;;;;;;;;;;41550:1;41502:49;;41283:31;;;;;;;;;;;;;;;;42285:109;;;;;;;;;;-1:-1:-1;42285:109:0;;;;;:::i;:::-;;:::i;41558:19::-;;;;;;;;;;;;;:::i;20592:168::-;;;;;;;;;;-1:-1:-1;20592:168:0;;;;;:::i;:::-;-1:-1:-1;;;;;20715:27:0;;;20691:4;20715:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;20592:168;41677:47;;;;;;;;;;-1:-1:-1;41677:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;20832:401;;;;;;;;;;-1:-1:-1;20832:401:0;;;;;:::i;:::-;;:::i;36294:192::-;;;;;;;;;;-1:-1:-1;36294:192:0;;;;;:::i;:::-;;:::i;41362:45::-;;;;;;;;;;;;;;;;42625:100;;;;;;;;;;;;;:::i;19391:231::-;19477:7;-1:-1:-1;;;;;19505:21:0;;19497:77;;;;-1:-1:-1;;;19497:77:0;;11095:2:1;19497:77:0;;;11077:21:1;11134:2;11114:18;;;11107:30;11173:34;11153:18;;;11146:62;-1:-1:-1;;;11224:18:1;;;11217:41;11275:19;;19497:77:0;;;;;;;;;-1:-1:-1;19592:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;19592:22:0;;;;;;;;;;;;19391:231::o;18426:298::-;18528:4;-1:-1:-1;;;;;;18561:41:0;;-1:-1:-1;;;18561:41:0;;:106;;-1:-1:-1;;;;;;;18615:52:0;;-1:-1:-1;;;18615:52:0;18561:106;:155;;;-1:-1:-1;;;;;;;;;;17434:40:0;;;18680:36;18545:171;18426:298;-1:-1:-1;;18426:298:0:o;41975:302::-;35467:6;;-1:-1:-1;;;;;35467:6:0;682:10;35614:23;35606:68;;;;-1:-1:-1;;;35606:68:0;;;;;;;:::i;:::-;42094:32;;::::1;42086:63;;;::::0;-1:-1:-1;;;42086:63:0;;11868:2:1;42086:63:0::1;::::0;::::1;11850:21:1::0;11907:2;11887:18;;;11880:30;-1:-1:-1;;;11926:18:1;;;11919:48;11984:18;;42086:63:0::1;11666:342:1::0;42086:63:0::1;42165:8;42160:110;42179:20;::::0;::::1;::::0;-1:-1:-1;42160:110:0::1;;;42250:5;;42256:1;42250:8;;;;;;;;;:::i;:::-;;;;;;;42221:12;:26;42234:9;;42244:1;42234:12;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;42221:26:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;42221:26:0;:37;42201:3:::1;::::0;::::1;:::i;:::-;;;42160:110;;;;41975:302:::0;;;;:::o;44134:877::-;44237:15;;-1:-1:-1;;;44237:15:0;;;;44229:49;;;;-1:-1:-1;;;44229:49:0;;12681:2:1;44229:49:0;;;12663:21:1;12720:2;12700:18;;;12693:30;-1:-1:-1;;;12739:18:1;;;12732:51;12800:18;;44229:49:0;12479:345:1;44229:49:0;43281:25;;;44311:10;18872:2:1;18868:15;-1:-1:-1;;18864:53:1;43281:25:0;;;;18852:66:1;;;;43281:25:0;;;;;;;;;18934:12:1;;;;43281:25:0;;;43271:36;;;;;44297:33;;44324:5;;44297:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44297:7:0;;-1:-1:-1;;;44297:33:0:i;:::-;44289:69;;;;-1:-1:-1;;;44289:69:0;;13031:2:1;44289:69:0;;;13013:21:1;13070:2;13050:18;;;13043:30;13109:25;13089:18;;;13082:53;13152:18;;44289:69:0;12829:347:1;44289:69:0;33476:16;;44487:10;44371:19;44465:33;;;:21;33476:16;44465:33;;;;;44446:15;;-1:-1:-1;44446:52:0;44438:79;;;;-1:-1:-1;;;44438:79:0;;13383:2:1;44438:79:0;;;13365:21:1;13422:2;13402:18;;;13395:30;-1:-1:-1;;;13441:18:1;;;13434:44;13495:18;;44438:79:0;13181:338:1;44438:79:0;44595:10;44530:22;44573:33;;;:21;:33;;;;;;44555:15;;:51;;44573:33;44555:51;:::i;:::-;44530:76;;44641:14;44627:10;:28;;44619:65;;;;-1:-1:-1;;;44619:65:0;;13856:2:1;44619:65:0;;;13838:21:1;13895:2;13875:18;;;13868:30;13934:26;13914:18;;;13907:54;13978:18;;44619:65:0;13654:348:1;44619:65:0;41492:3;44703:24;44717:10;44703:11;:24;:::i;:::-;:38;;44695:100;;;;-1:-1:-1;;;44695:100:0;;;;;;;:::i;:::-;44835:10;44827:5;;:18;;;;:::i;:::-;44814:9;:31;;44806:66;;;;-1:-1:-1;;;44806:66:0;;14933:2:1;44806:66:0;;;14915:21:1;14972:2;14952:18;;;14945:30;-1:-1:-1;;;14991:18:1;;;14984:51;15052:18;;44806:66:0;14731:345:1;44806:66:0;44907:10;44885:33;;;;:21;:33;;;;;:47;;44922:10;;44885:33;:47;;44922:10;;44885:47;:::i;:::-;;;;-1:-1:-1;44945:58:0;;-1:-1:-1;682:10:0;41550:1;44988:10;44945:58;;;;;;;;;;;;:5;:58::i;19135:105::-;19195:13;19228:4;19221:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19135:105;;;:::o;21310:442::-;-1:-1:-1;;;;;21543:20:0;;682:10;21543:20;;:60;;-1:-1:-1;21567:36:0;21584:4;682:10;20592:168;:::i;21567:36::-;21521:160;;;;-1:-1:-1;;;21521:160:0;;15668:2:1;21521:160:0;;;15650:21:1;15707:2;15687:18;;;15680:30;15746:34;15726:18;;;15719:62;-1:-1:-1;;;15797:18:1;;;15790:48;15855:19;;21521:160:0;15466:414:1;21521:160:0;21692:52;21715:4;21721:2;21725:3;21730:7;21739:4;21692:22;:52::i;45019:605::-;45071:20;;-1:-1:-1;;;45071:20:0;;;;45063:60;;;;-1:-1:-1;;;45063:60:0;;16087:2:1;45063:60:0;;;16069:21:1;16126:2;16106:18;;;16099:30;16165:29;16145:18;;;16138:57;16212:18;;45063:60:0;15885:351:1;45063:60:0;45178:10;45136:26;45165:24;;;:12;:24;;;;;;45210:22;45202:73;;;;-1:-1:-1;;;45202:73:0;;16443:2:1;45202:73:0;;;16425:21:1;16482:2;16462:18;;;16455:30;16521:34;16501:18;;;16494:62;-1:-1:-1;;;16572:18:1;;;16565:36;16618:19;;45202:73:0;16241:402:1;45202:73:0;45288:19;33476:16;;:12;:16;;;;41492:3;45363:32;45377:18;33476:16;45363:32;:::i;:::-;:46;;45355:55;;;;;;45445:10;45423:33;;;;:21;:33;;;;;:55;;45460:18;;45423:33;:55;;45460:18;;45423:55;:::i;:::-;;;;-1:-1:-1;;45502:10:0;45489:24;;;;:12;:24;;;;;:46;;45517:18;;45489:24;:46;;45517:18;;45489:46;:::i;:::-;;;;-1:-1:-1;45550:66:0;;-1:-1:-1;682:10:0;45556:12;41550:1;45593:18;45550:66;;;;;;;;;;;;:5;:66::i;:::-;45052:572;;45019:605::o;42733:91::-;35467:6;;-1:-1:-1;;;;;35467:6:0;682:10;35614:23;35606:68;;;;-1:-1:-1;;;35606:68:0;;;;;;;:::i;:::-;42804:12:::1;::::0;;-1:-1:-1;;;;42788:28:0;::::1;-1:-1:-1::0;;;42804:12:0;;;::::1;;;42803:13;42788:28:::0;;::::1;;::::0;;42733:91::o;43498:114::-;35467:6;;-1:-1:-1;;;;;35467:6:0;682:10;35614:23;35606:68;;;;-1:-1:-1;;;35606:68:0;;;;;;;:::i;:::-;43556:47:::1;::::0;43564:10:::1;::::0;43581:21:::1;43556:47:::0;::::1;;;::::0;::::1;::::0;;;43581:21;43564:10;43556:47;::::1;;;;;;43548:56;;;::::0;::::1;;43498:114::o:0;43021:67::-;35467:6;;-1:-1:-1;;;;;35467:6:0;682:10;35614:23;35606:68;;;;-1:-1:-1;;;35606:68:0;;;;;;;:::i;:::-;43070:10:::1;:8;:10::i;19788:504::-:0;19924:16;19985:3;:10;19966:8;:15;:29;19958:83;;;;-1:-1:-1;;;19958:83:0;;16850:2:1;19958:83:0;;;16832:21:1;16889:2;16869:18;;;16862:30;16928:34;16908:18;;;16901:62;-1:-1:-1;;;16979:18:1;;;16972:39;17028:19;;19958:83:0;16648:405:1;19958:83:0;20054:30;20101:8;:15;20087:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20087:30:0;;20054:63;;20135:9;20130:122;20154:8;:15;20150:1;:19;20130:122;;;20210:30;20220:8;20229:1;20220:11;;;;;;;;:::i;:::-;;;;;;;20233:3;20237:1;20233:6;;;;;;;;:::i;:::-;;;;;;;20210:9;:30::i;:::-;20191:13;20205:1;20191:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;20171:3;;;:::i;:::-;;;20130:122;;;-1:-1:-1;20271:13:0;19788:504;-1:-1:-1;;;19788:504:0:o;42495:122::-;35467:6;;-1:-1:-1;;;;;35467:6:0;682:10;35614:23;35606:68;;;;-1:-1:-1;;;35606:68:0;;;;;;;:::i;:::-;42577:14:::1;:32:::0;42495:122::o;42402:85::-;35467:6;;-1:-1:-1;;;;;35467:6:0;682:10;35614:23;35606:68;;;;-1:-1:-1;;;35606:68:0;;;;;;;:::i;:::-;42467:5:::1;:12:::0;42402:85::o;36045:94::-;35467:6;;-1:-1:-1;;;;;35467:6:0;682:10;35614:23;35606:68;;;;-1:-1:-1;;;35606:68:0;;;;;;;:::i;:::-;36110:21:::1;36128:1;36110:9;:21::i;42950:63::-:0;35467:6;;-1:-1:-1;;;;;35467:6:0;682:10;35614:23;35606:68;;;;-1:-1:-1;;;35606:68:0;;;;;;;:::i;:::-;42997:8:::1;:6;:8::i;43096:85::-:0;35467:6;;-1:-1:-1;;;;;35467:6:0;682:10;35614:23;35606:68;;;;-1:-1:-1;;;35606:68:0;;;;;;;:::i;:::-;43161:12:::1;43169:3;43161:7;:12::i;:::-;43096:85:::0;:::o;43620:506::-;43691:12;;-1:-1:-1;;;43691:12:0;;;;43683:43;;;;-1:-1:-1;;;43683:43:0;;17400:2:1;43683:43:0;;;17382:21:1;17439:2;17419:18;;;17412:30;-1:-1:-1;;;17458:18:1;;;17451:48;17516:18;;43683:43:0;17198:342:1;43683:43:0;43760:12;;43745:11;:27;;43737:73;;;;-1:-1:-1;;;43737:73:0;;17747:2:1;43737:73:0;;;17729:21:1;;;17766:18;;;17759:30;17825:34;17805:18;;;17798:62;17877:18;;43737:73:0;17545:356:1;43737:73:0;43823:19;33476:16;;:12;:16;;;;41492:3;43900:25;43914:11;33476:16;43900:25;:::i;:::-;:39;;43892:102;;;;-1:-1:-1;;;43892:102:0;;;;;;;:::i;:::-;44034:11;44026:5;;:19;;;;:::i;:::-;44013:9;:32;;44005:41;;;;;;44059:59;682:10;44065:12;602:98;20365:155;20460:52;682:10;20493:8;20503;20460:18;:52::i;42832:110::-;35467:6;;-1:-1:-1;;;;;35467:6:0;682:10;35614:23;35606:68;;;;-1:-1:-1;;;35606:68:0;;;;;;;:::i;:::-;42914:20:::1;::::0;;-1:-1:-1;;;;42890:44:0;::::1;-1:-1:-1::0;;;42914:20:0;;;::::1;;;42913:21;42890:44:::0;;::::1;;::::0;;42832:110::o;41584:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45632:130::-;35467:6;;-1:-1:-1;;;;;35467:6:0;682:10;35614:23;35606:68;;;;-1:-1:-1;;;35606:68:0;;;;;;;:::i;:::-;45681:73:::1;682:10:::0;41550:1:::1;45724:25;;45681:73;;;;;;;;;;;::::0;:5:::1;:73::i;42285:109::-:0;35467:6;;-1:-1:-1;;;;;35467:6:0;682:10;35614:23;35606:68;;;;-1:-1:-1;;;35606:68:0;;;;;;;:::i;:::-;42360:12:::1;:26:::0;42285:109::o;41558:19::-;;;;;;;:::i;20832:401::-;-1:-1:-1;;;;;21040:20:0;;682:10;21040:20;;:60;;-1:-1:-1;21064:36:0;21081:4;682:10;20592:168;:::i;21064:36::-;21018:151;;;;-1:-1:-1;;;21018:151:0;;18108:2:1;21018:151:0;;;18090:21:1;18147:2;18127:18;;;18120:30;18186:34;18166:18;;;18159:62;-1:-1:-1;;;18237:18:1;;;18230:39;18286:19;;21018:151:0;17906:405:1;21018:151:0;21180:45;21198:4;21204:2;21208;21212:6;21220:4;21180:17;:45::i;36294:192::-;35467:6;;-1:-1:-1;;;;;35467:6:0;682:10;35614:23;35606:68;;;;-1:-1:-1;;;35606:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36383:22:0;::::1;36375:73;;;::::0;-1:-1:-1;;;36375:73:0;;18518:2:1;36375:73:0::1;::::0;::::1;18500:21:1::0;18557:2;18537:18;;;18530:30;18596:34;18576:18;;;18569:62;-1:-1:-1;;;18647:18:1;;;18640:36;18693:19;;36375:73:0::1;18316:402:1::0;36375:73:0::1;36459:19;36469:8;36459:9;:19::i;42625:100::-:0;35467:6;;-1:-1:-1;;;;;35467:6:0;682:10;35614:23;35606:68;;;;-1:-1:-1;;;35606:68:0;;;;;;;:::i;:::-;42702:15:::1;::::0;;-1:-1:-1;;;;42683:34:0;::::1;-1:-1:-1::0;;;42702:15:0;;;::::1;;;42701:16;42683:34:::0;;::::1;;::::0;;42625:100::o;43323:167::-;43406:4;43430:52;43449:5;43456:14;;43472:9;43430:18;:52::i;:::-;43423:59;43323:167;-1:-1:-1;;;43323:167:0:o;25762:569::-;-1:-1:-1;;;;;25915:16:0;;25907:62;;;;-1:-1:-1;;;25907:62:0;;19159:2:1;25907:62:0;;;19141:21:1;19198:2;19178:18;;;19171:30;19237:34;19217:18;;;19210:62;-1:-1:-1;;;19288:18:1;;;19281:31;19329:19;;25907:62:0;18957:397:1;25907:62:0;682:10;26026:102;682:10;25982:16;26069:2;26073:21;26091:2;26073:17;:21::i;:::-;26096:25;26114:6;26096:17;:25::i;:::-;26123:4;26026:20;:102::i;:::-;26141:9;:13;;;;;;;;;;;-1:-1:-1;;;;;26141:17:0;;;;;;;;;:27;;26162:6;;26141:9;:27;;26162:6;;26141:27;:::i;:::-;;;;-1:-1:-1;;26184:52:0;;;19533:25:1;;;19589:2;19574:18;;19567:34;;;-1:-1:-1;;;;;26184:52:0;;;;26217:1;;26184:52;;;;;;19506:18:1;26184:52:0;;;;;;;26249:74;26280:8;26298:1;26302:2;26306;26310:6;26318:4;26249:30;:74::i;23382:1062::-;23609:7;:14;23595:3;:10;:28;23587:81;;;;-1:-1:-1;;;23587:81:0;;19814:2:1;23587:81:0;;;19796:21:1;19853:2;19833:18;;;19826:30;19892:34;19872:18;;;19865:62;-1:-1:-1;;;19943:18:1;;;19936:38;19991:19;;23587:81:0;19612:404:1;23587:81:0;-1:-1:-1;;;;;23687:16:0;;23679:66;;;;-1:-1:-1;;;23679:66:0;;;;;;;:::i;:::-;682:10;23802:60;682:10;23833:4;23839:2;23843:3;23848:7;23857:4;23802:20;:60::i;:::-;23880:9;23875:409;23899:3;:10;23895:1;:14;23875:409;;;23931:10;23944:3;23948:1;23944:6;;;;;;;;:::i;:::-;;;;;;;23931:19;;23965:14;23982:7;23990:1;23982:10;;;;;;;;:::i;:::-;;;;;;;;;;;;24009:19;24031:13;;;;;;;;;;-1:-1:-1;;;;;24031:19:0;;;;;;;;;;;;23982:10;;-1:-1:-1;24073:21:0;;;;24065:76;;;;-1:-1:-1;;;24065:76:0;;;;;;;:::i;:::-;24177:9;:13;;;;;;;;;;;-1:-1:-1;;;;;24177:19:0;;;;;;;;;;24199:20;;;24177:42;;24245:17;;;;;;;:27;;24199:20;;24177:9;24245:27;;24199:20;;24245:27;:::i;:::-;;;;;;;;23916:368;;;23911:3;;;;:::i;:::-;;;23875:409;;;;24331:2;-1:-1:-1;;;;;24301:47:0;24325:4;-1:-1:-1;;;;;24301:47:0;24315:8;-1:-1:-1;;;;;24301:47:0;;24335:3;24340:7;24301:47;;;;;;;:::i;:::-;;;;;;;;24361:75;24397:8;24407:4;24413:2;24417:3;24422:7;24431:4;24361:35;:75::i;:::-;23576:868;23382:1062;;;;;:::o;40971:120::-;39983:7;;-1:-1:-1;;;39983:7:0;;;;40507:41;;;;-1:-1:-1;;;40507:41:0;;21510:2:1;40507:41:0;;;21492:21:1;21549:2;21529:18;;;21522:30;-1:-1:-1;;;21568:18:1;;;21561:50;21628:18;;40507:41:0;21308:344:1;40507:41:0;41030:7:::1;:15:::0;;-1:-1:-1;;;;41030:15:0::1;::::0;;41061:22:::1;682:10:::0;41070:12:::1;41061:22;::::0;-1:-1:-1;;;;;9166:32:1;;;9148:51;;9136:2;9121:18;41061:22:0::1;;;;;;;40971:120::o:0;36494:173::-;36569:6;;;-1:-1:-1;;;;;36586:17:0;;;-1:-1:-1;;;;;;36586:17:0;;;;;;;36619:40;;36569:6;;;36586:17;36569:6;;36619:40;;36550:16;;36619:40;36539:128;36494:173;:::o;40712:118::-;39983:7;;-1:-1:-1;;;39983:7:0;;;;40237:9;40229:38;;;;-1:-1:-1;;;40229:38:0;;21859:2:1;40229:38:0;;;21841:21:1;21898:2;21878:18;;;21871:30;-1:-1:-1;;;21917:18:1;;;21910:46;21973:18;;40229:38:0;21657:340:1;40229:38:0;40772:7:::1;:14:::0;;-1:-1:-1;;;;40772:14:0::1;-1:-1:-1::0;;;40772:14:0::1;::::0;;40802:20:::1;40809:12;682:10:::0;;602:98;25288:88;25355:13;;;;:4;;:13;;;;;:::i;29532:331::-;29687:8;-1:-1:-1;;;;;29678:17:0;:5;-1:-1:-1;;;;;29678:17:0;;;29670:71;;;;-1:-1:-1;;;29670:71:0;;22204:2:1;29670:71:0;;;22186:21:1;22243:2;22223:18;;;22216:30;22282:34;22262:18;;;22255:62;-1:-1:-1;;;22333:18:1;;;22326:39;22382:19;;29670:71:0;22002:405:1;29670:71:0;-1:-1:-1;;;;;29752:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;29752:46:0;;;;;;;;;;29814:41;;1159::1;;;29814::0;;1132:18:1;29814:41:0;;;;;;;29532:331;;;:::o;22216:808::-;-1:-1:-1;;;;;22404:16:0;;22396:66;;;;-1:-1:-1;;;22396:66:0;;;;;;;:::i;:::-;682:10;22519:96;682:10;22550:4;22556:2;22560:21;22578:2;22560:17;:21::i;22519:96::-;22628:19;22650:13;;;;;;;;;;;-1:-1:-1;;;;;22650:19:0;;;;;;;;;;22688:21;;;;22680:76;;;;-1:-1:-1;;;22680:76:0;;;;;;;:::i;:::-;22784:9;:13;;;;;;;;;;;-1:-1:-1;;;;;22784:19:0;;;;;;;;;;22806:20;;;22784:42;;22844:17;;;;;;;:27;;22806:20;;22784:9;22844:27;;22806:20;;22844:27;:::i;:::-;;;;-1:-1:-1;;22889:46:0;;;19533:25:1;;;19589:2;19574:18;;19567:34;;;-1:-1:-1;;;;;22889:46:0;;;;;;;;;;;;;;19506:18:1;22889:46:0;;;;;;;22948:68;22979:8;22989:4;22995:2;22999;23003:6;23011:4;22948:30;:68::i;:::-;22385:639;;22216:808;;;;;:::o;37436:190::-;37561:4;37614;37585:25;37598:5;37605:4;37585:12;:25::i;:::-;:33;;37436:190;-1:-1:-1;;;;37436:190:0:o;32621:198::-;32741:16;;;32755:1;32741:16;;;;;;;;;32687;;32716:22;;32741:16;;;;;;;;;;;;-1:-1:-1;32741:16:0;32716:41;;32779:7;32768:5;32774:1;32768:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;32806:5;32621:198;-1:-1:-1;;32621:198:0:o;45918:392::-;46157:66;46184:8;46194:4;46200:2;46204:3;46209:7;46218:4;46157:26;:66::i;:::-;39983:7;;-1:-1:-1;;;39983:7:0;;;;46244:9;46236:66;;;;-1:-1:-1;;;46236:66:0;;22614:2:1;46236:66:0;;;22596:21:1;22653:2;22633:18;;;22626:30;22692:34;22672:18;;;22665:62;-1:-1:-1;;;22743:18:1;;;22736:42;22795:19;;46236:66:0;22412:408:1;31048:744:0;-1:-1:-1;;;;;31263:13:0;;9592:20;9640:8;31259:526;;31299:72;;-1:-1:-1;;;31299:72:0;;-1:-1:-1;;;;;31299:38:0;;;;;:72;;31338:8;;31348:4;;31354:2;;31358:6;;31366:4;;31299:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31299:72:0;;;;;;;;-1:-1:-1;;31299:72:0;;;;;;;;;;;;:::i;:::-;;;31295:479;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;31647:6;31640:14;;-1:-1:-1;;;31640:14:0;;;;;;;;:::i;31295:479::-;;;31696:62;;-1:-1:-1;;;31696:62:0;;24707:2:1;31696:62:0;;;24689:21:1;24746:2;24726:18;;;24719:30;24785:34;24765:18;;;24758:62;-1:-1:-1;;;24836:18:1;;;24829:50;24896:19;;31696:62:0;24505:416:1;31295:479:0;-1:-1:-1;;;;;;31421:55:0;;-1:-1:-1;;;31421:55:0;31417:154;;31501:50;;-1:-1:-1;;;31501:50:0;;;;;;;:::i;31800:813::-;-1:-1:-1;;;;;32040:13:0;;9592:20;9640:8;32036:570;;32076:79;;-1:-1:-1;;;32076:79:0;;-1:-1:-1;;;;;32076:43:0;;;;;:79;;32120:8;;32130:4;;32136:3;;32141:7;;32150:4;;32076:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32076:79:0;;;;;;;;-1:-1:-1;;32076:79:0;;;;;;;;;;;;:::i;:::-;;;32072:523;;;;:::i;:::-;-1:-1:-1;;;;;;32237:60:0;;-1:-1:-1;;;32237:60:0;32233:159;;32322:50;;-1:-1:-1;;;32322:50:0;;;;;;;:::i;37988:675::-;38071:7;38114:4;38071:7;38129:497;38153:5;:12;38149:1;:16;38129:497;;;38187:20;38210:5;38216:1;38210:8;;;;;;;;:::i;:::-;;;;;;;38187:31;;38253:12;38237;:28;38233:382;;38739:13;38789:15;;;38825:4;38818:15;;;38872:4;38856:21;;38365:57;;38233:382;;;38739:13;38789:15;;;38825:4;38818:15;;;38872:4;38856:21;;38542:57;;38233:382;-1:-1:-1;38167:3:0;;;;:::i;:::-;;;;38129:497;;33795:655;-1:-1:-1;;;;;34117:18:0;;34113:160;;34157:9;34152:110;34176:3;:10;34172:1;:14;34152:110;;;34236:7;34244:1;34236:10;;;;;;;;:::i;:::-;;;;;;;34212:12;:20;34225:3;34229:1;34225:6;;;;;;;;:::i;:::-;;;;;;;34212:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;34188:3:0;;-1:-1:-1;34188:3:0;;:::i;:::-;;;34152:110;;;;34113:160;-1:-1:-1;;;;;34289:16:0;;34285:158;;34327:9;34322:110;34346:3;:10;34342:1;:14;34322:110;;;34406:7;34414:1;34406:10;;;;;;;;:::i;:::-;;;;;;;34382:12;:20;34395:3;34399:1;34395:6;;;;;;;;:::i;:::-;;;;;;;34382:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;34358:3:0;;-1:-1:-1;34358:3:0;;:::i;:::-;;;34322:110;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:254::-;260:6;268;321:2;309:9;300:7;296:23;292:32;289:52;;;337:1;334;327:12;289:52;360:29;379:9;360:29;:::i;:::-;350:39;436:2;421:18;;;;408:32;;-1:-1:-1;;;192:254:1:o;633:131::-;-1:-1:-1;;;;;;707:32:1;;697:43;;687:71;;754:1;751;744:12;769:245;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;935:9;922:23;954:30;978:5;954:30;:::i;1211:367::-;1274:8;1284:6;1338:3;1331:4;1323:6;1319:17;1315:27;1305:55;;1356:1;1353;1346:12;1305:55;-1:-1:-1;1379:20:1;;1422:18;1411:30;;1408:50;;;1454:1;1451;1444:12;1408:50;1491:4;1483:6;1479:17;1467:29;;1551:3;1544:4;1534:6;1531:1;1527:14;1519:6;1515:27;1511:38;1508:47;1505:67;;;1568:1;1565;1558:12;1505:67;1211:367;;;;;:::o;1583:773::-;1705:6;1713;1721;1729;1782:2;1770:9;1761:7;1757:23;1753:32;1750:52;;;1798:1;1795;1788:12;1750:52;1838:9;1825:23;1867:18;1908:2;1900:6;1897:14;1894:34;;;1924:1;1921;1914:12;1894:34;1963:70;2025:7;2016:6;2005:9;2001:22;1963:70;:::i;:::-;2052:8;;-1:-1:-1;1937:96:1;-1:-1:-1;2140:2:1;2125:18;;2112:32;;-1:-1:-1;2156:16:1;;;2153:36;;;2185:1;2182;2175:12;2153:36;;2224:72;2288:7;2277:8;2266:9;2262:24;2224:72;:::i;:::-;1583:773;;;;-1:-1:-1;2315:8:1;-1:-1:-1;;;;1583:773:1:o;2361:505::-;2456:6;2464;2472;2525:2;2513:9;2504:7;2500:23;2496:32;2493:52;;;2541:1;2538;2531:12;2493:52;2577:9;2564:23;2554:33;;2638:2;2627:9;2623:18;2610:32;2665:18;2657:6;2654:30;2651:50;;;2697:1;2694;2687:12;2651:50;2736:70;2798:7;2789:6;2778:9;2774:22;2736:70;:::i;:::-;2361:505;;2825:8;;-1:-1:-1;2710:96:1;;-1:-1:-1;;;;2361:505:1:o;2871:180::-;2930:6;2983:2;2971:9;2962:7;2958:23;2954:32;2951:52;;;2999:1;2996;2989:12;2951:52;-1:-1:-1;3022:23:1;;2871:180;-1:-1:-1;2871:180:1:o;3056:472::-;3098:3;3136:5;3130:12;3163:6;3158:3;3151:19;3188:1;3198:162;3212:6;3209:1;3206:13;3198:162;;;3274:4;3330:13;;;3326:22;;3320:29;3302:11;;;3298:20;;3291:59;3227:12;3198:162;;;3378:6;3375:1;3372:13;3369:87;;;3444:1;3437:4;3428:6;3423:3;3419:16;3415:27;3408:38;3369:87;-1:-1:-1;3510:2:1;3489:15;-1:-1:-1;;3485:29:1;3476:39;;;;3517:4;3472:50;;3056:472;-1:-1:-1;;3056:472:1:o;3533:220::-;3682:2;3671:9;3664:21;3645:4;3702:45;3743:2;3732:9;3728:18;3720:6;3702:45;:::i;3758:127::-;3819:10;3814:3;3810:20;3807:1;3800:31;3850:4;3847:1;3840:15;3874:4;3871:1;3864:15;3890:249;4000:2;3981:13;;-1:-1:-1;;3977:27:1;3965:40;;4035:18;4020:34;;4056:22;;;4017:62;4014:88;;;4082:18;;:::i;:::-;4118:2;4111:22;-1:-1:-1;;3890:249:1:o;4144:183::-;4204:4;4237:18;4229:6;4226:30;4223:56;;;4259:18;;:::i;:::-;-1:-1:-1;4304:1:1;4300:14;4316:4;4296:25;;4144:183::o;4332:724::-;4386:5;4439:3;4432:4;4424:6;4420:17;4416:27;4406:55;;4457:1;4454;4447:12;4406:55;4493:6;4480:20;4519:4;4542:43;4582:2;4542:43;:::i;:::-;4614:2;4608:9;4626:31;4654:2;4646:6;4626:31;:::i;:::-;4692:18;;;4784:1;4780:10;;;;4768:23;;4764:32;;;4726:15;;;;-1:-1:-1;4808:15:1;;;4805:35;;;4836:1;4833;4826:12;4805:35;4872:2;4864:6;4860:15;4884:142;4900:6;4895:3;4892:15;4884:142;;;4966:17;;4954:30;;5004:12;;;;4917;;4884:142;;;-1:-1:-1;5044:6:1;4332:724;-1:-1:-1;;;;;;4332:724:1:o;5061:468::-;5125:5;5159:18;5151:6;5148:30;5145:56;;;5181:18;;:::i;:::-;5230:2;5224:9;5242:69;5299:2;5278:15;;-1:-1:-1;;5274:29:1;5305:4;5270:40;5224:9;5242:69;:::i;:::-;5329:6;5320:15;;5359:6;5351;5344:22;5399:3;5390:6;5385:3;5381:16;5378:25;5375:45;;;5416:1;5413;5406:12;5375:45;5466:6;5461:3;5454:4;5446:6;5442:17;5429:44;5521:1;5514:4;5505:6;5497;5493:19;5489:30;5482:41;;5061:468;;;;;:::o;5534:220::-;5576:5;5629:3;5622:4;5614:6;5610:17;5606:27;5596:55;;5647:1;5644;5637:12;5596:55;5669:79;5744:3;5735:6;5722:20;5715:4;5707:6;5703:17;5669:79;:::i;5759:943::-;5913:6;5921;5929;5937;5945;5998:3;5986:9;5977:7;5973:23;5969:33;5966:53;;;6015:1;6012;6005:12;5966:53;6038:29;6057:9;6038:29;:::i;:::-;6028:39;;6086:38;6120:2;6109:9;6105:18;6086:38;:::i;:::-;6076:48;;6175:2;6164:9;6160:18;6147:32;6198:18;6239:2;6231:6;6228:14;6225:34;;;6255:1;6252;6245:12;6225:34;6278:61;6331:7;6322:6;6311:9;6307:22;6278:61;:::i;:::-;6268:71;;6392:2;6381:9;6377:18;6364:32;6348:48;;6421:2;6411:8;6408:16;6405:36;;;6437:1;6434;6427:12;6405:36;6460:63;6515:7;6504:8;6493:9;6489:24;6460:63;:::i;:::-;6450:73;;6576:3;6565:9;6561:19;6548:33;6532:49;;6606:2;6596:8;6593:16;6590:36;;;6622:1;6619;6612:12;6590:36;;6645:51;6688:7;6677:8;6666:9;6662:24;6645:51;:::i;:::-;6635:61;;;5759:943;;;;;;;;:::o;6707:1208::-;6825:6;6833;6886:2;6874:9;6865:7;6861:23;6857:32;6854:52;;;6902:1;6899;6892:12;6854:52;6942:9;6929:23;6971:18;7012:2;7004:6;7001:14;6998:34;;;7028:1;7025;7018:12;6998:34;7066:6;7055:9;7051:22;7041:32;;7111:7;7104:4;7100:2;7096:13;7092:27;7082:55;;7133:1;7130;7123:12;7082:55;7169:2;7156:16;7191:4;7214:43;7254:2;7214:43;:::i;:::-;7286:2;7280:9;7298:31;7326:2;7318:6;7298:31;:::i;:::-;7364:18;;;7452:1;7448:10;;;;7440:19;;7436:28;;;7398:15;;;;-1:-1:-1;7476:19:1;;;7473:39;;;7508:1;7505;7498:12;7473:39;7532:11;;;;7552:148;7568:6;7563:3;7560:15;7552:148;;;7634:23;7653:3;7634:23;:::i;:::-;7622:36;;7585:12;;;;7678;;;;7552:148;;;7719:6;-1:-1:-1;;7763:18:1;;7750:32;;-1:-1:-1;;7794:16:1;;;7791:36;;;7823:1;7820;7813:12;7791:36;;7846:63;7901:7;7890:8;7879:9;7875:24;7846:63;:::i;:::-;7836:73;;;6707:1208;;;;;:::o;7920:435::-;7973:3;8011:5;8005:12;8038:6;8033:3;8026:19;8064:4;8093:2;8088:3;8084:12;8077:19;;8130:2;8123:5;8119:14;8151:1;8161:169;8175:6;8172:1;8169:13;8161:169;;;8236:13;;8224:26;;8270:12;;;;8305:15;;;;8197:1;8190:9;8161:169;;;-1:-1:-1;8346:3:1;;7920:435;-1:-1:-1;;;;;7920:435:1:o;8360:261::-;8539:2;8528:9;8521:21;8502:4;8559:56;8611:2;8600:9;8596:18;8588:6;8559:56;:::i;8811:186::-;8870:6;8923:2;8911:9;8902:7;8898:23;8894:32;8891:52;;;8939:1;8936;8929:12;8891:52;8962:29;8981:9;8962:29;:::i;9210:450::-;9279:6;9332:2;9320:9;9311:7;9307:23;9303:32;9300:52;;;9348:1;9345;9338:12;9300:52;9388:9;9375:23;9421:18;9413:6;9410:30;9407:50;;;9453:1;9450;9443:12;9407:50;9476:22;;9529:4;9521:13;;9517:27;-1:-1:-1;9507:55:1;;9558:1;9555;9548:12;9507:55;9581:73;9646:7;9641:2;9628:16;9623:2;9619;9615:11;9581:73;:::i;:::-;9571:83;9210:450;-1:-1:-1;;;;9210:450:1:o;9665:347::-;9730:6;9738;9791:2;9779:9;9770:7;9766:23;9762:32;9759:52;;;9807:1;9804;9797:12;9759:52;9830:29;9849:9;9830:29;:::i;:::-;9820:39;;9909:2;9898:9;9894:18;9881:32;9956:5;9949:13;9942:21;9935:5;9932:32;9922:60;;9978:1;9975;9968:12;9922:60;10001:5;9991:15;;;9665:347;;;;;:::o;10017:260::-;10085:6;10093;10146:2;10134:9;10125:7;10121:23;10117:32;10114:52;;;10162:1;10159;10152:12;10114:52;10185:29;10204:9;10185:29;:::i;:::-;10175:39;;10233:38;10267:2;10256:9;10252:18;10233:38;:::i;:::-;10223:48;;10017:260;;;;;:::o;10282:606::-;10386:6;10394;10402;10410;10418;10471:3;10459:9;10450:7;10446:23;10442:33;10439:53;;;10488:1;10485;10478:12;10439:53;10511:29;10530:9;10511:29;:::i;:::-;10501:39;;10559:38;10593:2;10582:9;10578:18;10559:38;:::i;:::-;10549:48;;10644:2;10633:9;10629:18;10616:32;10606:42;;10695:2;10684:9;10680:18;10667:32;10657:42;;10750:3;10739:9;10735:19;10722:33;10778:18;10770:6;10767:30;10764:50;;;10810:1;10807;10800:12;10764:50;10833:49;10874:7;10865:6;10854:9;10850:22;10833:49;:::i;11305:356::-;11507:2;11489:21;;;11526:18;;;11519:30;11585:34;11580:2;11565:18;;11558:62;11652:2;11637:18;;11305:356::o;12013:127::-;12074:10;12069:3;12065:20;12062:1;12055:31;12105:4;12102:1;12095:15;12129:4;12126:1;12119:15;12145:127;12206:10;12201:3;12197:20;12194:1;12187:31;12237:4;12234:1;12227:15;12261:4;12258:1;12251:15;12277:197;12315:3;12343:6;12384:2;12377:5;12373:14;12411:2;12402:7;12399:15;12396:41;;;12417:18;;:::i;:::-;12466:1;12453:15;;12277:197;-1:-1:-1;;;12277:197:1:o;13524:125::-;13564:4;13592:1;13589;13586:8;13583:34;;;13597:18;;:::i;:::-;-1:-1:-1;13634:9:1;;13524:125::o;14007:128::-;14047:3;14078:1;14074:6;14071:1;14068:13;14065:39;;;14084:18;;:::i;:::-;-1:-1:-1;14120:9:1;;14007:128::o;14140:413::-;14342:2;14324:21;;;14381:2;14361:18;;;14354:30;14420:34;14415:2;14400:18;;14393:62;-1:-1:-1;;;14486:2:1;14471:18;;14464:47;14543:3;14528:19;;14140:413::o;14558:168::-;14598:7;14664:1;14660;14656:6;14652:14;14649:1;14646:21;14641:1;14634:9;14627:17;14623:45;14620:71;;;14671:18;;:::i;:::-;-1:-1:-1;14711:9:1;;14558:168::o;15081:380::-;15160:1;15156:12;;;;15203;;;15224:61;;15278:4;15270:6;15266:17;15256:27;;15224:61;15331:2;15323:6;15320:14;15300:18;15297:38;15294:161;;;15377:10;15372:3;15368:20;15365:1;15358:31;15412:4;15409:1;15402:15;15440:4;15437:1;15430:15;15294:161;;15081:380;;;:::o;17058:135::-;17097:3;-1:-1:-1;;17118:17:1;;17115:43;;;17138:18;;:::i;:::-;-1:-1:-1;17185:1:1;17174:13;;17058:135::o;20021:401::-;20223:2;20205:21;;;20262:2;20242:18;;;20235:30;20301:34;20296:2;20281:18;;20274:62;-1:-1:-1;;;20367:2:1;20352:18;;20345:35;20412:3;20397:19;;20021:401::o;20427:406::-;20629:2;20611:21;;;20668:2;20648:18;;;20641:30;20707:34;20702:2;20687:18;;20680:62;-1:-1:-1;;;20773:2:1;20758:18;;20751:40;20823:3;20808:19;;20427:406::o;20838:465::-;21095:2;21084:9;21077:21;21058:4;21121:56;21173:2;21162:9;21158:18;21150:6;21121:56;:::i;:::-;21225:9;21217:6;21213:22;21208:2;21197:9;21193:18;21186:50;21253:44;21290:6;21282;21253:44;:::i;:::-;21245:52;20838:465;-1:-1:-1;;;;;20838:465:1:o;22825:561::-;-1:-1:-1;;;;;23122:15:1;;;23104:34;;23174:15;;23169:2;23154:18;;23147:43;23221:2;23206:18;;23199:34;;;23264:2;23249:18;;23242:34;;;23084:3;23307;23292:19;;23285:32;;;23047:4;;23334:46;;23360:19;;23352:6;23334:46;:::i;:::-;23326:54;22825:561;-1:-1:-1;;;;;;;22825:561:1:o;23391:249::-;23460:6;23513:2;23501:9;23492:7;23488:23;23484:32;23481:52;;;23529:1;23526;23519:12;23481:52;23561:9;23555:16;23580:30;23604:5;23580:30;:::i;23645:179::-;23680:3;23722:1;23704:16;23701:23;23698:120;;;23768:1;23765;23762;23747:23;-1:-1:-1;23805:1:1;23799:8;23794:3;23790:18;23698:120;23645:179;:::o;23829:671::-;23868:3;23910:4;23892:16;23889:26;23886:39;;;23829:671;:::o;23886:39::-;23952:2;23946:9;-1:-1:-1;;24017:16:1;24013:25;;24010:1;23946:9;23989:50;24068:4;24062:11;24092:16;24127:18;24198:2;24191:4;24183:6;24179:17;24176:25;24171:2;24163:6;24160:14;24157:45;24154:58;;;24205:5;;;;;23829:671;:::o;24154:58::-;24242:6;24236:4;24232:17;24221:28;;24278:3;24272:10;24305:2;24297:6;24294:14;24291:27;;;24311:5;;;;;;23829:671;:::o;24291:27::-;24395:2;24376:16;24370:4;24366:27;24362:36;24355:4;24346:6;24341:3;24337:16;24333:27;24330:69;24327:82;;;24402:5;;;;;;23829:671;:::o;24327:82::-;24418:57;24469:4;24460:6;24452;24448:19;24444:30;24438:4;24418:57;:::i;:::-;-1:-1:-1;24491:3:1;;23829:671;-1:-1:-1;;;;;23829:671:1:o;24926:404::-;25128:2;25110:21;;;25167:2;25147:18;;;25140:30;25206:34;25201:2;25186:18;;25179:62;-1:-1:-1;;;25272:2:1;25257:18;;25250:38;25320:3;25305:19;;24926:404::o;25335:827::-;-1:-1:-1;;;;;25732:15:1;;;25714:34;;25784:15;;25779:2;25764:18;;25757:43;25694:3;25831:2;25816:18;;25809:31;;;25657:4;;25863:57;;25900:19;;25892:6;25863:57;:::i;:::-;25968:9;25960:6;25956:22;25951:2;25940:9;25936:18;25929:50;26002:44;26039:6;26031;26002:44;:::i;:::-;25988:58;;26095:9;26087:6;26083:22;26077:3;26066:9;26062:19;26055:51;26123:33;26149:6;26141;26123:33;:::i;:::-;26115:41;25335:827;-1:-1:-1;;;;;;;;25335:827:1:o

Swarm Source

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

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